Skip to content

Commit

Permalink
OCM-10485 | ci: fix id:75108 -- multi_arch_enabled is still false for…
Browse files Browse the repository at this point in the history
… 4.13 HCP

update
  • Loading branch information
yasun1 committed Aug 19, 2024
1 parent f9de39b commit 207a3c6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tests/e2e/test_rosacli_cluster_post.go
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,12 @@ var _ = Describe("Healthy check",
jsonData, err := clusterService.GetJSONClusterDescription(clusterID)
Expect(err).To(BeNil())
if isHosted {
Expect(jsonData.DigBool("multi_arch_enabled")).To(BeTrue())
clusterVersion := jsonData.DigString("openshift_version")
if clusterVersion >= "4.14" {
Expect(jsonData.DigBool("multi_arch_enabled")).To(BeTrue())
} else {
Expect(jsonData.DigBool("multi_arch_enabled")).To(BeFalse())
}
} else {
Expect(jsonData.DigBool("multi_arch_enabled")).To(BeFalse())
}
Expand Down

0 comments on commit 207a3c6

Please sign in to comment.