From 5c4e30e113451daa85bd21094b8b768da531eb59 Mon Sep 17 00:00:00 2001 From: nehasangwai-ibm Date: Thu, 12 Mar 2026 14:20:29 +0530 Subject: [PATCH 01/13] Fix: Add Redis parameters to PipelineRun template - Added redis_action, redis_namespace, and redis_replicas parameters - Follows same pattern as MongoDB parameters - Fixes issue where Redis parameters were not being passed to PipelineRun - Required for Collaborate addon Redis installation This is the root cause fix for Redis not being installed when Collaborate addon is selected. The parameters were being set in the CLI but not included in the PipelineRun template, causing them to be filtered out. --- src/mas/devops/templates/pipelinerun-install.yml.j2 | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/mas/devops/templates/pipelinerun-install.yml.j2 b/src/mas/devops/templates/pipelinerun-install.yml.j2 index 56391f1f..cb073392 100644 --- a/src/mas/devops/templates/pipelinerun-install.yml.j2 +++ b/src/mas/devops/templates/pipelinerun-install.yml.j2 @@ -205,6 +205,17 @@ spec: value: "{{ ibm_mongo_admin_password }}" {%- endif %} {%- endif %} +{%- if redis_action is defined and redis_action != "" %} + + # Dependencies - Redis + # ------------------------------------------------------------------------- + - name: redis_action + value: "{{ redis_action }}" + - name: redis_namespace + value: "{{ redis_namespace }}" + - name: redis_replicas + value: "{{ redis_replicas }}" +{%- endif %} {%- if kafka_action_system == "install" %} # Dependencies - Kafka From 365cf7899b0ba197e50f0588c578e8bba6460fe9 Mon Sep 17 00:00:00 2001 From: nehasangwai-ibm Date: Tue, 7 Apr 2026 22:46:17 +0530 Subject: [PATCH 02/13] added redis image --- .../data/catalogs/v9-collabaddon-amd64.yaml | 107 ++++++++++++++++++ 1 file changed, 107 insertions(+) create mode 100644 src/mas/devops/data/catalogs/v9-collabaddon-amd64.yaml diff --git a/src/mas/devops/data/catalogs/v9-collabaddon-amd64.yaml b/src/mas/devops/data/catalogs/v9-collabaddon-amd64.yaml new file mode 100644 index 00000000..5ea97118 --- /dev/null +++ b/src/mas/devops/data/catalogs/v9-collabaddon-amd64.yaml @@ -0,0 +1,107 @@ +--- +# Case bundle configuration for IBM Maximo Operator Catalog v9-collabaddon (AMD64) +# ----------------------------------------------------------------------------- +# This catalog is specifically for the Collaborate addon and includes +# Redis image configurations for the Collaborate product. + +catalog_digest: sha256:e5bb0fd0b5a6c11fbcd4bc9f068cf4285333a6ea6752af471d6252a21928cab7 + +ocp_compatibility: +- "4.16" +- "4.17" +- "4.18" +- "4.19" +- "4.20" + +# Dependencies +# ----------------------------------------------------------------------------- +ibm_licensing_version: 4.2.17 +common_svcs_version: 4.13.0 +common_svcs_version_1: 4.11.0 + +cp4d_platform_version: 5.2.0+20250709.170324 +ibm_zen_version: 6.2.0+20250530.152516.232 + +db2u_version: 7.3.1+20250821.161005.16793 +db2_channel_default: v110509.0 +events_version: 5.0.1 +uds_version: 2.0.12 +sls_version: 3.12.6 +tsm_version: 1.7.5 +dd_version: 1.1.23 +appconnect_version: 6.2.0 +wsl_version: 11.0.0+20250521.202913.73 +wsl_runtimes_version: 11.0.0+20250515.090949.21 +wml_version: 11.0.0+20250530.193146.282 +postgress_version: 5.16.0+20250827.110911.2626 + +ccs_build: 11.0.0+20250605.130237.468 + +spark_version: 11.0.0+20250604.163055.2097 +cognos_version: 28.0.0+20250515.175459.10054 +couchdb_version: 1.0.13 +elasticsearch_version: 1.1.2667 +opensearch_version: 1.1.2494 + +# Maximo Application Suite +# ----------------------------------------------------------------------------- +mas_core_version: + 9.2.x-feature: 9.2.0-pre.stable_16717 + 9.1.x: 9.1.14 + 9.0.x: 9.0.23 + 8.10.x: 8.10.36 + 8.11.x: 8.11.33 +mas_assist_version: + 9.1.x: 9.1.9 + 9.0.x: 9.0.15 + 8.10.x: 8.7.8 + 8.11.x: 8.8.7 + +# Extra Images for UDS +# ------------------------------------------------------------------------------ +uds_extras_version: 1.5.0 + +# Extra Images for Mongo +# ------------------------------------------------------------------------------ +mongo_extras_version_default: 8.0.17 + +# Variables used to mirror additional mongo image versions +mongo_extras_version_4: 4.4.21 +mongo_extras_version_5: 5.0.23 +mongo_extras_version_6: 6.0.12 +mongo_extras_version_7: 7.0.23 +mongo_extras_version_8: 8.0.17 + +# Extra Images for Db2u +# ------------------------------------------------------------------------------ +db2u_extras_version: 1.0.6 +db2u_filter: db2 + +# Extra Images for CCS used for PCD 5.2.0 Hotfix +# ------------------------------------------------------------------------------ +ccs_extras_version: 11.0.0 + +# Extra Images for Amlen +# ------------------------------------------------------------------------------ +amlen_extras_version: 1.1.4 + +# Extra Images for Redis (Collaborate) +# ------------------------------------------------------------------------------ +redis_extras_version: 2.1.40 + +# Default Cloud Pak for Data version +# ------------------------------------------------------------------------------ +cpd_product_version_default: 5.2.0 + +manage_extras_913: 9.1.3 +minio_version: RELEASE.2025-06-13T11-33-47Z + +editorial: + whats_new: + - title: '**Collaborate Addon Catalog**' + details: + - This catalog includes Redis image configurations for IBM Maximo Collaborate + - Redis version 2.1.40 with HAProxy and common utilities + + known_issues: + - title: This is a specialized catalog for Collaborate addon deployment \ No newline at end of file From c3f241603d706e405acd44685897793a9a05f773 Mon Sep 17 00:00:00 2001 From: nehasangwai-ibm Date: Tue, 7 Apr 2026 23:13:00 +0530 Subject: [PATCH 03/13] [patch] Remove /build from .gitignore to fix GitHub Actions workflows --- .gitignore | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index b018c32e..727c846b 100644 --- a/.gitignore +++ b/.gitignore @@ -18,6 +18,5 @@ venv/ # Other kubectl.exe -/build -/.vscode -/site +/.vscode +/site From 6b9f7a8529ab0ac350c720a7d4be0be281fde51b Mon Sep 17 00:00:00 2001 From: nehasangwai-ibm Date: Tue, 7 Apr 2026 23:20:23 +0530 Subject: [PATCH 04/13] [patch] Add pytest timeout to prevent tests from hanging indefinitely --- .github/workflows/python-package.yml | 3 ++- .gitignore | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index edb21ef4..48621d23 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -46,7 +46,8 @@ jobs: cat ${GITHUB_WORKSPACE}/src/mas/devops/__init__.py python -m pip install --upgrade pip pip install .[dev] - python -m pytest + pip install pytest-timeout + python -m pytest --timeout=60 -v - name: Lint with flake8 run: | diff --git a/.gitignore b/.gitignore index 727c846b..1d620495 100644 --- a/.gitignore +++ b/.gitignore @@ -18,5 +18,6 @@ venv/ # Other kubectl.exe +/build /.vscode /site From 886b4281a3b4e930b3b32c369df96e873e4c4cef Mon Sep 17 00:00:00 2001 From: nehasangwai-ibm Date: Tue, 7 Apr 2026 23:25:31 +0530 Subject: [PATCH 05/13] [patch] Increase pytest timeout to 300s for integration tests --- .github/workflows/python-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 48621d23..8fd29856 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -47,7 +47,7 @@ jobs: python -m pip install --upgrade pip pip install .[dev] pip install pytest-timeout - python -m pytest --timeout=60 -v + python -m pytest --timeout=300 --timeout-method=thread -v - name: Lint with flake8 run: | From 1f9d0aa68bc37cb446cd68d8e0e1dc8aae4dd912 Mon Sep 17 00:00:00 2001 From: nehasangwai-ibm Date: Tue, 7 Apr 2026 23:50:46 +0530 Subject: [PATCH 06/13] [patch] Revert timeout changes - test if cluster fix alone resolves the issue --- .github/workflows/python-package.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 8fd29856..edb21ef4 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -46,8 +46,7 @@ jobs: cat ${GITHUB_WORKSPACE}/src/mas/devops/__init__.py python -m pip install --upgrade pip pip install .[dev] - pip install pytest-timeout - python -m pytest --timeout=300 --timeout-method=thread -v + python -m pytest - name: Lint with flake8 run: | From 764b24553df61a49f97e8d7bbd62e8b896aadee7 Mon Sep 17 00:00:00 2001 From: nehasangwai-ibm Date: Tue, 7 Apr 2026 23:58:03 +0530 Subject: [PATCH 07/13] [patch] Trigger workflow after cluster Truststore fixes From 22b05f3f1e8c0c7a4c505dcbf1fdbd32524f740d Mon Sep 17 00:00:00 2001 From: nehasangwai-ibm Date: Wed, 8 Apr 2026 00:03:42 +0530 Subject: [PATCH 08/13] [patch] Trigger workflow after fixing all Truststore CRs From 332f641bb80ae07ca912f278b24ec56489647367 Mon Sep 17 00:00:00 2001 From: nehasangwai-ibm Date: Wed, 8 Apr 2026 00:33:11 +0530 Subject: [PATCH 09/13] Trigger workflow after cleaning old test namespaces From 96cf59f883c616fa80f7cda95fb9a40c9a399071 Mon Sep 17 00:00:00 2001 From: nehasangwai-ibm Date: Wed, 8 Apr 2026 00:40:54 +0530 Subject: [PATCH 10/13] Fix test_get_newest_catalog_tag to expect v9-collabaddon-amd64 --- test/src/test_data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/src/test_data.py b/test/src/test_data.py index 86b192ab..fdd6897c 100644 --- a/test/src/test_data.py +++ b/test/src/test_data.py @@ -32,7 +32,7 @@ def test_list_catalogs(): def test_get_newest_catalog_tag(): catalogTag = getNewestCatalogTag("amd64") # Reminder: update this test when adding a new catalog each month! - assert catalogTag == "v9-260326-amd64" + assert catalogTag == "v9-collabaddon-amd64" def test_get_newest_catalog_tag_fail(): From f8a1696f67ccb3ecec99406cafa85b91ba7b2d52 Mon Sep 17 00:00:00 2001 From: nehasangwai-ibm Date: Wed, 8 Apr 2026 15:04:56 +0530 Subject: [PATCH 11/13] [patch] added v9-collabaddon with changes --- .../data/catalogs/v9-collabaddon-amd64.yaml | 163 +++++++++++++----- 1 file changed, 118 insertions(+), 45 deletions(-) diff --git a/src/mas/devops/data/catalogs/v9-collabaddon-amd64.yaml b/src/mas/devops/data/catalogs/v9-collabaddon-amd64.yaml index 5ea97118..da4cac15 100644 --- a/src/mas/devops/data/catalogs/v9-collabaddon-amd64.yaml +++ b/src/mas/devops/data/catalogs/v9-collabaddon-amd64.yaml @@ -1,8 +1,9 @@ --- # Case bundle configuration for IBM Maximo Operator Catalog v9-collabaddon (AMD64) # ----------------------------------------------------------------------------- -# This catalog is specifically for the Collaborate addon and includes -# Redis image configurations for the Collaborate product. +# In the future this won't be necessary as we'll be able to mirror from the +# catalog itself, but not everything in the catalog supports this yet (including MAS) +# so we need to use the CASE bundle mirror process still. catalog_digest: sha256:e5bb0fd0b5a6c11fbcd4bc9f068cf4285333a6ea6752af471d6252a21928cab7 @@ -15,47 +16,100 @@ ocp_compatibility: # Dependencies # ----------------------------------------------------------------------------- -ibm_licensing_version: 4.2.17 -common_svcs_version: 4.13.0 -common_svcs_version_1: 4.11.0 - -cp4d_platform_version: 5.2.0+20250709.170324 -ibm_zen_version: 6.2.0+20250530.152516.232 - -db2u_version: 7.3.1+20250821.161005.16793 -db2_channel_default: v110509.0 -events_version: 5.0.1 -uds_version: 2.0.12 -sls_version: 3.12.6 -tsm_version: 1.7.5 -dd_version: 1.1.23 -appconnect_version: 6.2.0 -wsl_version: 11.0.0+20250521.202913.73 -wsl_runtimes_version: 11.0.0+20250515.090949.21 -wml_version: 11.0.0+20250530.193146.282 -postgress_version: 5.16.0+20250827.110911.2626 - -ccs_build: 11.0.0+20250605.130237.468 - -spark_version: 11.0.0+20250604.163055.2097 -cognos_version: 28.0.0+20250515.175459.10054 -couchdb_version: 1.0.13 -elasticsearch_version: 1.1.2667 -opensearch_version: 1.1.2494 +ibm_licensing_version: 4.2.17 # Operator version 4.2.14 (https://github.com/IBM/cloud-pak/tree/master/repo/case/ibm-licensing) +common_svcs_version: 4.13.0 # Operator version 4.13.0 (https://github.com/IBM/cloud-pak/tree/master/repo/case/ibm-cp-common-services) +common_svcs_version_1: 4.11.0 # Additional version 4.11.0 + +cp4d_platform_version: 5.2.0+20250709.170324 # Operator version 5.2.0 (https://github.com/IBM/cloud-pak/tree/master/repo/case/ibm-cp-datacore/) +ibm_zen_version: 6.2.0+20250530.152516.232 # For CPD5 ibm-zen has to be explicitily mirrored + +db2u_version: 7.3.1+20250821.161005.16793 # Operator version 110509.0.6 to find the version 7.3.1+20250821.161005.16793, search db2u-operator digest on repo (https://github.com/IBM/cloud-pak/tree/master/repo/case/ibm-db2uoperator) +db2_channel_default: v110509.0 # Default Channel version for db2u-operator +events_version: 5.0.1 # Operator version 5.0.1 (https://github.com/IBM/cloud-pak/tree/master/repo/case/ibm-events-operator) +uds_version: 2.0.12 # Operator version 2.0.12 # sticking to 2.0.12 version # Please do Not Change +sls_version: 3.12.6 # Updated # Operator version 3.12.5 (https://github.ibm.com/maximoappsuite/ibm-sls/releases) +tsm_version: 1.7.5 # Updated # Operator version 1.7.4 (https://github.ibm.com/maximoappsuite/ibm-truststore-mgr/releases) +dd_version: 1.1.23 # Updated # Operator version 1.1.23 (https://github.ibm.com/maximoappsuite/ibm-data-dictionary/releases) +appconnect_version: 6.2.0 # Operator version 6.2.0 # sticking to 6.2.0 version # Please do Not Change +wsl_version: 11.0.0+20250521.202913.73 # used for wsl and wsl_runtimes unless wsl_runtimes_version also specified +wsl_runtimes_version: 11.0.0+20250515.090949.21 # cpd 5.1.3 uses version 10.3.0 of wsl runtimes but only 10.2.0 for wsl itself +wml_version: 11.0.0+20250530.193146.282 # Operator version 5.2.0 +postgress_version: 5.16.0+20250827.110911.2626 # ibm-cpd-cloud-native-postgresql-operator 5.2.0 cp4d + +ccs_build: 11.0.0+20250605.130237.468 # cpd 5.2.0 using ccs build +# datarefinery_build: +20240517.202103.146 + +spark_version: 11.0.0+20250604.163055.2097 # Operator version 5.2.0 +cognos_version: 28.0.0+20250515.175459.10054 # Operator version 25.0.0 +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) +elasticsearch_version: 1.1.2667 # Operator version 1.1.2667 # used in cpd 5.1.3 only +opensearch_version: 1.1.2494 # Operator version 1.1.2494 # Maximo Application Suite # ----------------------------------------------------------------------------- mas_core_version: - 9.2.x-feature: 9.2.0-pre.stable_16717 - 9.1.x: 9.1.14 - 9.0.x: 9.0.23 - 8.10.x: 8.10.36 - 8.11.x: 8.11.33 + 9.2.x-feature: 9.2.0-pre.stable_16717 # Updated + 9.1.x: 9.1.14 # Updated + 9.0.x: 9.0.23 # Updated + 8.10.x: 8.10.36 # Updated + 8.11.x: 8.11.33 # Updated mas_assist_version: - 9.1.x: 9.1.9 - 9.0.x: 9.0.15 - 8.10.x: 8.7.8 - 8.11.x: 8.8.7 + 9.1.x: 9.1.9 # Updated + 9.0.x: 9.0.15 # Updated + 8.10.x: 8.7.8 # No Update + 8.11.x: 8.8.7 # No Update +mas_hputilities_version: + 9.1.x: "" # Not Supported + 9.0.x: "" # Not Supported + 8.10.x: 8.6.7 # No Update + 8.11.x: "" # Not Supported +mas_iot_version: + 9.1.x: 9.1.9 # Updated + 9.0.x: 9.0.18 # Updated + 8.10.x: 8.7.32 # Updated + 8.11.x: 8.8.29 # Updated +mas_manage_version: + 9.2.x-feature: 9.2.0-pre.stable_17064 # Updated + 9.1.x: 9.1.15 # Updated + 9.0.x: 9.0.24 # Updated + 8.10.x: 8.6.37 # Updated + 8.11.x: 8.7.31 # Updated +mas_monitor_version: + 9.1.x: 9.1.9 # Updated + 9.0.x: 9.0.19 # Updated + 8.10.x: 8.10.29 # Updated + 8.11.x: 8.11.27 # Updated +mas_optimizer_version: + 9.2.x-feature: 9.2.0-pre.stable_16613 # Updated + 9.1.x: 9.1.10 # Updated + 9.0.x: 9.0.21 # Updated + 8.10.x: 8.4.27 # Updated + 8.11.x: 8.5.27 # Updated +mas_predict_version: + 9.1.x: 9.1.6 # Updated + 9.0.x: 9.0.13 # Updated + 8.10.x: 8.8.14 # Updated + 8.11.x: 8.9.16 # Updated +mas_visualinspection_version: + 9.2.x-feature: 9.2.0-pre.stable_12598 # No Update + 9.1.x: 9.1.10 # No Update + 9.0.x: 9.0.18 # Updated + 8.10.x: 8.8.4 # No Update + 8.11.x: 8.9.20 # No Update +mas_facilities_version: + 9.2.x-feature: 9.2.0-pre.stable_16853 # Updated + 9.1.x: 9.1.9 # Updated + 9.0.x: "" # Not Supported + 8.10.x: "" # Not Supported + 8.11.x: "" # Not Supported + + +# Maximo AI Service +# ------------------------------------------------------------------------------ +aiservice_version: + 9.2.x-feature: 9.2.0-pre.stable_16576 # Updated + 9.1.x: 9.1.13 # Updated + # Extra Images for UDS # ------------------------------------------------------------------------------ @@ -74,21 +128,25 @@ mongo_extras_version_8: 8.0.17 # Extra Images for Db2u # ------------------------------------------------------------------------------ -db2u_extras_version: 1.0.6 +db2u_extras_version: 1.0.6 # No Update db2u_filter: db2 # Extra Images for CCS used for PCD 5.2.0 Hotfix # ------------------------------------------------------------------------------ ccs_extras_version: 11.0.0 -# Extra Images for Amlen +# Extra Images for IBM Watson Discovery # ------------------------------------------------------------------------------ -amlen_extras_version: 1.1.4 +#wd_extras_version: 1.0.4 # Extra Images for Redis (Collaborate) # ------------------------------------------------------------------------------ redis_extras_version: 2.1.40 +# Extra Images for Amlen +# ------------------------------------------------------------------------------ +amlen_extras_version: 1.1.4 + # Default Cloud Pak for Data version # ------------------------------------------------------------------------------ cpd_product_version_default: 5.2.0 @@ -98,10 +156,25 @@ minio_version: RELEASE.2025-06-13T11-33-47Z editorial: whats_new: - - title: '**Collaborate Addon Catalog**' + - title: '**Security updates and bug fixes**' details: - - This catalog includes Redis image configurations for IBM Maximo Collaborate - - Redis version 2.1.40 with HAProxy and common utilities + - IBM Maximo Application Suite Core Platform [v8.10.36](https://www.ibm.com/support/pages/node/7267462), [v8.11.36](https://www.ibm.com/support/pages/node/7267463), [v9.0.23](https://www.ibm.com/support/pages/node/7267464) and [v9.1.14](https://www.ibm.com/support/pages/node/7267465) + - IBM Maximo Manage [v8.6.37](https://www.ibm.com/support/pages/node/7266693), [v8.7.31](https://www.ibm.com/support/pages/node/7266692), [v9.0.24](https://www.ibm.com/support/pages/node/7266691) and [v9.1.15](https://www.ibm.com/support/pages/node/7266690) + - IBM Maximo IoT [v8.7.32](https://www.ibm.com/support/pages/node/7267121), [v8.8.29](https://www.ibm.com/support/pages/node/7267122), [v9.0.18](https://www.ibm.com/support/pages/node/7267123) and [v9.1.9](https://www.ibm.com/support/pages/node/7267124) + - IBM Maximo Monitor [v8.10.29](https://www.ibm.com/support/pages/node/7267303), [v8.11.27](https://www.ibm.com/support/pages/node/7267304), [v9.0.19](https://www.ibm.com/support/pages/node/7267305) and [v9.1.9](https://www.ibm.com/support/pages/node/7267306) + - IBM Maximo Optimizer [v8.4.27](https://www.ibm.com/support/pages/node/7266732),[v8.5.26](https://www.ibm.com/support/pages/node/7266734), [v9.0.21](https://www.ibm.com/support/pages/node/7266738) and [v9.1.10](https://www.ibm.com/support/pages/node/7266745) + - IBM Maximo Assist/Collaborate [v9.0.15](https://www.ibm.com/support/pages/node/7267220), [v9.1.9](https://www.ibm.com/support/pages/node/7267222) + - IBM Maximo Predict [v8.8.14](https://www.ibm.com/support/pages/node/7267302), [v8.9.16](https://www.ibm.com/support/pages/node/7267299), [v9.0.13](https://www.ibm.com/support/pages/node/7267298) and [v9.1.6](https://www.ibm.com/support/pages/node/7267181) + - IBM Maximo Visual Inspection [v9.0.18](https://www.ibm.com/support/pages/node/7267485) + - IBM Maximo Real Estate and Facilities [v9.1.9](https://www.ibm.com/support/pages/node/7267132) + - IBM Maximo AI Service [v9.1.13](https://www.ibm.com/support/pages/node/7266231) + - IBM Data Dictionary v1.1 + - IBM Truststore Manager v1.7 + - IBM Suite License Service v3.12 known_issues: - - title: This is a specialized catalog for Collaborate addon deployment \ No newline at end of file + - title: Customers using **Maximo Assist v8.7 or v8.8** should not update and must instead contact IBM Support for guidance regarding the removal of IBM Watson Discovery and upgrading to Maximo Assist v9.0 + - title: A known issue exists in the January 29, 2026 release affecting HSE and Oil & Gas (9.0.23 / 9.1.64). Customers with HSE installed should avoid upgrading to the January release. Installation of HSE or Oil & Gas on Manage 9.0.x / 9.1.x should be deferred until the February 2026 patch. + - title: A known issue has been identified in Db2u warehouse operator in this catalog. Customers restoring/upgrading Db2, intermittently get db2 `SQL0290N Table space access is not allowed. SQLSTATE=55039` error causing connectivity issue between MAS and Db2. If you are facing this problem, please refer to the workaround provided in this [documentation](https://www.ibm.com/docs/en/cloud-paks/cp-data/5.3.x?topic=SSQNUZ_5.3.x/svc-db2/known-issues-dbs.htm#known-issues-dbs__db2-instance-fails-sql0290n__title__1). + - title: A known issue exists in the February 26, 2026 release affecting IBM Maximo Real Estate and Facilities. Customers with MREF installed should avoid upgrading to the February 9.1.8 release. Installation of MREF 9.1.x should be deferred until the March 2026 patch. + - title: A know issue in IBM Maximo Real Estate and Facilities, users may encounter failures during upgrade scenarios (9.1.x → 9.2 FC) and experience slow installation in airgap environments in the March 26, 2026 release. \ No newline at end of file From d80288970769626454a8903ae06a6fdcedee3bed Mon Sep 17 00:00:00 2001 From: nehasangwai-ibm Date: Wed, 8 Apr 2026 18:37:01 +0530 Subject: [PATCH 12/13] added catalog latest --- .../devops/data/catalogs/v9-260430-amd64.yaml | 180 ++++++++++++++++++ 1 file changed, 180 insertions(+) create mode 100644 src/mas/devops/data/catalogs/v9-260430-amd64.yaml diff --git a/src/mas/devops/data/catalogs/v9-260430-amd64.yaml b/src/mas/devops/data/catalogs/v9-260430-amd64.yaml new file mode 100644 index 00000000..79d93a2c --- /dev/null +++ b/src/mas/devops/data/catalogs/v9-260430-amd64.yaml @@ -0,0 +1,180 @@ +--- +# Case bundle configuration for IBM Maximo Operator Catalog 260326 (AMD64) +# ----------------------------------------------------------------------------- +# In the future this won't be necessary as we'll be able to mirror from the +# catalog itself, but not everything in the catalog supports this yet (including MAS) +# so we need to use the CASE bundle mirror process still. + +catalog_digest: sha256:860184b9e22bd25af3cd1f6ea586a6f6a2c9535f4e58990b317417f53e6de3e2 + +ocp_compatibility: +- "4.16" +- "4.17" +- "4.18" +- "4.19" +- "4.20" + +# Dependencies +# ----------------------------------------------------------------------------- +ibm_licensing_version: 4.2.17 # Operator version 4.2.14 (https://github.com/IBM/cloud-pak/tree/master/repo/case/ibm-licensing) +common_svcs_version: 4.13.0 # Operator version 4.13.0 (https://github.com/IBM/cloud-pak/tree/master/repo/case/ibm-cp-common-services) +common_svcs_version_1: 4.11.0 # Additional version 4.11.0 + +cp4d_platform_version: 5.2.0+20250709.170324 # Operator version 5.2.0 (https://github.com/IBM/cloud-pak/tree/master/repo/case/ibm-cp-datacore/) +ibm_zen_version: 6.2.0+20250530.152516.232 # For CPD5 ibm-zen has to be explicitily mirrored + +db2u_version: 7.3.1+20250821.161005.16793 # Operator version 110509.0.6 to find the version 7.3.1+20250821.161005.16793, search db2u-operator digest on repo (https://github.com/IBM/cloud-pak/tree/master/repo/case/ibm-db2uoperator) +db2_channel_default: v110509.0 # Default Channel version for db2u-operator +events_version: 5.0.1 # Operator version 5.0.1 (https://github.com/IBM/cloud-pak/tree/master/repo/case/ibm-events-operator) +uds_version: 2.0.12 # Operator version 2.0.12 # sticking to 2.0.12 version # Please do Not Change +sls_version: 3.12.6 # Updated # Operator version 3.12.5 (https://github.ibm.com/maximoappsuite/ibm-sls/releases) +tsm_version: 1.7.5 # Updated # Operator version 1.7.4 (https://github.ibm.com/maximoappsuite/ibm-truststore-mgr/releases) +dd_version: 1.1.23 # Updated # Operator version 1.1.23 (https://github.ibm.com/maximoappsuite/ibm-data-dictionary/releases) +appconnect_version: 6.2.0 # Operator version 6.2.0 # sticking to 6.2.0 version # Please do Not Change +wsl_version: 11.0.0+20250521.202913.73 # used for wsl and wsl_runtimes unless wsl_runtimes_version also specified +wsl_runtimes_version: 11.0.0+20250515.090949.21 # cpd 5.1.3 uses version 10.3.0 of wsl runtimes but only 10.2.0 for wsl itself +wml_version: 11.0.0+20250530.193146.282 # Operator version 5.2.0 +postgress_version: 5.16.0+20250827.110911.2626 # ibm-cpd-cloud-native-postgresql-operator 5.2.0 cp4d + +ccs_build: 11.0.0+20250605.130237.468 # cpd 5.2.0 using ccs build +# datarefinery_build: +20240517.202103.146 + +spark_version: 11.0.0+20250604.163055.2097 # Operator version 5.2.0 +cognos_version: 28.0.0+20250515.175459.10054 # Operator version 25.0.0 +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) +elasticsearch_version: 1.1.2667 # Operator version 1.1.2667 # used in cpd 5.1.3 only +opensearch_version: 1.1.2494 # Operator version 1.1.2494 + +# Maximo Application Suite +# ----------------------------------------------------------------------------- +mas_core_version: + 9.2.x-feature: 9.2.0-pre.stable_16717 # Updated + 9.1.x: 9.1.14 # Updated + 9.0.x: 9.0.23 # Updated + 8.10.x: 8.10.36 # Updated + 8.11.x: 8.11.33 # Updated +mas_assist_version: + 9.1.x: 9.1.9 # Updated + 9.0.x: 9.0.15 # Updated + 8.10.x: 8.7.8 # No Update + 8.11.x: 8.8.7 # No Update +mas_hputilities_version: + 9.1.x: "" # Not Supported + 9.0.x: "" # Not Supported + 8.10.x: 8.6.7 # No Update + 8.11.x: "" # Not Supported +mas_iot_version: + 9.1.x: 9.1.9 # Updated + 9.0.x: 9.0.18 # Updated + 8.10.x: 8.7.32 # Updated + 8.11.x: 8.8.29 # Updated +mas_manage_version: + 9.2.x-feature: 9.2.0-pre.stable_17064 # Updated + 9.1.x: 9.1.15 # Updated + 9.0.x: 9.0.24 # Updated + 8.10.x: 8.6.37 # Updated + 8.11.x: 8.7.31 # Updated +mas_monitor_version: + 9.1.x: 9.1.9 # Updated + 9.0.x: 9.0.19 # Updated + 8.10.x: 8.10.29 # Updated + 8.11.x: 8.11.27 # Updated +mas_optimizer_version: + 9.2.x-feature: 9.2.0-pre.stable_16613 # Updated + 9.1.x: 9.1.10 # Updated + 9.0.x: 9.0.21 # Updated + 8.10.x: 8.4.27 # Updated + 8.11.x: 8.5.27 # Updated +mas_predict_version: + 9.1.x: 9.1.6 # Updated + 9.0.x: 9.0.13 # Updated + 8.10.x: 8.8.14 # Updated + 8.11.x: 8.9.16 # Updated +mas_visualinspection_version: + 9.2.x-feature: 9.2.0-pre.stable_12598 # No Update + 9.1.x: 9.1.10 # No Update + 9.0.x: 9.0.18 # Updated + 8.10.x: 8.8.4 # No Update + 8.11.x: 8.9.20 # No Update +mas_facilities_version: + 9.2.x-feature: 9.2.0-pre.stable_16853 # Updated + 9.1.x: 9.1.9 # Updated + 9.0.x: "" # Not Supported + 8.10.x: "" # Not Supported + 8.11.x: "" # Not Supported + + +# Maximo AI Service +# ------------------------------------------------------------------------------ +aiservice_version: + 9.2.x-feature: 9.2.0-pre.stable_16576 # Updated + 9.1.x: 9.1.13 # Updated + + +# Extra Images for UDS +# ------------------------------------------------------------------------------ +uds_extras_version: 1.5.0 + +# Extra Images for Mongo +# ------------------------------------------------------------------------------ +mongo_extras_version_default: 8.0.17 + +# Variables used to mirror additional mongo image versions +mongo_extras_version_4: 4.4.21 +mongo_extras_version_5: 5.0.23 +mongo_extras_version_6: 6.0.12 +mongo_extras_version_7: 7.0.23 +mongo_extras_version_8: 8.0.17 + +# Extra Images for Db2u +# ------------------------------------------------------------------------------ +db2u_extras_version: 1.0.6 # No Update +db2u_filter: db2 + +# Extra Images for CCS used for PCD 5.2.0 Hotfix +# ------------------------------------------------------------------------------ +ccs_extras_version: 11.0.0 + +# Extra Images for IBM Watson Discovery +# ------------------------------------------------------------------------------ +#wd_extras_version: 1.0.4 + +# Extra Images for Amlen +# ------------------------------------------------------------------------------ +amlen_extras_version: 1.1.4 + +# Extra Images for Redis (Collaborate) +# ------------------------------------------------------------------------------ +redis_extras_version: 2.1.40 + +# Default Cloud Pak for Data version +# ------------------------------------------------------------------------------ +cpd_product_version_default: 5.2.0 + +manage_extras_913: 9.1.3 +minio_version: RELEASE.2025-06-13T11-33-47Z + +editorial: + whats_new: + - title: '**Security updates and bug fixes**' + details: + - IBM Maximo Application Suite Core Platform [v8.10.36](https://www.ibm.com/support/pages/node/7267462), [v8.11.36](https://www.ibm.com/support/pages/node/7267463), [v9.0.23](https://www.ibm.com/support/pages/node/7267464) and [v9.1.14](https://www.ibm.com/support/pages/node/7267465) + - IBM Maximo Manage [v8.6.37](https://www.ibm.com/support/pages/node/7266693), [v8.7.31](https://www.ibm.com/support/pages/node/7266692), [v9.0.24](https://www.ibm.com/support/pages/node/7266691) and [v9.1.15](https://www.ibm.com/support/pages/node/7266690) + - IBM Maximo IoT [v8.7.32](https://www.ibm.com/support/pages/node/7267121), [v8.8.29](https://www.ibm.com/support/pages/node/7267122), [v9.0.18](https://www.ibm.com/support/pages/node/7267123) and [v9.1.9](https://www.ibm.com/support/pages/node/7267124) + - IBM Maximo Monitor [v8.10.29](https://www.ibm.com/support/pages/node/7267303), [v8.11.27](https://www.ibm.com/support/pages/node/7267304), [v9.0.19](https://www.ibm.com/support/pages/node/7267305) and [v9.1.9](https://www.ibm.com/support/pages/node/7267306) + - IBM Maximo Optimizer [v8.4.27](https://www.ibm.com/support/pages/node/7266732),[v8.5.26](https://www.ibm.com/support/pages/node/7266734), [v9.0.21](https://www.ibm.com/support/pages/node/7266738) and [v9.1.10](https://www.ibm.com/support/pages/node/7266745) + - IBM Maximo Assist/Collaborate [v9.0.15](https://www.ibm.com/support/pages/node/7267220), [v9.1.9](https://www.ibm.com/support/pages/node/7267222) + - IBM Maximo Predict [v8.8.14](https://www.ibm.com/support/pages/node/7267302), [v8.9.16](https://www.ibm.com/support/pages/node/7267299), [v9.0.13](https://www.ibm.com/support/pages/node/7267298) and [v9.1.6](https://www.ibm.com/support/pages/node/7267181) + - IBM Maximo Visual Inspection [v9.0.18](https://www.ibm.com/support/pages/node/7267485) + - IBM Maximo Real Estate and Facilities [v9.1.9](https://www.ibm.com/support/pages/node/7267132) + - IBM Maximo AI Service [v9.1.13](https://www.ibm.com/support/pages/node/7266231) + - IBM Data Dictionary v1.1 + - IBM Truststore Manager v1.7 + - IBM Suite License Service v3.12 + + known_issues: + - title: Customers using **Maximo Assist v8.7 or v8.8** should not update and must instead contact IBM Support for guidance regarding the removal of IBM Watson Discovery and upgrading to Maximo Assist v9.0 + - title: A known issue exists in the January 29, 2026 release affecting HSE and Oil & Gas (9.0.23 / 9.1.64). Customers with HSE installed should avoid upgrading to the January release. Installation of HSE or Oil & Gas on Manage 9.0.x / 9.1.x should be deferred until the February 2026 patch. + - title: A known issue has been identified in Db2u warehouse operator in this catalog. Customers restoring/upgrading Db2, intermittently get db2 `SQL0290N Table space access is not allowed. SQLSTATE=55039` error causing connectivity issue between MAS and Db2. If you are facing this problem, please refer to the workaround provided in this [documentation](https://www.ibm.com/docs/en/cloud-paks/cp-data/5.3.x?topic=SSQNUZ_5.3.x/svc-db2/known-issues-dbs.htm#known-issues-dbs__db2-instance-fails-sql0290n__title__1). + - title: A known issue exists in the February 26, 2026 release affecting IBM Maximo Real Estate and Facilities. Customers with MREF installed should avoid upgrading to the February 9.1.8 release. Installation of MREF 9.1.x should be deferred until the March 2026 patch. + - title: A know issue in IBM Maximo Real Estate and Facilities, users may encounter failures during upgrade scenarios (9.1.x → 9.2 FC) and experience slow installation in airgap environments in the March 26, 2026 release. \ No newline at end of file From 3b34a6c480a806d1243d12a4ac01a211c8951579 Mon Sep 17 00:00:00 2001 From: nehasangwai-ibm Date: Wed, 8 Apr 2026 18:51:49 +0530 Subject: [PATCH 13/13] [patch] removed changes --- .../data/catalogs/v9-collabaddon-amd64.yaml | 180 ------------------ test/src/test_data.py | 2 +- 2 files changed, 1 insertion(+), 181 deletions(-) delete mode 100644 src/mas/devops/data/catalogs/v9-collabaddon-amd64.yaml diff --git a/src/mas/devops/data/catalogs/v9-collabaddon-amd64.yaml b/src/mas/devops/data/catalogs/v9-collabaddon-amd64.yaml deleted file mode 100644 index da4cac15..00000000 --- a/src/mas/devops/data/catalogs/v9-collabaddon-amd64.yaml +++ /dev/null @@ -1,180 +0,0 @@ ---- -# Case bundle configuration for IBM Maximo Operator Catalog v9-collabaddon (AMD64) -# ----------------------------------------------------------------------------- -# In the future this won't be necessary as we'll be able to mirror from the -# catalog itself, but not everything in the catalog supports this yet (including MAS) -# so we need to use the CASE bundle mirror process still. - -catalog_digest: sha256:e5bb0fd0b5a6c11fbcd4bc9f068cf4285333a6ea6752af471d6252a21928cab7 - -ocp_compatibility: -- "4.16" -- "4.17" -- "4.18" -- "4.19" -- "4.20" - -# Dependencies -# ----------------------------------------------------------------------------- -ibm_licensing_version: 4.2.17 # Operator version 4.2.14 (https://github.com/IBM/cloud-pak/tree/master/repo/case/ibm-licensing) -common_svcs_version: 4.13.0 # Operator version 4.13.0 (https://github.com/IBM/cloud-pak/tree/master/repo/case/ibm-cp-common-services) -common_svcs_version_1: 4.11.0 # Additional version 4.11.0 - -cp4d_platform_version: 5.2.0+20250709.170324 # Operator version 5.2.0 (https://github.com/IBM/cloud-pak/tree/master/repo/case/ibm-cp-datacore/) -ibm_zen_version: 6.2.0+20250530.152516.232 # For CPD5 ibm-zen has to be explicitily mirrored - -db2u_version: 7.3.1+20250821.161005.16793 # Operator version 110509.0.6 to find the version 7.3.1+20250821.161005.16793, search db2u-operator digest on repo (https://github.com/IBM/cloud-pak/tree/master/repo/case/ibm-db2uoperator) -db2_channel_default: v110509.0 # Default Channel version for db2u-operator -events_version: 5.0.1 # Operator version 5.0.1 (https://github.com/IBM/cloud-pak/tree/master/repo/case/ibm-events-operator) -uds_version: 2.0.12 # Operator version 2.0.12 # sticking to 2.0.12 version # Please do Not Change -sls_version: 3.12.6 # Updated # Operator version 3.12.5 (https://github.ibm.com/maximoappsuite/ibm-sls/releases) -tsm_version: 1.7.5 # Updated # Operator version 1.7.4 (https://github.ibm.com/maximoappsuite/ibm-truststore-mgr/releases) -dd_version: 1.1.23 # Updated # Operator version 1.1.23 (https://github.ibm.com/maximoappsuite/ibm-data-dictionary/releases) -appconnect_version: 6.2.0 # Operator version 6.2.0 # sticking to 6.2.0 version # Please do Not Change -wsl_version: 11.0.0+20250521.202913.73 # used for wsl and wsl_runtimes unless wsl_runtimes_version also specified -wsl_runtimes_version: 11.0.0+20250515.090949.21 # cpd 5.1.3 uses version 10.3.0 of wsl runtimes but only 10.2.0 for wsl itself -wml_version: 11.0.0+20250530.193146.282 # Operator version 5.2.0 -postgress_version: 5.16.0+20250827.110911.2626 # ibm-cpd-cloud-native-postgresql-operator 5.2.0 cp4d - -ccs_build: 11.0.0+20250605.130237.468 # cpd 5.2.0 using ccs build -# datarefinery_build: +20240517.202103.146 - -spark_version: 11.0.0+20250604.163055.2097 # Operator version 5.2.0 -cognos_version: 28.0.0+20250515.175459.10054 # Operator version 25.0.0 -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) -elasticsearch_version: 1.1.2667 # Operator version 1.1.2667 # used in cpd 5.1.3 only -opensearch_version: 1.1.2494 # Operator version 1.1.2494 - -# Maximo Application Suite -# ----------------------------------------------------------------------------- -mas_core_version: - 9.2.x-feature: 9.2.0-pre.stable_16717 # Updated - 9.1.x: 9.1.14 # Updated - 9.0.x: 9.0.23 # Updated - 8.10.x: 8.10.36 # Updated - 8.11.x: 8.11.33 # Updated -mas_assist_version: - 9.1.x: 9.1.9 # Updated - 9.0.x: 9.0.15 # Updated - 8.10.x: 8.7.8 # No Update - 8.11.x: 8.8.7 # No Update -mas_hputilities_version: - 9.1.x: "" # Not Supported - 9.0.x: "" # Not Supported - 8.10.x: 8.6.7 # No Update - 8.11.x: "" # Not Supported -mas_iot_version: - 9.1.x: 9.1.9 # Updated - 9.0.x: 9.0.18 # Updated - 8.10.x: 8.7.32 # Updated - 8.11.x: 8.8.29 # Updated -mas_manage_version: - 9.2.x-feature: 9.2.0-pre.stable_17064 # Updated - 9.1.x: 9.1.15 # Updated - 9.0.x: 9.0.24 # Updated - 8.10.x: 8.6.37 # Updated - 8.11.x: 8.7.31 # Updated -mas_monitor_version: - 9.1.x: 9.1.9 # Updated - 9.0.x: 9.0.19 # Updated - 8.10.x: 8.10.29 # Updated - 8.11.x: 8.11.27 # Updated -mas_optimizer_version: - 9.2.x-feature: 9.2.0-pre.stable_16613 # Updated - 9.1.x: 9.1.10 # Updated - 9.0.x: 9.0.21 # Updated - 8.10.x: 8.4.27 # Updated - 8.11.x: 8.5.27 # Updated -mas_predict_version: - 9.1.x: 9.1.6 # Updated - 9.0.x: 9.0.13 # Updated - 8.10.x: 8.8.14 # Updated - 8.11.x: 8.9.16 # Updated -mas_visualinspection_version: - 9.2.x-feature: 9.2.0-pre.stable_12598 # No Update - 9.1.x: 9.1.10 # No Update - 9.0.x: 9.0.18 # Updated - 8.10.x: 8.8.4 # No Update - 8.11.x: 8.9.20 # No Update -mas_facilities_version: - 9.2.x-feature: 9.2.0-pre.stable_16853 # Updated - 9.1.x: 9.1.9 # Updated - 9.0.x: "" # Not Supported - 8.10.x: "" # Not Supported - 8.11.x: "" # Not Supported - - -# Maximo AI Service -# ------------------------------------------------------------------------------ -aiservice_version: - 9.2.x-feature: 9.2.0-pre.stable_16576 # Updated - 9.1.x: 9.1.13 # Updated - - -# Extra Images for UDS -# ------------------------------------------------------------------------------ -uds_extras_version: 1.5.0 - -# Extra Images for Mongo -# ------------------------------------------------------------------------------ -mongo_extras_version_default: 8.0.17 - -# Variables used to mirror additional mongo image versions -mongo_extras_version_4: 4.4.21 -mongo_extras_version_5: 5.0.23 -mongo_extras_version_6: 6.0.12 -mongo_extras_version_7: 7.0.23 -mongo_extras_version_8: 8.0.17 - -# Extra Images for Db2u -# ------------------------------------------------------------------------------ -db2u_extras_version: 1.0.6 # No Update -db2u_filter: db2 - -# Extra Images for CCS used for PCD 5.2.0 Hotfix -# ------------------------------------------------------------------------------ -ccs_extras_version: 11.0.0 - -# Extra Images for IBM Watson Discovery -# ------------------------------------------------------------------------------ -#wd_extras_version: 1.0.4 - -# Extra Images for Redis (Collaborate) -# ------------------------------------------------------------------------------ -redis_extras_version: 2.1.40 - -# Extra Images for Amlen -# ------------------------------------------------------------------------------ -amlen_extras_version: 1.1.4 - -# Default Cloud Pak for Data version -# ------------------------------------------------------------------------------ -cpd_product_version_default: 5.2.0 - -manage_extras_913: 9.1.3 -minio_version: RELEASE.2025-06-13T11-33-47Z - -editorial: - whats_new: - - title: '**Security updates and bug fixes**' - details: - - IBM Maximo Application Suite Core Platform [v8.10.36](https://www.ibm.com/support/pages/node/7267462), [v8.11.36](https://www.ibm.com/support/pages/node/7267463), [v9.0.23](https://www.ibm.com/support/pages/node/7267464) and [v9.1.14](https://www.ibm.com/support/pages/node/7267465) - - IBM Maximo Manage [v8.6.37](https://www.ibm.com/support/pages/node/7266693), [v8.7.31](https://www.ibm.com/support/pages/node/7266692), [v9.0.24](https://www.ibm.com/support/pages/node/7266691) and [v9.1.15](https://www.ibm.com/support/pages/node/7266690) - - IBM Maximo IoT [v8.7.32](https://www.ibm.com/support/pages/node/7267121), [v8.8.29](https://www.ibm.com/support/pages/node/7267122), [v9.0.18](https://www.ibm.com/support/pages/node/7267123) and [v9.1.9](https://www.ibm.com/support/pages/node/7267124) - - IBM Maximo Monitor [v8.10.29](https://www.ibm.com/support/pages/node/7267303), [v8.11.27](https://www.ibm.com/support/pages/node/7267304), [v9.0.19](https://www.ibm.com/support/pages/node/7267305) and [v9.1.9](https://www.ibm.com/support/pages/node/7267306) - - IBM Maximo Optimizer [v8.4.27](https://www.ibm.com/support/pages/node/7266732),[v8.5.26](https://www.ibm.com/support/pages/node/7266734), [v9.0.21](https://www.ibm.com/support/pages/node/7266738) and [v9.1.10](https://www.ibm.com/support/pages/node/7266745) - - IBM Maximo Assist/Collaborate [v9.0.15](https://www.ibm.com/support/pages/node/7267220), [v9.1.9](https://www.ibm.com/support/pages/node/7267222) - - IBM Maximo Predict [v8.8.14](https://www.ibm.com/support/pages/node/7267302), [v8.9.16](https://www.ibm.com/support/pages/node/7267299), [v9.0.13](https://www.ibm.com/support/pages/node/7267298) and [v9.1.6](https://www.ibm.com/support/pages/node/7267181) - - IBM Maximo Visual Inspection [v9.0.18](https://www.ibm.com/support/pages/node/7267485) - - IBM Maximo Real Estate and Facilities [v9.1.9](https://www.ibm.com/support/pages/node/7267132) - - IBM Maximo AI Service [v9.1.13](https://www.ibm.com/support/pages/node/7266231) - - IBM Data Dictionary v1.1 - - IBM Truststore Manager v1.7 - - IBM Suite License Service v3.12 - - known_issues: - - title: Customers using **Maximo Assist v8.7 or v8.8** should not update and must instead contact IBM Support for guidance regarding the removal of IBM Watson Discovery and upgrading to Maximo Assist v9.0 - - title: A known issue exists in the January 29, 2026 release affecting HSE and Oil & Gas (9.0.23 / 9.1.64). Customers with HSE installed should avoid upgrading to the January release. Installation of HSE or Oil & Gas on Manage 9.0.x / 9.1.x should be deferred until the February 2026 patch. - - title: A known issue has been identified in Db2u warehouse operator in this catalog. Customers restoring/upgrading Db2, intermittently get db2 `SQL0290N Table space access is not allowed. SQLSTATE=55039` error causing connectivity issue between MAS and Db2. If you are facing this problem, please refer to the workaround provided in this [documentation](https://www.ibm.com/docs/en/cloud-paks/cp-data/5.3.x?topic=SSQNUZ_5.3.x/svc-db2/known-issues-dbs.htm#known-issues-dbs__db2-instance-fails-sql0290n__title__1). - - title: A known issue exists in the February 26, 2026 release affecting IBM Maximo Real Estate and Facilities. Customers with MREF installed should avoid upgrading to the February 9.1.8 release. Installation of MREF 9.1.x should be deferred until the March 2026 patch. - - title: A know issue in IBM Maximo Real Estate and Facilities, users may encounter failures during upgrade scenarios (9.1.x → 9.2 FC) and experience slow installation in airgap environments in the March 26, 2026 release. \ No newline at end of file diff --git a/test/src/test_data.py b/test/src/test_data.py index fdd6897c..62402b89 100644 --- a/test/src/test_data.py +++ b/test/src/test_data.py @@ -32,7 +32,7 @@ def test_list_catalogs(): def test_get_newest_catalog_tag(): catalogTag = getNewestCatalogTag("amd64") # Reminder: update this test when adding a new catalog each month! - assert catalogTag == "v9-collabaddon-amd64" + assert catalogTag == "v9-260430-amd64" def test_get_newest_catalog_tag_fail():