Skip to content

Commit 6978b37

Browse files
Merge branch 'monthlyupdate' into ocp422
2 parents 3637d0d + cff9af6 commit 6978b37

4 files changed

Lines changed: 10 additions & 4 deletions

File tree

src/mas/devops/data/catalogs/v9-260730-amd64.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# catalog itself, but not everything in the catalog supports this yet (including MAS)
66
# so we need to use the CASE bundle mirror process still.
77

8-
catalog_digest: sha256:3a9f89efcdefc8b0bba4deaf2efea2b17835880ba17215274637a93b30f126b0
8+
catalog_digest: sha256:d9ba3d2fd94d4b0b8fb1fa8eb5740a3122b137264b7da5c49818f7d9df966508
99

1010
ocp_compatibility:
1111
- "4.16"

src/mas/devops/data/catalogs/v9-260730-ppc64le.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# catalog itself, but not everything in the catalog supports this yet (including MAS)
66
# so we need to use the CASE bundle mirror process still.
77

8-
catalog_digest: sha256:d82533f5f713fe4f9ec265009ce7d32f6094671c936a31565f98a512916205f2
8+
catalog_digest: sha256:40d3ec2da2fcb7a4444b4e481ad54a8a0ef2f902bb520dbf22c231a6944da265
99

1010
ocp_compatibility:
1111
- "4.16"

src/mas/devops/data/catalogs/v9-260730-s390x.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# catalog itself, but not everything in the catalog supports this yet (including MAS)
66
# so we need to use the CASE bundle mirror process still.
77

8-
catalog_digest: sha256:d7c156afa72073c9b47773e1113a06a841d538c5c0e8878bc39bf8bd62dd5aa4
8+
catalog_digest: sha256:7d57ef678d387fd43344cee3d17e88207569f26071318fd74fac6e1bcff957a0
99

1010
ocp_compatibility:
1111
- "4.16"

src/mas/devops/mas/suite.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,16 @@ def getDefaultStorageClasses(dynClient: DynamicClient) -> SimpleNamespace:
8888
for storageClass in storageClasses:
8989
if storageClass.metadata.name in ["ibmc-block-gold", "ibmc-file-gold-gid"]:
9090
result.provider = "ibmc"
91-
result.providerName = "IBMCloud ROKS"
91+
result.providerName = "IBMCloud ROKS Classic"
9292
result.rwo = "ibmc-block-gold"
9393
result.rwx = "ibmc-file-gold-gid"
9494
break
95+
elif storageClass.metadata.name in ["ibmc-vpc-block-10iops-tier", "ibmc-vpc-file-1000-iops"]:
96+
result.provider = "ibmc-vpc"
97+
result.providerName = "IBMCloud ROKS VPC"
98+
result.rwo = "ibmc-vpc-block-10iops-tier"
99+
result.rwx = "ibmc-vpc-file-1000-iops"
100+
break
95101
elif storageClass.metadata.name in [
96102
"ocs-storagecluster-ceph-rbd",
97103
"ocs-storagecluster-cephfs",

0 commit comments

Comments
 (0)