Skip to content

Commit d15694b

Browse files
committed
stuff
1 parent 7e0a280 commit d15694b

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ spark_version: 10.2.0 # Operator version 7.3.0
4242
cognos_version: 27.2.0 # Operator version 25.0.0
4343
couchdb_version: 1.0.13 # Operator version 2.2.1 (1.0.13) sticking with 1.0.13 # (This is required for Assist 9.0, https://github.com/IBM/cloud-pak/blob/master/repo/case/ibm-couchdb/index.yaml)
4444
elasticsearch_version: 1.1.2570 # Operator version 1.1.2470
45+
minio_version: RELEASE.2025-06-13T11-33-47Z
46+
mariadb_version: 1-188
4547

4648

4749
# Maximo Application Suite

src/mas/devops/mas.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ def isAirgapInstall(dynClient: DynamicClient, checkICSP: bool = False) -> bool:
3737
else:
3838
IDMSApi = dynClient.resources.get(api_version="config.openshift.io/v1", kind="ImageDigestMirrorSet")
3939
masIDMS = IDMSApi.get(label_selector="mas.ibm.com/idmsContent=ibm")
40-
return len(masIDMS.items) > 0
40+
aiserviceIDMS = IDMSApi.get(label_selector="aiservice.ibm.com/idmsContent=ibm")
41+
return len(masIDMS.items) + len(aiserviceIDMS.items) > 0
4142

4243

4344
def getDefaultStorageClasses(dynClient: DynamicClient) -> dict:

0 commit comments

Comments
 (0)