mas-cli 11.2.1__py3-none-any.whl → 11.3.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of mas-cli might be problematic. Click here for more details.
- mas/cli/__init__.py +1 -1
- mas/cli/cli.py +1 -1
- mas/cli/install/app.py +45 -45
- mas/cli/templates/ibm-mas-tekton.yaml +110 -106
- mas/cli/update/app.py +29 -11
- mas/cli/update/argParser.py +28 -0
- {mas_cli-11.2.1.dist-info → mas_cli-11.3.0.dist-info}/METADATA +1 -1
- {mas_cli-11.2.1.dist-info → mas_cli-11.3.0.dist-info}/RECORD +11 -11
- {mas_cli-11.2.1.data → mas_cli-11.3.0.data}/scripts/mas-cli +0 -0
- {mas_cli-11.2.1.dist-info → mas_cli-11.3.0.dist-info}/WHEEL +0 -0
- {mas_cli-11.2.1.dist-info → mas_cli-11.3.0.dist-info}/top_level.txt +0 -0
mas/cli/__init__.py
CHANGED
mas/cli/cli.py
CHANGED
mas/cli/install/app.py
CHANGED
|
@@ -190,7 +190,7 @@ class InstallApp(BaseApp, InstallSettingsMixin, InstallSummarizerMixin, ConfigGe
|
|
|
190
190
|
self.yesOrNo("Do you want to allow special characters for user IDs and usernames?", "mas_special_characters")
|
|
191
191
|
|
|
192
192
|
def configCP4D(self):
|
|
193
|
-
if self.getParam("mas_catalog_version") in ["v9-240625-amd64", "v9-240730-amd64", "v9-240827-amd64"]:
|
|
193
|
+
if self.getParam("mas_catalog_version") in ["v9-240625-amd64", "v9-240730-amd64", "v9-240827-amd64", "v9-241003-amd64"]:
|
|
194
194
|
logger.debug(f"Using automatic CP4D product version: {self.getParam('cpd_product_version')}")
|
|
195
195
|
self.setParam("cpd_product_version", "4.8.0")
|
|
196
196
|
elif self.getParam("cpd_product_version") == "":
|
|
@@ -929,6 +929,45 @@ class InstallApp(BaseApp, InstallSettingsMixin, InstallSummarizerMixin, ConfigGe
|
|
|
929
929
|
self.installOptions = [
|
|
930
930
|
{
|
|
931
931
|
"#": 1,
|
|
932
|
+
"catalog": "v9-241003-amd64",
|
|
933
|
+
"release": "9.0.x",
|
|
934
|
+
"core": "9.0.3",
|
|
935
|
+
"assist": "9.0.2",
|
|
936
|
+
"iot": "9.0.3",
|
|
937
|
+
"manage": "9.0.3",
|
|
938
|
+
"monitor": "9.0.3",
|
|
939
|
+
"optimizer": "9.0.3",
|
|
940
|
+
"predict": "9.0.2",
|
|
941
|
+
"inspection": "9.0.3"
|
|
942
|
+
},
|
|
943
|
+
{
|
|
944
|
+
"#": 2,
|
|
945
|
+
"catalog": "v9-241003-amd64",
|
|
946
|
+
"release": "8.11.x",
|
|
947
|
+
"core": "8.11.15",
|
|
948
|
+
"assist": "8.8.6",
|
|
949
|
+
"iot": "8.8.13",
|
|
950
|
+
"manage": "8.7.12",
|
|
951
|
+
"monitor": "8.11.11",
|
|
952
|
+
"optimizer": "8.5.9",
|
|
953
|
+
"predict": "8.9.5",
|
|
954
|
+
"inspection": "8.9.6"
|
|
955
|
+
},
|
|
956
|
+
{
|
|
957
|
+
"#": 3,
|
|
958
|
+
"catalog": "v9-241003-amd64",
|
|
959
|
+
"release": "8.10.x",
|
|
960
|
+
"core": "8.10.18",
|
|
961
|
+
"assist": "8.7.7",
|
|
962
|
+
"iot": "8.7.17",
|
|
963
|
+
"manage": "8.6.18",
|
|
964
|
+
"monitor": "8.10.14",
|
|
965
|
+
"optimizer": "8.4.10",
|
|
966
|
+
"predict": "8.8.3",
|
|
967
|
+
"inspection": "8.8.4"
|
|
968
|
+
},
|
|
969
|
+
{
|
|
970
|
+
"#": 4,
|
|
932
971
|
"catalog": "v9-240827-amd64",
|
|
933
972
|
"release": "9.0.x",
|
|
934
973
|
"core": "9.0.2",
|
|
@@ -941,7 +980,7 @@ class InstallApp(BaseApp, InstallSettingsMixin, InstallSummarizerMixin, ConfigGe
|
|
|
941
980
|
"inspection": "9.0.2"
|
|
942
981
|
},
|
|
943
982
|
{
|
|
944
|
-
"#":
|
|
983
|
+
"#": 5,
|
|
945
984
|
"catalog": "v9-240827-amd64",
|
|
946
985
|
"release": "8.11.x",
|
|
947
986
|
"core": "8.11.14",
|
|
@@ -954,7 +993,7 @@ class InstallApp(BaseApp, InstallSettingsMixin, InstallSummarizerMixin, ConfigGe
|
|
|
954
993
|
"inspection": "8.9.5"
|
|
955
994
|
},
|
|
956
995
|
{
|
|
957
|
-
"#":
|
|
996
|
+
"#": 6,
|
|
958
997
|
"catalog": "v9-240827-amd64",
|
|
959
998
|
"release": "8.10.x",
|
|
960
999
|
"core": "8.10.17",
|
|
@@ -967,7 +1006,7 @@ class InstallApp(BaseApp, InstallSettingsMixin, InstallSummarizerMixin, ConfigGe
|
|
|
967
1006
|
"inspection": "8.8.4"
|
|
968
1007
|
},
|
|
969
1008
|
{
|
|
970
|
-
"#":
|
|
1009
|
+
"#": 7,
|
|
971
1010
|
"catalog": "v9-240730-amd64",
|
|
972
1011
|
"release": "9.0.x",
|
|
973
1012
|
"core": "9.0.1",
|
|
@@ -980,7 +1019,7 @@ class InstallApp(BaseApp, InstallSettingsMixin, InstallSummarizerMixin, ConfigGe
|
|
|
980
1019
|
"inspection": "9.0.0"
|
|
981
1020
|
},
|
|
982
1021
|
{
|
|
983
|
-
"#":
|
|
1022
|
+
"#": 8,
|
|
984
1023
|
"catalog": "v9-240730-amd64",
|
|
985
1024
|
"release": "8.11.x",
|
|
986
1025
|
"core": "8.11.13",
|
|
@@ -993,7 +1032,7 @@ class InstallApp(BaseApp, InstallSettingsMixin, InstallSummarizerMixin, ConfigGe
|
|
|
993
1032
|
"inspection": "8.9.4"
|
|
994
1033
|
},
|
|
995
1034
|
{
|
|
996
|
-
"#":
|
|
1035
|
+
"#": 9,
|
|
997
1036
|
"catalog": "v9-240730-amd64",
|
|
998
1037
|
"release": "8.10.x",
|
|
999
1038
|
"core": "8.10.16",
|
|
@@ -1004,45 +1043,6 @@ class InstallApp(BaseApp, InstallSettingsMixin, InstallSummarizerMixin, ConfigGe
|
|
|
1004
1043
|
"optimizer": "8.4.8",
|
|
1005
1044
|
"predict": "8.8.3",
|
|
1006
1045
|
"inspection": "8.8.4"
|
|
1007
|
-
},
|
|
1008
|
-
{
|
|
1009
|
-
"#": 7,
|
|
1010
|
-
"catalog": "v9-240625-amd64",
|
|
1011
|
-
"release": "9.0.x",
|
|
1012
|
-
"core": "9.0.0",
|
|
1013
|
-
"assist": "9.0.0",
|
|
1014
|
-
"iot": "9.0.0",
|
|
1015
|
-
"manage": "9.0.0",
|
|
1016
|
-
"monitor": "9.0.0",
|
|
1017
|
-
"optimizer": "9.0.0",
|
|
1018
|
-
"predict": "9.0.0",
|
|
1019
|
-
"inspection": "9.0.0"
|
|
1020
|
-
},
|
|
1021
|
-
{
|
|
1022
|
-
"#": 8,
|
|
1023
|
-
"catalog": "v9-240625-amd64",
|
|
1024
|
-
"release": "8.11.x",
|
|
1025
|
-
"core": "8.11.12",
|
|
1026
|
-
"assist": "N/A",
|
|
1027
|
-
"iot": "8.8.10",
|
|
1028
|
-
"manage": "8.7.9",
|
|
1029
|
-
"monitor": "8.11.8",
|
|
1030
|
-
"optimizer": "8.5.6",
|
|
1031
|
-
"predict": "8.9.3",
|
|
1032
|
-
"inspection": "8.9.3"
|
|
1033
|
-
},
|
|
1034
|
-
{
|
|
1035
|
-
"#": 9,
|
|
1036
|
-
"catalog": "v9-240625-amd64",
|
|
1037
|
-
"release": "8.10.x",
|
|
1038
|
-
"core": "8.10.15",
|
|
1039
|
-
"assist": "N/A",
|
|
1040
|
-
"iot": "8.7.14",
|
|
1041
|
-
"manage": "8.6.15",
|
|
1042
|
-
"monitor": "8.10.11",
|
|
1043
|
-
"optimizer": "8.4.7",
|
|
1044
|
-
"predict": "N/A",
|
|
1045
|
-
"inspection": "8.8.4"
|
|
1046
1046
|
}
|
|
1047
1047
|
]
|
|
1048
1048
|
|
|
@@ -108,7 +108,7 @@ spec:
|
|
|
108
108
|
command:
|
|
109
109
|
- /opt/app-root/src/run-role.sh
|
|
110
110
|
- appconnect
|
|
111
|
-
image: quay.io/ibmmas/cli:11.
|
|
111
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
112
112
|
imagePullPolicy: $(params.image_pull_policy)
|
|
113
113
|
workingDir: /workspace/configs
|
|
114
114
|
|
|
@@ -226,7 +226,7 @@ spec:
|
|
|
226
226
|
command:
|
|
227
227
|
- /opt/app-root/src/run-role.sh
|
|
228
228
|
- arcgis
|
|
229
|
-
image: quay.io/ibmmas/cli:11.
|
|
229
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
230
230
|
imagePullPolicy: $(params.image_pull_policy)
|
|
231
231
|
# --------------------------------------------------------------------------------
|
|
232
232
|
# /home/runner/work/cli/cli/tekton/target/tasks/cert-manager.yaml
|
|
@@ -296,7 +296,7 @@ spec:
|
|
|
296
296
|
command:
|
|
297
297
|
- /opt/app-root/src/run-role.sh
|
|
298
298
|
- cert_manager
|
|
299
|
-
image: quay.io/ibmmas/cli:11.
|
|
299
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
300
300
|
imagePullPolicy: $(params.image_pull_policy)
|
|
301
301
|
workingDir: /workspace/configs
|
|
302
302
|
# --------------------------------------------------------------------------------
|
|
@@ -362,7 +362,7 @@ spec:
|
|
|
362
362
|
command:
|
|
363
363
|
- /opt/app-root/src/run-role.sh
|
|
364
364
|
- common_services
|
|
365
|
-
image: quay.io/ibmmas/cli:11.
|
|
365
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
366
366
|
imagePullPolicy: $(params.image_pull_policy)
|
|
367
367
|
workingDir: /workspace/configs
|
|
368
368
|
# --------------------------------------------------------------------------------
|
|
@@ -483,7 +483,7 @@ spec:
|
|
|
483
483
|
command:
|
|
484
484
|
- /opt/app-root/src/run-role.sh
|
|
485
485
|
- cos
|
|
486
|
-
image: quay.io/ibmmas/cli:11.
|
|
486
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
487
487
|
imagePullPolicy: $(params.image_pull_policy)
|
|
488
488
|
workingDir: /workspace/configs
|
|
489
489
|
|
|
@@ -603,7 +603,7 @@ spec:
|
|
|
603
603
|
command:
|
|
604
604
|
- /opt/app-root/src/run-role.sh
|
|
605
605
|
- cp4d_service
|
|
606
|
-
image: quay.io/ibmmas/cli:11.
|
|
606
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
607
607
|
imagePullPolicy: $(params.image_pull_policy)
|
|
608
608
|
workingDir: /workspace/configs
|
|
609
609
|
# --------------------------------------------------------------------------------
|
|
@@ -720,7 +720,7 @@ spec:
|
|
|
720
720
|
command:
|
|
721
721
|
- /opt/app-root/src/run-role.sh
|
|
722
722
|
- cp4d_service
|
|
723
|
-
image: quay.io/ibmmas/cli:11.
|
|
723
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
724
724
|
imagePullPolicy: $(params.image_pull_policy)
|
|
725
725
|
workingDir: /workspace/configs
|
|
726
726
|
|
|
@@ -826,7 +826,7 @@ spec:
|
|
|
826
826
|
command:
|
|
827
827
|
- /opt/app-root/src/run-role.sh
|
|
828
828
|
- cp4d
|
|
829
|
-
image: quay.io/ibmmas/cli:11.
|
|
829
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
830
830
|
imagePullPolicy: $(params.image_pull_policy)
|
|
831
831
|
# --------------------------------------------------------------------------------
|
|
832
832
|
# /home/runner/work/cli/cli/tekton/target/tasks/db2.yaml
|
|
@@ -1148,7 +1148,7 @@ spec:
|
|
|
1148
1148
|
command:
|
|
1149
1149
|
- /opt/app-root/src/run-role.sh
|
|
1150
1150
|
- db2
|
|
1151
|
-
image: quay.io/ibmmas/cli:11.
|
|
1151
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
1152
1152
|
imagePullPolicy: $(params.image_pull_policy)
|
|
1153
1153
|
workingDir: /workspace/configs
|
|
1154
1154
|
|
|
@@ -1258,7 +1258,7 @@ spec:
|
|
|
1258
1258
|
command:
|
|
1259
1259
|
- /opt/app-root/src/run-role.sh
|
|
1260
1260
|
- eck
|
|
1261
|
-
image: quay.io/ibmmas/cli:11.
|
|
1261
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
1262
1262
|
imagePullPolicy: $(params.image_pull_policy)
|
|
1263
1263
|
# --------------------------------------------------------------------------------
|
|
1264
1264
|
# /home/runner/work/cli/cli/tekton/target/tasks/gencfg-workspace.yaml
|
|
@@ -1347,7 +1347,7 @@ spec:
|
|
|
1347
1347
|
command:
|
|
1348
1348
|
- /opt/app-root/src/run-role.sh
|
|
1349
1349
|
- gencfg_workspace
|
|
1350
|
-
image: quay.io/ibmmas/cli:11.
|
|
1350
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
1351
1351
|
imagePullPolicy: $(params.image_pull_policy)
|
|
1352
1352
|
workingDir: /workspace/configs
|
|
1353
1353
|
|
|
@@ -1451,7 +1451,7 @@ spec:
|
|
|
1451
1451
|
- -c
|
|
1452
1452
|
name: gitops-bootstrap
|
|
1453
1453
|
imagePullPolicy: IfNotPresent
|
|
1454
|
-
image: quay.io/ibmmas/cli:11.
|
|
1454
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
1455
1455
|
workspaces:
|
|
1456
1456
|
- name: configs
|
|
1457
1457
|
# --------------------------------------------------------------------------------
|
|
@@ -1528,7 +1528,7 @@ spec:
|
|
|
1528
1528
|
- -c
|
|
1529
1529
|
name: gitops-cis-compliance
|
|
1530
1530
|
imagePullPolicy: IfNotPresent
|
|
1531
|
-
image: quay.io/ibmmas/cli:11.
|
|
1531
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
1532
1532
|
workspaces:
|
|
1533
1533
|
- name: configs
|
|
1534
1534
|
# --------------------------------------------------------------------------------
|
|
@@ -1719,7 +1719,7 @@ spec:
|
|
|
1719
1719
|
- -c
|
|
1720
1720
|
name: gitops-cluster
|
|
1721
1721
|
imagePullPolicy: Always
|
|
1722
|
-
image: quay.io/ibmmas/cli:11.
|
|
1722
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
1723
1723
|
workspaces:
|
|
1724
1724
|
- name: configs
|
|
1725
1725
|
# --------------------------------------------------------------------------------
|
|
@@ -1814,7 +1814,7 @@ spec:
|
|
|
1814
1814
|
- -c
|
|
1815
1815
|
name: gitops-cos
|
|
1816
1816
|
imagePullPolicy: IfNotPresent
|
|
1817
|
-
image: quay.io/ibmmas/cli:11.
|
|
1817
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
1818
1818
|
workspaces:
|
|
1819
1819
|
- name: configs
|
|
1820
1820
|
# --------------------------------------------------------------------------------
|
|
@@ -1927,7 +1927,7 @@ spec:
|
|
|
1927
1927
|
- -c
|
|
1928
1928
|
name: gitops-cp4d-service
|
|
1929
1929
|
imagePullPolicy: IfNotPresent
|
|
1930
|
-
image: quay.io/ibmmas/cli:11.
|
|
1930
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
1931
1931
|
workspaces:
|
|
1932
1932
|
- name: configs
|
|
1933
1933
|
- name: shared-gitops-configs
|
|
@@ -2036,7 +2036,7 @@ spec:
|
|
|
2036
2036
|
- -c
|
|
2037
2037
|
name: gitops-cp4d
|
|
2038
2038
|
imagePullPolicy: IfNotPresent
|
|
2039
|
-
image: quay.io/ibmmas/cli:11.
|
|
2039
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
2040
2040
|
workspaces:
|
|
2041
2041
|
- name: configs
|
|
2042
2042
|
- name: shared-gitops-configs
|
|
@@ -2288,7 +2288,7 @@ spec:
|
|
|
2288
2288
|
- -c
|
|
2289
2289
|
name: gitops-db2u-database
|
|
2290
2290
|
imagePullPolicy: Always
|
|
2291
|
-
image: quay.io/ibmmas/cli:11.
|
|
2291
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
2292
2292
|
workspaces:
|
|
2293
2293
|
- name: configs
|
|
2294
2294
|
- name: shared-gitops-configs
|
|
@@ -2381,7 +2381,7 @@ spec:
|
|
|
2381
2381
|
- -c
|
|
2382
2382
|
name: gitops-db2u
|
|
2383
2383
|
imagePullPolicy: IfNotPresent
|
|
2384
|
-
image: quay.io/ibmmas/cli:11.
|
|
2384
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
2385
2385
|
workspaces:
|
|
2386
2386
|
- name: configs
|
|
2387
2387
|
# --------------------------------------------------------------------------------
|
|
@@ -2508,7 +2508,7 @@ spec:
|
|
|
2508
2508
|
- -c
|
|
2509
2509
|
name: gitops-delete-jdbc-config
|
|
2510
2510
|
imagePullPolicy: IfNotPresent
|
|
2511
|
-
image: quay.io/ibmmas/cli:11.
|
|
2511
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
2512
2512
|
workspaces:
|
|
2513
2513
|
- name: configs
|
|
2514
2514
|
# --------------------------------------------------------------------------------
|
|
@@ -2606,7 +2606,7 @@ spec:
|
|
|
2606
2606
|
- -c
|
|
2607
2607
|
name: gitops-delete-kafka-config
|
|
2608
2608
|
imagePullPolicy: Always
|
|
2609
|
-
image: quay.io/ibmmas/cli:11.
|
|
2609
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
2610
2610
|
workspaces:
|
|
2611
2611
|
- name: configs
|
|
2612
2612
|
|
|
@@ -2698,7 +2698,7 @@ spec:
|
|
|
2698
2698
|
- -c
|
|
2699
2699
|
name: gitops-deprovision-app-config
|
|
2700
2700
|
imagePullPolicy: IfNotPresent
|
|
2701
|
-
image: quay.io/ibmmas/cli:11.
|
|
2701
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
2702
2702
|
workspaces:
|
|
2703
2703
|
- name: configs
|
|
2704
2704
|
# --------------------------------------------------------------------------------
|
|
@@ -2783,7 +2783,7 @@ spec:
|
|
|
2783
2783
|
- -c
|
|
2784
2784
|
name: gitops-deprovision-app-install
|
|
2785
2785
|
imagePullPolicy: IfNotPresent
|
|
2786
|
-
image: quay.io/ibmmas/cli:11.
|
|
2786
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
2787
2787
|
workspaces:
|
|
2788
2788
|
- name: configs
|
|
2789
2789
|
# --------------------------------------------------------------------------------
|
|
@@ -2868,7 +2868,7 @@ spec:
|
|
|
2868
2868
|
- -c
|
|
2869
2869
|
name: gitops-deprovision-cluster
|
|
2870
2870
|
imagePullPolicy: IfNotPresent
|
|
2871
|
-
image: quay.io/ibmmas/cli:11.
|
|
2871
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
2872
2872
|
workspaces:
|
|
2873
2873
|
- name: configs
|
|
2874
2874
|
# --------------------------------------------------------------------------------
|
|
@@ -2979,7 +2979,7 @@ spec:
|
|
|
2979
2979
|
- -c
|
|
2980
2980
|
name: gitops-deprovision-cos
|
|
2981
2981
|
imagePullPolicy: IfNotPresent
|
|
2982
|
-
image: quay.io/ibmmas/cli:11.
|
|
2982
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
2983
2983
|
workspaces:
|
|
2984
2984
|
- name: configs
|
|
2985
2985
|
# --------------------------------------------------------------------------------
|
|
@@ -3067,7 +3067,7 @@ spec:
|
|
|
3067
3067
|
- -c
|
|
3068
3068
|
name: gitops-deprovision-db2u-database
|
|
3069
3069
|
imagePullPolicy: IfNotPresent
|
|
3070
|
-
image: quay.io/ibmmas/cli:11.
|
|
3070
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
3071
3071
|
workspaces:
|
|
3072
3072
|
- name: configs
|
|
3073
3073
|
|
|
@@ -3150,7 +3150,7 @@ spec:
|
|
|
3150
3150
|
- -c
|
|
3151
3151
|
name: gitops-deprovision-db2u
|
|
3152
3152
|
imagePullPolicy: IfNotPresent
|
|
3153
|
-
image: quay.io/ibmmas/cli:11.
|
|
3153
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
3154
3154
|
workspaces:
|
|
3155
3155
|
- name: configs
|
|
3156
3156
|
|
|
@@ -3226,7 +3226,7 @@ spec:
|
|
|
3226
3226
|
- -c
|
|
3227
3227
|
name: gitops-deprovision-efs
|
|
3228
3228
|
imagePullPolicy: IfNotPresent
|
|
3229
|
-
image: quay.io/ibmmas/cli:11.
|
|
3229
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
3230
3230
|
workspaces:
|
|
3231
3231
|
- name: configs
|
|
3232
3232
|
|
|
@@ -3335,7 +3335,7 @@ spec:
|
|
|
3335
3335
|
- -c
|
|
3336
3336
|
name: gitops-deprovision-kafka
|
|
3337
3337
|
imagePullPolicy: IfNotPresent
|
|
3338
|
-
image: quay.io/ibmmas/cli:11.
|
|
3338
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
3339
3339
|
workspaces:
|
|
3340
3340
|
- name: configs
|
|
3341
3341
|
# --------------------------------------------------------------------------------
|
|
@@ -3437,7 +3437,7 @@ spec:
|
|
|
3437
3437
|
- -c
|
|
3438
3438
|
name: gitops-deprovision-mongo
|
|
3439
3439
|
imagePullPolicy: IfNotPresent
|
|
3440
|
-
image: quay.io/ibmmas/cli:11.
|
|
3440
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
3441
3441
|
workspaces:
|
|
3442
3442
|
- name: configs
|
|
3443
3443
|
|
|
@@ -3494,7 +3494,7 @@ spec:
|
|
|
3494
3494
|
- -c
|
|
3495
3495
|
name: gitops-deprovision-rosa
|
|
3496
3496
|
imagePullPolicy: IfNotPresent
|
|
3497
|
-
image: quay.io/ibmmas/cli:11.
|
|
3497
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
3498
3498
|
workspaces:
|
|
3499
3499
|
- name: configs
|
|
3500
3500
|
# --------------------------------------------------------------------------------
|
|
@@ -3699,7 +3699,7 @@ spec:
|
|
|
3699
3699
|
- -c
|
|
3700
3700
|
name: gitops-deprovision-suite-config
|
|
3701
3701
|
imagePullPolicy: IfNotPresent
|
|
3702
|
-
image: quay.io/ibmmas/cli:11.
|
|
3702
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
3703
3703
|
workspaces:
|
|
3704
3704
|
- name: configs
|
|
3705
3705
|
|
|
@@ -3797,7 +3797,7 @@ spec:
|
|
|
3797
3797
|
- -c
|
|
3798
3798
|
name: gitops-deprovision-suite-idp-config
|
|
3799
3799
|
imagePullPolicy: IfNotPresent
|
|
3800
|
-
image: quay.io/ibmmas/cli:11.
|
|
3800
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
3801
3801
|
workspaces:
|
|
3802
3802
|
- name: configs
|
|
3803
3803
|
# --------------------------------------------------------------------------------
|
|
@@ -3889,7 +3889,7 @@ spec:
|
|
|
3889
3889
|
- -c
|
|
3890
3890
|
name: gitops-deprovision-suite-objectstorage-config
|
|
3891
3891
|
imagePullPolicy: IfNotPresent
|
|
3892
|
-
image: quay.io/ibmmas/cli:11.
|
|
3892
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
3893
3893
|
workspaces:
|
|
3894
3894
|
- name: configs
|
|
3895
3895
|
# --------------------------------------------------------------------------------
|
|
@@ -3981,7 +3981,7 @@ spec:
|
|
|
3981
3981
|
- -c
|
|
3982
3982
|
name: gitops-deprovision-suite-smtp-config
|
|
3983
3983
|
imagePullPolicy: IfNotPresent
|
|
3984
|
-
image: quay.io/ibmmas/cli:11.
|
|
3984
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
3985
3985
|
workspaces:
|
|
3986
3986
|
- name: configs
|
|
3987
3987
|
# --------------------------------------------------------------------------------
|
|
@@ -4074,7 +4074,7 @@ spec:
|
|
|
4074
4074
|
- -c
|
|
4075
4075
|
name: gitops-deprovision-suite-watson-studio-config
|
|
4076
4076
|
imagePullPolicy: IfNotPresent
|
|
4077
|
-
image: quay.io/ibmmas/cli:11.
|
|
4077
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
4078
4078
|
workspaces:
|
|
4079
4079
|
- name: configs
|
|
4080
4080
|
# --------------------------------------------------------------------------------
|
|
@@ -4165,7 +4165,7 @@ spec:
|
|
|
4165
4165
|
- -c
|
|
4166
4166
|
name: gitops-deprovision-suite-workspace
|
|
4167
4167
|
imagePullPolicy: Always
|
|
4168
|
-
image: quay.io/ibmmas/cli:11.
|
|
4168
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
4169
4169
|
workspaces:
|
|
4170
4170
|
- name: configs
|
|
4171
4171
|
# --------------------------------------------------------------------------------
|
|
@@ -4258,7 +4258,7 @@ spec:
|
|
|
4258
4258
|
- -c
|
|
4259
4259
|
name: gitops-deprovision-suite
|
|
4260
4260
|
imagePullPolicy: IfNotPresent
|
|
4261
|
-
image: quay.io/ibmmas/cli:11.
|
|
4261
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
4262
4262
|
workspaces:
|
|
4263
4263
|
- name: configs
|
|
4264
4264
|
|
|
@@ -4361,7 +4361,7 @@ spec:
|
|
|
4361
4361
|
- -c
|
|
4362
4362
|
name: gitops-dro
|
|
4363
4363
|
imagePullPolicy: IfNotPresent
|
|
4364
|
-
image: quay.io/ibmmas/cli:11.
|
|
4364
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
4365
4365
|
workspaces:
|
|
4366
4366
|
- name: configs
|
|
4367
4367
|
# --------------------------------------------------------------------------------
|
|
@@ -4443,7 +4443,7 @@ spec:
|
|
|
4443
4443
|
- -c
|
|
4444
4444
|
name: gitops-efs
|
|
4445
4445
|
imagePullPolicy: IfNotPresent
|
|
4446
|
-
image: quay.io/ibmmas/cli:11.
|
|
4446
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
4447
4447
|
workspaces:
|
|
4448
4448
|
- name: configs
|
|
4449
4449
|
|
|
@@ -4578,7 +4578,7 @@ spec:
|
|
|
4578
4578
|
- -c
|
|
4579
4579
|
name: gitops-jdbc-config
|
|
4580
4580
|
imagePullPolicy: Always
|
|
4581
|
-
image: quay.io/ibmmas/cli:11.
|
|
4581
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
4582
4582
|
workspaces:
|
|
4583
4583
|
- name: configs
|
|
4584
4584
|
- name: shared-gitops-configs
|
|
@@ -4674,7 +4674,7 @@ spec:
|
|
|
4674
4674
|
- -c
|
|
4675
4675
|
name: gitops-kafka-config
|
|
4676
4676
|
imagePullPolicy: Always
|
|
4677
|
-
image: quay.io/ibmmas/cli:11.
|
|
4677
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
4678
4678
|
workspaces:
|
|
4679
4679
|
- name: configs
|
|
4680
4680
|
|
|
@@ -4795,7 +4795,7 @@ spec:
|
|
|
4795
4795
|
- -c
|
|
4796
4796
|
name: gitops-kafka
|
|
4797
4797
|
imagePullPolicy: IfNotPresent
|
|
4798
|
-
image: quay.io/ibmmas/cli:11.
|
|
4798
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
4799
4799
|
workspaces:
|
|
4800
4800
|
- name: configs
|
|
4801
4801
|
# --------------------------------------------------------------------------------
|
|
@@ -4846,7 +4846,7 @@ spec:
|
|
|
4846
4846
|
- -c
|
|
4847
4847
|
name: gitops-license
|
|
4848
4848
|
imagePullPolicy: Always
|
|
4849
|
-
image: quay.io/ibmmas/cli:11.
|
|
4849
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
4850
4850
|
workspaces:
|
|
4851
4851
|
- name: shared-entitlement
|
|
4852
4852
|
|
|
@@ -5342,7 +5342,7 @@ spec:
|
|
|
5342
5342
|
- -c
|
|
5343
5343
|
name: gitops-mas-fvt-preparer
|
|
5344
5344
|
imagePullPolicy: Always
|
|
5345
|
-
image: quay.io/ibmmas/cli:11.
|
|
5345
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
5346
5346
|
workspaces:
|
|
5347
5347
|
- name: configs
|
|
5348
5348
|
- name: shared-additional-configs
|
|
@@ -5746,7 +5746,7 @@ spec:
|
|
|
5746
5746
|
- -c
|
|
5747
5747
|
name: gitops-mas-initiator
|
|
5748
5748
|
imagePullPolicy: IfNotPresent
|
|
5749
|
-
image: quay.io/ibmmas/cli:11.
|
|
5749
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
5750
5750
|
workspaces:
|
|
5751
5751
|
- name: configs
|
|
5752
5752
|
# --------------------------------------------------------------------------------
|
|
@@ -5853,7 +5853,7 @@ spec:
|
|
|
5853
5853
|
- -c
|
|
5854
5854
|
name: gitops-mongo
|
|
5855
5855
|
imagePullPolicy: IfNotPresent
|
|
5856
|
-
image: quay.io/ibmmas/cli:11.
|
|
5856
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
5857
5857
|
workspaces:
|
|
5858
5858
|
- name: configs
|
|
5859
5859
|
|
|
@@ -5965,7 +5965,7 @@ spec:
|
|
|
5965
5965
|
- -c
|
|
5966
5966
|
name: gitops-nvidia-gpu
|
|
5967
5967
|
imagePullPolicy: IfNotPresent
|
|
5968
|
-
image: quay.io/ibmmas/cli:11.
|
|
5968
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
5969
5969
|
workspaces:
|
|
5970
5970
|
- name: configs
|
|
5971
5971
|
# --------------------------------------------------------------------------------
|
|
@@ -6082,7 +6082,7 @@ spec:
|
|
|
6082
6082
|
- -c
|
|
6083
6083
|
name: gitops-process-mongo-user
|
|
6084
6084
|
imagePullPolicy: IfNotPresent
|
|
6085
|
-
image: quay.io/ibmmas/cli:11.
|
|
6085
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
6086
6086
|
workspaces:
|
|
6087
6087
|
- name: configs
|
|
6088
6088
|
# --------------------------------------------------------------------------------
|
|
@@ -6138,7 +6138,7 @@ spec:
|
|
|
6138
6138
|
- -c
|
|
6139
6139
|
name: gitops-rosa
|
|
6140
6140
|
imagePullPolicy: IfNotPresent
|
|
6141
|
-
image: quay.io/ibmmas/cli:11.
|
|
6141
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
6142
6142
|
workspaces:
|
|
6143
6143
|
- name: configs
|
|
6144
6144
|
# --------------------------------------------------------------------------------
|
|
@@ -6320,7 +6320,7 @@ spec:
|
|
|
6320
6320
|
- -c
|
|
6321
6321
|
name: gitops-suite-app-config
|
|
6322
6322
|
imagePullPolicy: IfNotPresent
|
|
6323
|
-
image: quay.io/ibmmas/cli:11.
|
|
6323
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
6324
6324
|
workspaces:
|
|
6325
6325
|
- name: configs
|
|
6326
6326
|
- name: shared-gitops-configs
|
|
@@ -6473,7 +6473,7 @@ spec:
|
|
|
6473
6473
|
- -c
|
|
6474
6474
|
name: gitops-suite-app-install
|
|
6475
6475
|
imagePullPolicy: Always
|
|
6476
|
-
image: quay.io/ibmmas/cli:11.
|
|
6476
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
6477
6477
|
workspaces:
|
|
6478
6478
|
- name: configs
|
|
6479
6479
|
- name: shared-gitops-configs
|
|
@@ -6579,7 +6579,7 @@ spec:
|
|
|
6579
6579
|
- -c
|
|
6580
6580
|
name: gitops-suite-certs
|
|
6581
6581
|
imagePullPolicy: IfNotPresent
|
|
6582
|
-
image: quay.io/ibmmas/cli:11.
|
|
6582
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
6583
6583
|
workspaces:
|
|
6584
6584
|
- name: configs
|
|
6585
6585
|
- name: certificates
|
|
@@ -6739,7 +6739,7 @@ spec:
|
|
|
6739
6739
|
- -c
|
|
6740
6740
|
name: gitops-suite-config
|
|
6741
6741
|
imagePullPolicy: IfNotPresent
|
|
6742
|
-
image: quay.io/ibmmas/cli:11.
|
|
6742
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
6743
6743
|
workspaces:
|
|
6744
6744
|
- name: configs
|
|
6745
6745
|
- name: shared-additional-configs
|
|
@@ -6839,7 +6839,7 @@ spec:
|
|
|
6839
6839
|
- -c
|
|
6840
6840
|
name: gitops-suite-dns
|
|
6841
6841
|
imagePullPolicy: IfNotPresent
|
|
6842
|
-
image: quay.io/ibmmas/cli:11.
|
|
6842
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
6843
6843
|
workspaces:
|
|
6844
6844
|
- name: configs
|
|
6845
6845
|
|
|
@@ -6963,7 +6963,7 @@ spec:
|
|
|
6963
6963
|
- -c
|
|
6964
6964
|
name: gitops-suite-idp-config
|
|
6965
6965
|
imagePullPolicy: IfNotPresent
|
|
6966
|
-
image: quay.io/ibmmas/cli:11.
|
|
6966
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
6967
6967
|
workspaces:
|
|
6968
6968
|
- name: configs
|
|
6969
6969
|
- name: shared-additional-configs
|
|
@@ -7064,7 +7064,7 @@ spec:
|
|
|
7064
7064
|
- -c
|
|
7065
7065
|
name: gitops-suite-objectstorage-config
|
|
7066
7066
|
imagePullPolicy: IfNotPresent
|
|
7067
|
-
image: quay.io/ibmmas/cli:11.
|
|
7067
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
7068
7068
|
workspaces:
|
|
7069
7069
|
- name: configs
|
|
7070
7070
|
- name: shared-gitops-configs
|
|
@@ -7208,7 +7208,7 @@ spec:
|
|
|
7208
7208
|
- -c
|
|
7209
7209
|
name: gitops-suite-smtp-config
|
|
7210
7210
|
imagePullPolicy: IfNotPresent
|
|
7211
|
-
image: quay.io/ibmmas/cli:11.
|
|
7211
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
7212
7212
|
workspaces:
|
|
7213
7213
|
- name: configs
|
|
7214
7214
|
|
|
@@ -7317,7 +7317,7 @@ spec:
|
|
|
7317
7317
|
- -c
|
|
7318
7318
|
name: gitops-suite-watson-studio-config
|
|
7319
7319
|
imagePullPolicy: IfNotPresent
|
|
7320
|
-
image: quay.io/ibmmas/cli:11.
|
|
7320
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
7321
7321
|
workspaces:
|
|
7322
7322
|
- name: configs
|
|
7323
7323
|
- name: shared-gitops-configs
|
|
@@ -7414,7 +7414,7 @@ spec:
|
|
|
7414
7414
|
- -c
|
|
7415
7415
|
name: gitops-suite-workspace
|
|
7416
7416
|
imagePullPolicy: IfNotPresent
|
|
7417
|
-
image: quay.io/ibmmas/cli:11.
|
|
7417
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
7418
7418
|
workspaces:
|
|
7419
7419
|
- name: configs
|
|
7420
7420
|
# --------------------------------------------------------------------------------
|
|
@@ -7684,7 +7684,7 @@ spec:
|
|
|
7684
7684
|
- -c
|
|
7685
7685
|
name: gitops-suite
|
|
7686
7686
|
imagePullPolicy: IfNotPresent
|
|
7687
|
-
image: quay.io/ibmmas/cli:11.
|
|
7687
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
7688
7688
|
workspaces:
|
|
7689
7689
|
- name: configs
|
|
7690
7690
|
- name: shared-gitops-configs
|
|
@@ -7734,7 +7734,7 @@ spec:
|
|
|
7734
7734
|
|
|
7735
7735
|
steps:
|
|
7736
7736
|
- name: grafana
|
|
7737
|
-
image: quay.io/ibmmas/cli:11.
|
|
7737
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
7738
7738
|
imagePullPolicy: $(params.image_pull_policy)
|
|
7739
7739
|
command:
|
|
7740
7740
|
- /opt/app-root/src/run-role.sh
|
|
@@ -7868,7 +7868,7 @@ spec:
|
|
|
7868
7868
|
command:
|
|
7869
7869
|
- /opt/app-root/src/run-role.sh
|
|
7870
7870
|
- ibm_catalogs
|
|
7871
|
-
image: quay.io/ibmmas/cli:11.
|
|
7871
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
7872
7872
|
imagePullPolicy: $(params.image_pull_policy)
|
|
7873
7873
|
workingDir: /workspace/configs
|
|
7874
7874
|
# --------------------------------------------------------------------------------
|
|
@@ -8110,7 +8110,7 @@ spec:
|
|
|
8110
8110
|
command:
|
|
8111
8111
|
- /opt/app-root/src/run-role.sh
|
|
8112
8112
|
- kafka
|
|
8113
|
-
image: quay.io/ibmmas/cli:11.
|
|
8113
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
8114
8114
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8115
8115
|
workingDir: /workspace/configs
|
|
8116
8116
|
|
|
@@ -8293,7 +8293,7 @@ spec:
|
|
|
8293
8293
|
command:
|
|
8294
8294
|
- /opt/app-root/src/run-role.sh
|
|
8295
8295
|
- mongodb
|
|
8296
|
-
image: quay.io/ibmmas/cli:11.
|
|
8296
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
8297
8297
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8298
8298
|
workingDir: /workspace/configs
|
|
8299
8299
|
|
|
@@ -8336,7 +8336,7 @@ spec:
|
|
|
8336
8336
|
- $(params.base_output_dir)
|
|
8337
8337
|
- --extra-namespaces
|
|
8338
8338
|
- selenium
|
|
8339
|
-
image: quay.io/ibmmas/cli:11.
|
|
8339
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
8340
8340
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8341
8341
|
env:
|
|
8342
8342
|
- name: DEVOPS_MONGO_URI
|
|
@@ -8453,7 +8453,7 @@ spec:
|
|
|
8453
8453
|
command:
|
|
8454
8454
|
- /opt/app-root/src/run-role.sh
|
|
8455
8455
|
- nvidia_gpu
|
|
8456
|
-
image: quay.io/ibmmas/cli:11.
|
|
8456
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
8457
8457
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8458
8458
|
workingDir: /workspace/configs
|
|
8459
8459
|
|
|
@@ -8489,7 +8489,7 @@ spec:
|
|
|
8489
8489
|
# Verify Cluster
|
|
8490
8490
|
# -------------------------------------------------------------------------
|
|
8491
8491
|
- name: ocp-verify-cluster
|
|
8492
|
-
image: quay.io/ibmmas/cli:11.
|
|
8492
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
8493
8493
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8494
8494
|
command:
|
|
8495
8495
|
- /opt/app-root/src/run-role.sh
|
|
@@ -8531,7 +8531,7 @@ spec:
|
|
|
8531
8531
|
# Verify Catalogs
|
|
8532
8532
|
# -------------------------------------------------------------------------
|
|
8533
8533
|
- name: ocp-verify-catalogs
|
|
8534
|
-
image: quay.io/ibmmas/cli:11.
|
|
8534
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
8535
8535
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8536
8536
|
command:
|
|
8537
8537
|
- /opt/app-root/src/run-role.sh
|
|
@@ -8573,7 +8573,7 @@ spec:
|
|
|
8573
8573
|
# Verify Subscriptions
|
|
8574
8574
|
# -------------------------------------------------------------------------
|
|
8575
8575
|
- name: ocp-verify-subscriptions
|
|
8576
|
-
image: quay.io/ibmmas/cli:11.
|
|
8576
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
8577
8577
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8578
8578
|
command:
|
|
8579
8579
|
- /opt/app-root/src/run-role.sh
|
|
@@ -8615,7 +8615,7 @@ spec:
|
|
|
8615
8615
|
# Verify Workloads
|
|
8616
8616
|
# -------------------------------------------------------------------------
|
|
8617
8617
|
- name: ocp-verify-workloads
|
|
8618
|
-
image: quay.io/ibmmas/cli:11.
|
|
8618
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
8619
8619
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8620
8620
|
command:
|
|
8621
8621
|
- /opt/app-root/src/run-role.sh
|
|
@@ -8657,7 +8657,7 @@ spec:
|
|
|
8657
8657
|
# Verify Catalogs - Ingress TLS
|
|
8658
8658
|
# -------------------------------------------------------------------------
|
|
8659
8659
|
- name: ocp-verify-ingress
|
|
8660
|
-
image: quay.io/ibmmas/cli:11.
|
|
8660
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
8661
8661
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8662
8662
|
command:
|
|
8663
8663
|
- /opt/app-root/src/run-role.sh
|
|
@@ -8783,7 +8783,7 @@ spec:
|
|
|
8783
8783
|
command:
|
|
8784
8784
|
- /opt/app-root/src/run-role.sh
|
|
8785
8785
|
- ocp_verify
|
|
8786
|
-
image: quay.io/ibmmas/cli:11.
|
|
8786
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
8787
8787
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8788
8788
|
workingDir: /workspace/configs
|
|
8789
8789
|
# --------------------------------------------------------------------------------
|
|
@@ -8851,7 +8851,7 @@ spec:
|
|
|
8851
8851
|
command:
|
|
8852
8852
|
- /opt/app-root/src/run-role.sh
|
|
8853
8853
|
- ocs
|
|
8854
|
-
image: quay.io/ibmmas/cli:11.
|
|
8854
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
8855
8855
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8856
8856
|
workingDir: /workspace/configs
|
|
8857
8857
|
|
|
@@ -9032,7 +9032,7 @@ spec:
|
|
|
9032
9032
|
command:
|
|
9033
9033
|
- /opt/app-root/src/run-role.sh
|
|
9034
9034
|
- sls
|
|
9035
|
-
image: quay.io/ibmmas/cli:11.
|
|
9035
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
9036
9036
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9037
9037
|
workingDir: /workspace/configs
|
|
9038
9038
|
|
|
@@ -9407,12 +9407,12 @@ spec:
|
|
|
9407
9407
|
command:
|
|
9408
9408
|
- /opt/app-root/src/run-role.sh
|
|
9409
9409
|
- suite_app_config
|
|
9410
|
-
image: quay.io/ibmmas/cli:11.
|
|
9410
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
9411
9411
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9412
9412
|
|
|
9413
9413
|
# If configmap/approval-app-cfg-$(params.mas_app_id) exists then set CONFIGMAP_KEY=pending and wait for it to be changed to "approved"
|
|
9414
9414
|
- name: app-cfg-post-verify
|
|
9415
|
-
image: quay.io/ibmmas/cli:11.
|
|
9415
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
9416
9416
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9417
9417
|
command:
|
|
9418
9418
|
- /opt/app-root/src/wait-for-configmap.sh
|
|
@@ -9613,7 +9613,7 @@ spec:
|
|
|
9613
9613
|
command:
|
|
9614
9614
|
- /opt/app-root/src/run-role.sh
|
|
9615
9615
|
- suite_app_install
|
|
9616
|
-
image: quay.io/ibmmas/cli:11.
|
|
9616
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
9617
9617
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9618
9618
|
|
|
9619
9619
|
workspaces:
|
|
@@ -9702,7 +9702,7 @@ spec:
|
|
|
9702
9702
|
command:
|
|
9703
9703
|
- /opt/app-root/src/run-role.sh
|
|
9704
9704
|
- suite_app_rollback
|
|
9705
|
-
image: quay.io/ibmmas/cli:11.
|
|
9705
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
9706
9706
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9707
9707
|
# --------------------------------------------------------------------------------
|
|
9708
9708
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-app-uninstall.yaml
|
|
@@ -9765,7 +9765,7 @@ spec:
|
|
|
9765
9765
|
command:
|
|
9766
9766
|
- /opt/app-root/src/run-role.sh
|
|
9767
9767
|
- suite_app_uninstall
|
|
9768
|
-
image: quay.io/ibmmas/cli:11.
|
|
9768
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
9769
9769
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9770
9770
|
# --------------------------------------------------------------------------------
|
|
9771
9771
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-app-upgrade.yaml
|
|
@@ -9840,7 +9840,7 @@ spec:
|
|
|
9840
9840
|
command:
|
|
9841
9841
|
- /opt/app-root/src/run-role.sh
|
|
9842
9842
|
- suite_app_upgrade
|
|
9843
|
-
image: quay.io/ibmmas/cli:11.
|
|
9843
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
9844
9844
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9845
9845
|
# --------------------------------------------------------------------------------
|
|
9846
9846
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-app-verify.yaml
|
|
@@ -9941,7 +9941,7 @@ spec:
|
|
|
9941
9941
|
command:
|
|
9942
9942
|
- /opt/app-root/src/run-role.sh
|
|
9943
9943
|
- suite_app_verify
|
|
9944
|
-
image: quay.io/ibmmas/cli:11.
|
|
9944
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
9945
9945
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9946
9946
|
# --------------------------------------------------------------------------------
|
|
9947
9947
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-certs.yaml
|
|
@@ -10084,7 +10084,7 @@ spec:
|
|
|
10084
10084
|
command:
|
|
10085
10085
|
- /opt/app-root/src/run-role.sh
|
|
10086
10086
|
- suite_certs
|
|
10087
|
-
image: quay.io/ibmmas/cli:11.
|
|
10087
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
10088
10088
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10089
10089
|
|
|
10090
10090
|
workspaces:
|
|
@@ -10151,7 +10151,7 @@ spec:
|
|
|
10151
10151
|
command:
|
|
10152
10152
|
- /opt/app-root/src/run-role.sh
|
|
10153
10153
|
- suite_config
|
|
10154
|
-
image: quay.io/ibmmas/cli:11.
|
|
10154
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
10155
10155
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10156
10156
|
workingDir: /workspace/configs
|
|
10157
10157
|
|
|
@@ -10222,7 +10222,7 @@ spec:
|
|
|
10222
10222
|
command:
|
|
10223
10223
|
- /opt/app-root/src/run-role.sh
|
|
10224
10224
|
- suite_db2_setup_for_manage
|
|
10225
|
-
image: quay.io/ibmmas/cli:11.
|
|
10225
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
10226
10226
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10227
10227
|
# --------------------------------------------------------------------------------
|
|
10228
10228
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-dns.yaml
|
|
@@ -10412,7 +10412,7 @@ spec:
|
|
|
10412
10412
|
command:
|
|
10413
10413
|
- /opt/app-root/src/run-role.sh
|
|
10414
10414
|
- suite_dns
|
|
10415
|
-
image: quay.io/ibmmas/cli:11.
|
|
10415
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
10416
10416
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10417
10417
|
# --------------------------------------------------------------------------------
|
|
10418
10418
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-install.yaml
|
|
@@ -10661,7 +10661,7 @@ spec:
|
|
|
10661
10661
|
command:
|
|
10662
10662
|
- /opt/app-root/src/run-role.sh
|
|
10663
10663
|
- suite_install
|
|
10664
|
-
image: quay.io/ibmmas/cli:11.
|
|
10664
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
10665
10665
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10666
10666
|
workingDir: /workspace/configs
|
|
10667
10667
|
|
|
@@ -10749,7 +10749,7 @@ spec:
|
|
|
10749
10749
|
command:
|
|
10750
10750
|
- /opt/app-root/src/run-role.sh
|
|
10751
10751
|
- suite_rollback
|
|
10752
|
-
image: quay.io/ibmmas/cli:11.
|
|
10752
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
10753
10753
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10754
10754
|
# --------------------------------------------------------------------------------
|
|
10755
10755
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-uninstall.yaml
|
|
@@ -10814,7 +10814,7 @@ spec:
|
|
|
10814
10814
|
command:
|
|
10815
10815
|
- /opt/app-root/src/run-role.sh
|
|
10816
10816
|
- suite_uninstall
|
|
10817
|
-
image: quay.io/ibmmas/cli:11.
|
|
10817
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
10818
10818
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10819
10819
|
# --------------------------------------------------------------------------------
|
|
10820
10820
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-upgrade.yaml
|
|
@@ -10884,7 +10884,7 @@ spec:
|
|
|
10884
10884
|
command:
|
|
10885
10885
|
- /opt/app-root/src/run-role.sh
|
|
10886
10886
|
- suite_upgrade
|
|
10887
|
-
image: quay.io/ibmmas/cli:11.
|
|
10887
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
10888
10888
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10889
10889
|
# --------------------------------------------------------------------------------
|
|
10890
10890
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-verify.yaml
|
|
@@ -10946,12 +10946,12 @@ spec:
|
|
|
10946
10946
|
command:
|
|
10947
10947
|
- /opt/app-root/src/run-role.sh
|
|
10948
10948
|
- suite_verify
|
|
10949
|
-
image: quay.io/ibmmas/cli:11.
|
|
10949
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
10950
10950
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10951
10951
|
|
|
10952
10952
|
# If configmap/approval-suite-verify exists then set CONFIGMAP_KEY=pending and wait for it to be changed to "approved"
|
|
10953
10953
|
- name: suite-post-verify
|
|
10954
|
-
image: quay.io/ibmmas/cli:11.
|
|
10954
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
10955
10955
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10956
10956
|
command:
|
|
10957
10957
|
- /opt/app-root/src/wait-for-configmap.sh
|
|
@@ -11080,7 +11080,7 @@ spec:
|
|
|
11080
11080
|
command:
|
|
11081
11081
|
- /opt/app-root/src/run-role.sh
|
|
11082
11082
|
- turbonomic
|
|
11083
|
-
image: quay.io/ibmmas/cli:11.
|
|
11083
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
11084
11084
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11085
11085
|
# --------------------------------------------------------------------------------
|
|
11086
11086
|
# /home/runner/work/cli/cli/tekton/target/tasks/uds.yaml
|
|
@@ -11161,7 +11161,7 @@ spec:
|
|
|
11161
11161
|
# IBM User Data Services (UDS)
|
|
11162
11162
|
# -------------------------------------------------------------------------
|
|
11163
11163
|
- name: uds
|
|
11164
|
-
image: quay.io/ibmmas/cli:11.
|
|
11164
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
11165
11165
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11166
11166
|
workingDir: /workspace/configs
|
|
11167
11167
|
command:
|
|
@@ -11224,7 +11224,7 @@ spec:
|
|
|
11224
11224
|
# IBM Data Reporter Operator (DRO)
|
|
11225
11225
|
# -------------------------------------------------------------------------
|
|
11226
11226
|
- name: dro
|
|
11227
|
-
image: quay.io/ibmmas/cli:11.
|
|
11227
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
11228
11228
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11229
11229
|
workingDir: /workspace/configs
|
|
11230
11230
|
command:
|
|
@@ -11310,7 +11310,7 @@ spec:
|
|
|
11310
11310
|
|
|
11311
11311
|
steps:
|
|
11312
11312
|
- name: update-configmap
|
|
11313
|
-
image: quay.io/ibmmas/cli:11.
|
|
11313
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
11314
11314
|
command:
|
|
11315
11315
|
- /opt/app-root/src/update-configmap.sh
|
|
11316
11316
|
env:
|
|
@@ -11372,7 +11372,7 @@ spec:
|
|
|
11372
11372
|
|
|
11373
11373
|
steps:
|
|
11374
11374
|
- name: wait-for-configmap
|
|
11375
|
-
image: quay.io/ibmmas/cli:11.
|
|
11375
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
11376
11376
|
command:
|
|
11377
11377
|
- /opt/app-root/src/wait-for-configmap.sh
|
|
11378
11378
|
env:
|
|
@@ -11436,7 +11436,7 @@ spec:
|
|
|
11436
11436
|
|
|
11437
11437
|
steps:
|
|
11438
11438
|
- name: wait
|
|
11439
|
-
image: quay.io/ibmmas/cli:11.
|
|
11439
|
+
image: quay.io/ibmmas/cli:11.3.0
|
|
11440
11440
|
command:
|
|
11441
11441
|
- /opt/app-root/src/wait-for-tekton.sh
|
|
11442
11442
|
env:
|
|
@@ -18419,7 +18419,10 @@ spec:
|
|
|
18419
18419
|
- name: cpd_install_cognos
|
|
18420
18420
|
type: string
|
|
18421
18421
|
default: ""
|
|
18422
|
-
|
|
18422
|
+
- name: cpd_install_all
|
|
18423
|
+
type: string
|
|
18424
|
+
default: ""
|
|
18425
|
+
|
|
18423
18426
|
# Dependencies - UDS
|
|
18424
18427
|
# -----------------------------------------------------------------------------
|
|
18425
18428
|
- name: uds_contact_email
|
|
@@ -19674,11 +19677,12 @@ spec:
|
|
|
19674
19677
|
name: mas-devops-cp4d
|
|
19675
19678
|
# Only needed if either Predict, Assist, Health w/ WSL, or Cognos are being installed
|
|
19676
19679
|
when:
|
|
19677
|
-
- input: "$(params.mas_app_channel_predict)$(params.mas_app_channel_assist)$(params.mas_appws_bindings_health_wsl_flag)$(params.cpd_install_cognos)"
|
|
19680
|
+
- input: "$(params.mas_app_channel_predict)$(params.mas_app_channel_assist)$(params.mas_appws_bindings_health_wsl_flag)$(params.cpd_install_cognos)$(params.cpd_install_all)"
|
|
19678
19681
|
operator: notin
|
|
19679
19682
|
values: [""]
|
|
19680
19683
|
runAfter:
|
|
19681
19684
|
- cert-manager
|
|
19685
|
+
- ibm-catalogs
|
|
19682
19686
|
|
|
19683
19687
|
# 3.2 Watson Studio
|
|
19684
19688
|
- name: watson-studio
|
|
@@ -19709,7 +19713,7 @@ spec:
|
|
|
19709
19713
|
name: mas-devops-cp4d-service
|
|
19710
19714
|
# Only needed if either Predict or Health w/ WSL are being installed
|
|
19711
19715
|
when:
|
|
19712
|
-
- input: "$(params.mas_app_channel_predict)$(params.mas_appws_bindings_health_wsl_flag)"
|
|
19716
|
+
- input: "$(params.mas_app_channel_predict)$(params.mas_appws_bindings_health_wsl_flag)$(params.cpd_install_all)"
|
|
19713
19717
|
operator: notin
|
|
19714
19718
|
values: [""]
|
|
19715
19719
|
workspaces:
|
|
@@ -19747,7 +19751,7 @@ spec:
|
|
|
19747
19751
|
name: mas-devops-cp4d-service
|
|
19748
19752
|
# Only needed if Predict is being installed
|
|
19749
19753
|
when:
|
|
19750
|
-
- input: "$(params.mas_app_channel_predict)"
|
|
19754
|
+
- input: "$(params.mas_app_channel_predict)$(params.cpd_install_all)"
|
|
19751
19755
|
operator: notin
|
|
19752
19756
|
values: [""]
|
|
19753
19757
|
workspaces:
|
|
@@ -19785,7 +19789,7 @@ spec:
|
|
|
19785
19789
|
name: mas-devops-cp4d-service
|
|
19786
19790
|
# Only needed if Predict is being installed
|
|
19787
19791
|
when:
|
|
19788
|
-
- input: "$(params.mas_app_channel_predict)"
|
|
19792
|
+
- input: "$(params.mas_app_channel_predict)$(params.cpd_install_all)"
|
|
19789
19793
|
operator: notin
|
|
19790
19794
|
values: [""]
|
|
19791
19795
|
workspaces:
|
|
@@ -19825,7 +19829,7 @@ spec:
|
|
|
19825
19829
|
name: mas-devops-cp4d-service
|
|
19826
19830
|
# Only needed if Predict is being installed
|
|
19827
19831
|
when:
|
|
19828
|
-
- input: "$(params.mas_app_channel_predict)"
|
|
19832
|
+
- input: "$(params.mas_app_channel_predict)$(params.cpd_install_all)"
|
|
19829
19833
|
operator: notin
|
|
19830
19834
|
values: [""]
|
|
19831
19835
|
- input: "$(params.cpd_install_openscale)"
|
|
@@ -19868,7 +19872,7 @@ spec:
|
|
|
19868
19872
|
name: mas-devops-cp4d-service
|
|
19869
19873
|
# Only needed if Predict is being installed
|
|
19870
19874
|
when:
|
|
19871
|
-
- input: "$(params.mas_app_channel_predict)"
|
|
19875
|
+
- input: "$(params.mas_app_channel_predict)$(params.cpd_install_all)"
|
|
19872
19876
|
operator: notin
|
|
19873
19877
|
values: [""]
|
|
19874
19878
|
- input: "$(params.cpd_install_spss)"
|
|
@@ -19909,7 +19913,7 @@ spec:
|
|
|
19909
19913
|
name: mas-devops-cp4d-service
|
|
19910
19914
|
# Only needed if Manage is being installed and Cognos is chosen to be installed
|
|
19911
19915
|
when:
|
|
19912
|
-
- input: "$(params.mas_app_channel_manage)"
|
|
19916
|
+
- input: "$(params.mas_app_channel_manage)$(params.cpd_install_all)"
|
|
19913
19917
|
operator: notin
|
|
19914
19918
|
values: [""]
|
|
19915
19919
|
- input: "$(params.cpd_install_cognos)"
|
mas/cli/update/app.py
CHANGED
|
@@ -37,6 +37,7 @@ class UpdateApp(BaseApp):
|
|
|
37
37
|
"""
|
|
38
38
|
self.args = updateArgParser.parse_args(args=argv)
|
|
39
39
|
self.noConfirm = self.args.no_confirm
|
|
40
|
+
self.devMode = self.args.dev_mode
|
|
40
41
|
|
|
41
42
|
if self.args.mas_catalog_version:
|
|
42
43
|
# Non-interactive mode
|
|
@@ -53,7 +54,13 @@ class UpdateApp(BaseApp):
|
|
|
53
54
|
"dro_migration",
|
|
54
55
|
"dro_storage_class",
|
|
55
56
|
"dro_namespace",
|
|
56
|
-
"skip_pre_check"
|
|
57
|
+
"skip_pre_check",
|
|
58
|
+
"dev_mode",
|
|
59
|
+
"cpd_product_version",
|
|
60
|
+
# Dev Mode
|
|
61
|
+
"artifactory_username",
|
|
62
|
+
"artifactory_token"
|
|
63
|
+
|
|
57
64
|
]
|
|
58
65
|
for key, value in vars(self.args).items():
|
|
59
66
|
# These fields we just pass straight through to the parameters and fail if they are not set
|
|
@@ -92,7 +99,8 @@ class UpdateApp(BaseApp):
|
|
|
92
99
|
self.chooseCatalog()
|
|
93
100
|
|
|
94
101
|
# Validations
|
|
95
|
-
self.
|
|
102
|
+
if not self.devMode:
|
|
103
|
+
self.validateCatalog()
|
|
96
104
|
|
|
97
105
|
self.printH1("Dependency Update Checks")
|
|
98
106
|
with Halo(text='Checking for IBM Watson Discovery', spinner=self.spinner) as h:
|
|
@@ -236,13 +244,13 @@ class UpdateApp(BaseApp):
|
|
|
236
244
|
self.printH1("Select IBM Maximo Operator Catalog Version")
|
|
237
245
|
self.printDescription([
|
|
238
246
|
"Select MAS Catalog",
|
|
239
|
-
" 1)
|
|
240
|
-
" 2)
|
|
241
|
-
" 3)
|
|
247
|
+
" 1) Oct 03 2024 Update (MAS 9.0.3, 8.11.15, & 8.10.18)",
|
|
248
|
+
" 2) Aug 27 2024 Update (MAS 9.0.2, 8.11.14, & 8.10.17)",
|
|
249
|
+
" 3) July 30 2024 Update (MAS 9.0.1, 8.11.13, & 8.10.16)"
|
|
242
250
|
])
|
|
243
251
|
|
|
244
252
|
catalogOptions = [
|
|
245
|
-
"v9-
|
|
253
|
+
"v9-241003-amd64", "v9-240827-amd64", "v9-240730-amd64"
|
|
246
254
|
]
|
|
247
255
|
self.promptForListSelect("Select catalog version", catalogOptions, "mas_catalog_version", default=1)
|
|
248
256
|
|
|
@@ -333,13 +341,19 @@ class UpdateApp(BaseApp):
|
|
|
333
341
|
# the case bundles in there anymore
|
|
334
342
|
# Longer term we will centralise this information inside the mas-devops python collection,
|
|
335
343
|
# where it can be made available to both the ansible collection and this python package.
|
|
344
|
+
defaultMongoVersion = "6.0.12"
|
|
336
345
|
mongoVersions = {
|
|
337
346
|
"v9-240625-amd64": "6.0.12",
|
|
338
347
|
"v9-240730-amd64": "6.0.12",
|
|
339
|
-
"v9-240827-amd64": "6.0.12"
|
|
348
|
+
"v9-240827-amd64": "6.0.12",
|
|
349
|
+
"v9-241003-amd64": "6.0.12"
|
|
340
350
|
}
|
|
351
|
+
catalogVersion = self.getParam('mas_catalog_version')
|
|
352
|
+
if catalogVersion in mongoVersions:
|
|
353
|
+
targetMongoVersion = mongoVersions[self.getParam('mas_catalog_version')]
|
|
354
|
+
else:
|
|
355
|
+
targetMongoVersion = defaultMongoVersion
|
|
341
356
|
|
|
342
|
-
targetMongoVersion = mongoVersions[self.getParam('mas_catalog_version')]
|
|
343
357
|
self.setParam("mongodb_version", targetMongoVersion)
|
|
344
358
|
|
|
345
359
|
targetMongoVersionMajor = targetMongoVersion.split(".")[0]
|
|
@@ -454,7 +468,8 @@ class UpdateApp(BaseApp):
|
|
|
454
468
|
cp4dVersions = {
|
|
455
469
|
"v9-240625-amd64": "4.8.0",
|
|
456
470
|
"v9-240730-amd64": "4.8.0",
|
|
457
|
-
"v9-240827-amd64": "4.8.0"
|
|
471
|
+
"v9-240827-amd64": "4.8.0",
|
|
472
|
+
"v9-241003-amd64": "4.8.0"
|
|
458
473
|
|
|
459
474
|
}
|
|
460
475
|
|
|
@@ -476,7 +491,10 @@ class UpdateApp(BaseApp):
|
|
|
476
491
|
if len(cpds) > 0:
|
|
477
492
|
cpdInstanceNamespace = cpds[0]["metadata"]["namespace"]
|
|
478
493
|
cpdInstanceVersion = cpds[0]["spec"]["version"]
|
|
479
|
-
|
|
494
|
+
if self.args.cpd_product_version:
|
|
495
|
+
cpdTargetVersion = self.getParam("cpd_product_version")
|
|
496
|
+
else:
|
|
497
|
+
cpdTargetVersion = cp4dVersions[self.getParam("mas_catalog_version")]
|
|
480
498
|
|
|
481
499
|
currentCpdVersionMajorMinor = f"{cpdInstanceVersion.split('.')[0]}.{cpdInstanceVersion.split('.')[1]}"
|
|
482
500
|
targetCpdVersionMajorMinor = f"{cpdTargetVersion.split('.')[0]}.{cpdTargetVersion.split('.')[1]}"
|
|
@@ -492,7 +510,7 @@ class UpdateApp(BaseApp):
|
|
|
492
510
|
"<u>Dependency Update Notice</u>",
|
|
493
511
|
f"Cloud Pak For Data is currently running version {cpdInstanceVersion} and will be updated to version {cpdTargetVersion}",
|
|
494
512
|
"It is recommended that you backup your Cloud Pak for Data instance before proceeding:",
|
|
495
|
-
" <u>https://www.ibm.com/docs/en/cloud-paks/cp-data/
|
|
513
|
+
" <u>https://www.ibm.com/docs/en/cloud-paks/cp-data/5.0.x?topic=administering-backing-up-restoring-cloud-pak-data</u>"
|
|
496
514
|
])
|
|
497
515
|
|
|
498
516
|
# Lookup the storage classes already used by CP4D
|
mas/cli/update/argParser.py
CHANGED
|
@@ -104,8 +104,36 @@ droArgGroup.add_argument(
|
|
|
104
104
|
help="Set Custom Namespace for DRO(Default: redhat-marketplace)",
|
|
105
105
|
)
|
|
106
106
|
|
|
107
|
+
# Development Mode
|
|
108
|
+
# -----------------------------------------------------------------------------
|
|
109
|
+
devArgGroup = updateArgParser.add_argument_group("Development Mode")
|
|
110
|
+
devArgGroup.add_argument(
|
|
111
|
+
"--artifactory-username",
|
|
112
|
+
required=False,
|
|
113
|
+
help="Username for access to development builds on Artifactory"
|
|
114
|
+
)
|
|
115
|
+
devArgGroup.add_argument(
|
|
116
|
+
"--artifactory-token",
|
|
117
|
+
required=False,
|
|
118
|
+
help="API Token for access to development builds on Artifactory"
|
|
119
|
+
)
|
|
107
120
|
|
|
121
|
+
# More Options
|
|
122
|
+
# -----------------------------------------------------------------------------
|
|
108
123
|
otherArgGroup = updateArgParser.add_argument_group('More')
|
|
124
|
+
otherArgGroup.add_argument(
|
|
125
|
+
"--dev-mode",
|
|
126
|
+
required=False,
|
|
127
|
+
action="store_true",
|
|
128
|
+
default=False,
|
|
129
|
+
help="Configure installation for development mode",
|
|
130
|
+
)
|
|
131
|
+
otherArgGroup.add_argument(
|
|
132
|
+
"--cp4d-version",
|
|
133
|
+
dest="cpd_product_version",
|
|
134
|
+
required=False,
|
|
135
|
+
help="Product version of CP4D to use"
|
|
136
|
+
)
|
|
109
137
|
otherArgGroup.add_argument(
|
|
110
138
|
'--no-confirm',
|
|
111
139
|
required=False,
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
mas/cli/__init__.py,sha256=
|
|
2
|
-
mas/cli/cli.py,sha256=
|
|
1
|
+
mas/cli/__init__.py,sha256=o69r1ff5UZFWMrPPOlYlfqG290HeCc6guCcYHe5PcKs,526
|
|
2
|
+
mas/cli/cli.py,sha256=0R3NDRYCpTTq0hhD5YheY7k_lPz3t1yqKPU4LGKT6uE,14563
|
|
3
3
|
mas/cli/displayMixins.py,sha256=ygDJ8KPLdJpip_JQ4JDPWbvo7ZIdsOZQfQoVnMdAauM,5594
|
|
4
4
|
mas/cli/gencfg.py,sha256=57ik5x73gQBFXPl_8h2byXmV_vhCgxfeSDZk4Wg5-Pw,2102
|
|
5
5
|
mas/cli/validators.py,sha256=vi1pFA8QtqMhqtGk1NlkkNDUrlFCi53kS5wJqFGDgOU,5108
|
|
6
6
|
mas/cli/install/__init__.py,sha256=tGH_qJ5ZqcSFpIlObRiye3Y-r4zU8rEplYFjwuHwBTY,494
|
|
7
|
-
mas/cli/install/app.py,sha256=
|
|
7
|
+
mas/cli/install/app.py,sha256=SigGUQwmtrxWlm2TJzEW8FJxLyDivSD-0Y3AxcW1odY,55998
|
|
8
8
|
mas/cli/install/argBuilder.py,sha256=kOkoQ5Ksj-SiSr9s3Pjn7tXLY1NYK78hwyAFAU6tGes,22741
|
|
9
9
|
mas/cli/install/argParser.py,sha256=Yin9uxUOAxzfD1kIWehlKNgylle2VCo5YKSI7JpmFHM,26835
|
|
10
10
|
mas/cli/install/summarizer.py,sha256=9dxRDOdGGH4TOsNWAwIigqusqVUMa-R8tj9TPPKTx_4,18907
|
|
@@ -14,7 +14,7 @@ mas/cli/install/settings/db2Settings.py,sha256=mR0XL81Talvwvm1bekw0o9VOwV42QkS0j
|
|
|
14
14
|
mas/cli/install/settings/kafkaSettings.py,sha256=bjAji5OZfSBpttiYHKM5B5Lvva8L8PUzi8QSs6opQcE,6997
|
|
15
15
|
mas/cli/install/settings/manageSettings.py,sha256=TSByaLXVF9hRH0hqhX-eBc7dIHrOf4zgviOq2YrjSHc,13658
|
|
16
16
|
mas/cli/install/settings/turbonomicSettings.py,sha256=eqMDocZxJnGEnWh41Yh8rmmVKVR_JnA8qrbfRrFAOaQ,1588
|
|
17
|
-
mas/cli/templates/ibm-mas-tekton.yaml,sha256=
|
|
17
|
+
mas/cli/templates/ibm-mas-tekton.yaml,sha256=2jtBttpxhy9S--OeUjXQcyhG3yMW3-6A8I9xQjSWQgk,714976
|
|
18
18
|
mas/cli/templates/jdbccfg.yml.j2,sha256=cANbwkUkKEPQp-P3_BB_Llbt94457Ciagah2hOdySIM,1644
|
|
19
19
|
mas/cli/templates/pod-templates/best-effort/ibm-data-dictionary-assetdatadictionary.yml,sha256=8VG_FDFcEjWNaAOZTcS58Pe0tWOXC10SJLloNqzEMC8,757
|
|
20
20
|
mas/cli/templates/pod-templates/best-effort/ibm-mas-bascfg.yml,sha256=rkq8c2pVJoskgict9tCZzCchGSE2MBC-dJ47JyMYm7A,1559
|
|
@@ -90,13 +90,13 @@ mas/cli/uninstall/__init__.py,sha256=tGH_qJ5ZqcSFpIlObRiye3Y-r4zU8rEplYFjwuHwBTY
|
|
|
90
90
|
mas/cli/uninstall/app.py,sha256=obuGe-czCnXpa7j_N8QC9zZBuD0s3xXmNRUWt-f6omI,9981
|
|
91
91
|
mas/cli/uninstall/argParser.py,sha256=VO6_u8Qv_munelgZMxBw9mdJBwF_9j688b6nUxQD2RM,3298
|
|
92
92
|
mas/cli/update/__init__.py,sha256=tGH_qJ5ZqcSFpIlObRiye3Y-r4zU8rEplYFjwuHwBTY,494
|
|
93
|
-
mas/cli/update/app.py,sha256=
|
|
94
|
-
mas/cli/update/argParser.py,sha256=
|
|
93
|
+
mas/cli/update/app.py,sha256=ToCdWf7xZ6CX2nIaBcqid3W_KAVutR4RoSGCw6kyoSM,37782
|
|
94
|
+
mas/cli/update/argParser.py,sha256=ch0VZhrWLTZzhUAANihUCdkbcyx7rNhc690B9pX-L3U,4710
|
|
95
95
|
mas/cli/upgrade/__init__.py,sha256=tGH_qJ5ZqcSFpIlObRiye3Y-r4zU8rEplYFjwuHwBTY,494
|
|
96
96
|
mas/cli/upgrade/app.py,sha256=AjRI1uCVfl--edonhUb9ZTrp_QifJTQPp-ORT1S_uO8,5375
|
|
97
97
|
mas/cli/upgrade/argParser.py,sha256=jl8SU0mXDMAkpfqXaKE4MPNUmVoD0LSsvMUSJjU1dbQ,1881
|
|
98
|
-
mas_cli-11.
|
|
99
|
-
mas_cli-11.
|
|
100
|
-
mas_cli-11.
|
|
101
|
-
mas_cli-11.
|
|
102
|
-
mas_cli-11.
|
|
98
|
+
mas_cli-11.3.0.data/scripts/mas-cli,sha256=sEPYV6KUzcq4ukiTM4tMLsYKv-d9Ms0aJI9Uhjg_G9Y,3436
|
|
99
|
+
mas_cli-11.3.0.dist-info/METADATA,sha256=ylkjMAivR9_G_JacGCMylK_wXGJ4CU1VMG6tpnMsSf0,2076
|
|
100
|
+
mas_cli-11.3.0.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
101
|
+
mas_cli-11.3.0.dist-info/top_level.txt,sha256=_Hlsp7pvMvyV14LFg-vk1hULq30j61EILnnxMFIhhc8,4
|
|
102
|
+
mas_cli-11.3.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|