mas-cli 10.4.5__py3-none-any.whl → 10.5.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/install/app.py +44 -6
- mas/cli/templates/ibm-mas-tekton.yaml +107 -107
- mas/cli/update/app.py +8 -5
- {mas_cli-10.4.5.dist-info → mas_cli-10.5.0.dist-info}/METADATA +1 -1
- {mas_cli-10.4.5.dist-info → mas_cli-10.5.0.dist-info}/RECORD +9 -9
- {mas_cli-10.4.5.dist-info → mas_cli-10.5.0.dist-info}/WHEEL +1 -1
- {mas_cli-10.4.5.data → mas_cli-10.5.0.data}/scripts/mas-cli +0 -0
- {mas_cli-10.4.5.dist-info → mas_cli-10.5.0.dist-info}/top_level.txt +0 -0
mas/cli/__init__.py
CHANGED
mas/cli/install/app.py
CHANGED
|
@@ -59,7 +59,6 @@ class InstallApp(BaseApp, InstallSettingsMixin, InstallSummarizerMixin, ConfigGe
|
|
|
59
59
|
catalogDisplayName = catalog.spec.displayName
|
|
60
60
|
|
|
61
61
|
m = re.match(r".+(?P<catalogId>v[89]-(?P<catalogVersion>[0-9]+)-amd64)", catalogDisplayName)
|
|
62
|
-
print(f"m: {m}")
|
|
63
62
|
if m:
|
|
64
63
|
# catalogId = v8-yymmdd-amd64
|
|
65
64
|
# catalogVersion = yymmdd
|
|
@@ -184,7 +183,7 @@ class InstallApp(BaseApp, InstallSettingsMixin, InstallSummarizerMixin, ConfigGe
|
|
|
184
183
|
|
|
185
184
|
def configCP4D(self):
|
|
186
185
|
# TODO: It's probably time to remove v8-amd64 support from the CLI entirely now
|
|
187
|
-
if self.getParam("mas_catalog_version") in ["v8-amd64", "v9-240625-amd64"]:
|
|
186
|
+
if self.getParam("mas_catalog_version") in ["v8-amd64", "v9-240625-amd64", "v9-240730-amd64"]:
|
|
188
187
|
self.setParam("cpd_product_version", "4.8.0")
|
|
189
188
|
elif self.getParam("mas_catalog_version") in ["v8-240528-amd64"]:
|
|
190
189
|
self.setParam("cpd_product_version", "4.6.6")
|
|
@@ -891,6 +890,45 @@ class InstallApp(BaseApp, InstallSettingsMixin, InstallSummarizerMixin, ConfigGe
|
|
|
891
890
|
self.installOptions = [
|
|
892
891
|
{
|
|
893
892
|
"#": 1,
|
|
893
|
+
"catalog": "v9-240730-amd64",
|
|
894
|
+
"release": "9.0.x",
|
|
895
|
+
"core": "9.0.1",
|
|
896
|
+
"assist": "9.0.1",
|
|
897
|
+
"iot": "9.0.1",
|
|
898
|
+
"manage": "9.0.1",
|
|
899
|
+
"monitor": "9.0.1",
|
|
900
|
+
"optimizer": "9.0.1",
|
|
901
|
+
"predict": "9.0.0",
|
|
902
|
+
"inspection": "9.0.0"
|
|
903
|
+
},
|
|
904
|
+
{
|
|
905
|
+
"#": 2,
|
|
906
|
+
"catalog": "v9-240730-amd64",
|
|
907
|
+
"release": "8.11.x",
|
|
908
|
+
"core": "8.11.13",
|
|
909
|
+
"assist": "8.8.5",
|
|
910
|
+
"iot": "8.8.11",
|
|
911
|
+
"manage": "8.7.10",
|
|
912
|
+
"monitor": "8.11.9",
|
|
913
|
+
"optimizer": "8.5.7",
|
|
914
|
+
"predict": "8.9.3",
|
|
915
|
+
"inspection": "8.9.4"
|
|
916
|
+
},
|
|
917
|
+
{
|
|
918
|
+
"#": 3,
|
|
919
|
+
"catalog": "v9-240730-amd64",
|
|
920
|
+
"release": "8.10.x",
|
|
921
|
+
"core": "8.10.16",
|
|
922
|
+
"assist": "8.7.6",
|
|
923
|
+
"iot": "8.7.15",
|
|
924
|
+
"manage": "8.6.16",
|
|
925
|
+
"monitor": "8.10.12",
|
|
926
|
+
"optimizer": "8.4.8",
|
|
927
|
+
"predict": "8.8.3",
|
|
928
|
+
"inspection": "8.8.4"
|
|
929
|
+
},
|
|
930
|
+
{
|
|
931
|
+
"#": 4,
|
|
894
932
|
"catalog": "v9-240625-amd64",
|
|
895
933
|
"release": "9.0.x",
|
|
896
934
|
"core": "9.0.0",
|
|
@@ -903,7 +941,7 @@ class InstallApp(BaseApp, InstallSettingsMixin, InstallSummarizerMixin, ConfigGe
|
|
|
903
941
|
"inspection": "9.0.0"
|
|
904
942
|
},
|
|
905
943
|
{
|
|
906
|
-
"#":
|
|
944
|
+
"#": 5,
|
|
907
945
|
"catalog": "v9-240625-amd64",
|
|
908
946
|
"release": "8.11.x",
|
|
909
947
|
"core": "8.11.12",
|
|
@@ -916,7 +954,7 @@ class InstallApp(BaseApp, InstallSettingsMixin, InstallSummarizerMixin, ConfigGe
|
|
|
916
954
|
"inspection": "8.9.3"
|
|
917
955
|
},
|
|
918
956
|
{
|
|
919
|
-
"#":
|
|
957
|
+
"#": 6,
|
|
920
958
|
"catalog": "v9-240625-amd64",
|
|
921
959
|
"release": "8.10.x",
|
|
922
960
|
"core": "8.10.15",
|
|
@@ -929,7 +967,7 @@ class InstallApp(BaseApp, InstallSettingsMixin, InstallSummarizerMixin, ConfigGe
|
|
|
929
967
|
"inspection": "8.8.4"
|
|
930
968
|
},
|
|
931
969
|
{
|
|
932
|
-
"#":
|
|
970
|
+
"#": 7,
|
|
933
971
|
"catalog": "v8-240528-amd64",
|
|
934
972
|
"release": "8.11.x",
|
|
935
973
|
"core": "8.11.11",
|
|
@@ -942,7 +980,7 @@ class InstallApp(BaseApp, InstallSettingsMixin, InstallSummarizerMixin, ConfigGe
|
|
|
942
980
|
"inspection": "8.9.3"
|
|
943
981
|
},
|
|
944
982
|
{
|
|
945
|
-
"#":
|
|
983
|
+
"#": 8,
|
|
946
984
|
"catalog": "v8-240528-amd64",
|
|
947
985
|
"release": "8.10.x",
|
|
948
986
|
"core": "8.10.14",
|
|
@@ -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:10.
|
|
111
|
+
image: quay.io/ibmmas/cli:10.5.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:10.
|
|
229
|
+
image: quay.io/ibmmas/cli:10.5.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:10.
|
|
299
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
300
300
|
imagePullPolicy: $(params.image_pull_policy)
|
|
301
301
|
workingDir: /workspace/configs
|
|
302
302
|
# --------------------------------------------------------------------------------
|
|
@@ -359,7 +359,7 @@ spec:
|
|
|
359
359
|
command:
|
|
360
360
|
- /opt/app-root/src/run-role.sh
|
|
361
361
|
- common_services
|
|
362
|
-
image: quay.io/ibmmas/cli:10.
|
|
362
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
363
363
|
imagePullPolicy: $(params.image_pull_policy)
|
|
364
364
|
workingDir: /workspace/configs
|
|
365
365
|
# --------------------------------------------------------------------------------
|
|
@@ -474,7 +474,7 @@ spec:
|
|
|
474
474
|
command:
|
|
475
475
|
- /opt/app-root/src/run-role.sh
|
|
476
476
|
- cos
|
|
477
|
-
image: quay.io/ibmmas/cli:10.
|
|
477
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
478
478
|
imagePullPolicy: $(params.image_pull_policy)
|
|
479
479
|
workingDir: /workspace/configs
|
|
480
480
|
|
|
@@ -594,7 +594,7 @@ spec:
|
|
|
594
594
|
command:
|
|
595
595
|
- /opt/app-root/src/run-role.sh
|
|
596
596
|
- cp4d_service
|
|
597
|
-
image: quay.io/ibmmas/cli:10.
|
|
597
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
598
598
|
imagePullPolicy: $(params.image_pull_policy)
|
|
599
599
|
workingDir: /workspace/configs
|
|
600
600
|
# --------------------------------------------------------------------------------
|
|
@@ -711,7 +711,7 @@ spec:
|
|
|
711
711
|
command:
|
|
712
712
|
- /opt/app-root/src/run-role.sh
|
|
713
713
|
- cp4d_service
|
|
714
|
-
image: quay.io/ibmmas/cli:10.
|
|
714
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
715
715
|
imagePullPolicy: $(params.image_pull_policy)
|
|
716
716
|
workingDir: /workspace/configs
|
|
717
717
|
|
|
@@ -817,7 +817,7 @@ spec:
|
|
|
817
817
|
command:
|
|
818
818
|
- /opt/app-root/src/run-role.sh
|
|
819
819
|
- cp4d
|
|
820
|
-
image: quay.io/ibmmas/cli:10.
|
|
820
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
821
821
|
imagePullPolicy: $(params.image_pull_policy)
|
|
822
822
|
# --------------------------------------------------------------------------------
|
|
823
823
|
# /home/runner/work/cli/cli/tekton/target/tasks/db2.yaml
|
|
@@ -1139,7 +1139,7 @@ spec:
|
|
|
1139
1139
|
command:
|
|
1140
1140
|
- /opt/app-root/src/run-role.sh
|
|
1141
1141
|
- db2
|
|
1142
|
-
image: quay.io/ibmmas/cli:10.
|
|
1142
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
1143
1143
|
imagePullPolicy: $(params.image_pull_policy)
|
|
1144
1144
|
workingDir: /workspace/configs
|
|
1145
1145
|
|
|
@@ -1242,7 +1242,7 @@ spec:
|
|
|
1242
1242
|
command:
|
|
1243
1243
|
- /opt/app-root/src/run-role.sh
|
|
1244
1244
|
- eck
|
|
1245
|
-
image: quay.io/ibmmas/cli:10.
|
|
1245
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
1246
1246
|
imagePullPolicy: $(params.image_pull_policy)
|
|
1247
1247
|
# --------------------------------------------------------------------------------
|
|
1248
1248
|
# /home/runner/work/cli/cli/tekton/target/tasks/gencfg-workspace.yaml
|
|
@@ -1331,7 +1331,7 @@ spec:
|
|
|
1331
1331
|
command:
|
|
1332
1332
|
- /opt/app-root/src/run-role.sh
|
|
1333
1333
|
- gencfg_workspace
|
|
1334
|
-
image: quay.io/ibmmas/cli:10.
|
|
1334
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
1335
1335
|
imagePullPolicy: $(params.image_pull_policy)
|
|
1336
1336
|
workingDir: /workspace/configs
|
|
1337
1337
|
|
|
@@ -1435,7 +1435,7 @@ spec:
|
|
|
1435
1435
|
- -c
|
|
1436
1436
|
name: gitops-bootstrap
|
|
1437
1437
|
imagePullPolicy: IfNotPresent
|
|
1438
|
-
image: quay.io/ibmmas/cli:10.
|
|
1438
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
1439
1439
|
workspaces:
|
|
1440
1440
|
- name: configs
|
|
1441
1441
|
# --------------------------------------------------------------------------------
|
|
@@ -1512,7 +1512,7 @@ spec:
|
|
|
1512
1512
|
- -c
|
|
1513
1513
|
name: gitops-cis-compliance
|
|
1514
1514
|
imagePullPolicy: IfNotPresent
|
|
1515
|
-
image: quay.io/ibmmas/cli:10.
|
|
1515
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
1516
1516
|
workspaces:
|
|
1517
1517
|
- name: configs
|
|
1518
1518
|
# --------------------------------------------------------------------------------
|
|
@@ -1691,7 +1691,7 @@ spec:
|
|
|
1691
1691
|
- -c
|
|
1692
1692
|
name: gitops-cluster
|
|
1693
1693
|
imagePullPolicy: Always
|
|
1694
|
-
image: quay.io/ibmmas/cli:10.
|
|
1694
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
1695
1695
|
workspaces:
|
|
1696
1696
|
- name: configs
|
|
1697
1697
|
# --------------------------------------------------------------------------------
|
|
@@ -1775,7 +1775,7 @@ spec:
|
|
|
1775
1775
|
- -c
|
|
1776
1776
|
name: gitops-cos
|
|
1777
1777
|
imagePullPolicy: IfNotPresent
|
|
1778
|
-
image: quay.io/ibmmas/cli:10.
|
|
1778
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
1779
1779
|
workspaces:
|
|
1780
1780
|
- name: configs
|
|
1781
1781
|
# --------------------------------------------------------------------------------
|
|
@@ -1888,7 +1888,7 @@ spec:
|
|
|
1888
1888
|
- -c
|
|
1889
1889
|
name: gitops-cp4d-service
|
|
1890
1890
|
imagePullPolicy: IfNotPresent
|
|
1891
|
-
image: quay.io/ibmmas/cli:10.
|
|
1891
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
1892
1892
|
workspaces:
|
|
1893
1893
|
- name: configs
|
|
1894
1894
|
- name: shared-gitops-configs
|
|
@@ -1997,7 +1997,7 @@ spec:
|
|
|
1997
1997
|
- -c
|
|
1998
1998
|
name: gitops-cp4d
|
|
1999
1999
|
imagePullPolicy: IfNotPresent
|
|
2000
|
-
image: quay.io/ibmmas/cli:10.
|
|
2000
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
2001
2001
|
workspaces:
|
|
2002
2002
|
- name: configs
|
|
2003
2003
|
- name: shared-gitops-configs
|
|
@@ -2240,7 +2240,7 @@ spec:
|
|
|
2240
2240
|
- -c
|
|
2241
2241
|
name: gitops-db2u-database
|
|
2242
2242
|
imagePullPolicy: Always
|
|
2243
|
-
image: quay.io/ibmmas/cli:10.
|
|
2243
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
2244
2244
|
workspaces:
|
|
2245
2245
|
- name: configs
|
|
2246
2246
|
- name: shared-gitops-configs
|
|
@@ -2333,7 +2333,7 @@ spec:
|
|
|
2333
2333
|
- -c
|
|
2334
2334
|
name: gitops-db2u
|
|
2335
2335
|
imagePullPolicy: IfNotPresent
|
|
2336
|
-
image: quay.io/ibmmas/cli:10.
|
|
2336
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
2337
2337
|
workspaces:
|
|
2338
2338
|
- name: configs
|
|
2339
2339
|
# --------------------------------------------------------------------------------
|
|
@@ -2455,7 +2455,7 @@ spec:
|
|
|
2455
2455
|
- -c
|
|
2456
2456
|
name: gitops-delete-jdbc-config
|
|
2457
2457
|
imagePullPolicy: IfNotPresent
|
|
2458
|
-
image: quay.io/ibmmas/cli:10.
|
|
2458
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
2459
2459
|
workspaces:
|
|
2460
2460
|
- name: configs
|
|
2461
2461
|
# --------------------------------------------------------------------------------
|
|
@@ -2553,7 +2553,7 @@ spec:
|
|
|
2553
2553
|
- -c
|
|
2554
2554
|
name: gitops-delete-kafka-config
|
|
2555
2555
|
imagePullPolicy: Always
|
|
2556
|
-
image: quay.io/ibmmas/cli:10.
|
|
2556
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
2557
2557
|
workspaces:
|
|
2558
2558
|
- name: configs
|
|
2559
2559
|
|
|
@@ -2645,7 +2645,7 @@ spec:
|
|
|
2645
2645
|
- -c
|
|
2646
2646
|
name: gitops-deprovision-app-config
|
|
2647
2647
|
imagePullPolicy: IfNotPresent
|
|
2648
|
-
image: quay.io/ibmmas/cli:10.
|
|
2648
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
2649
2649
|
workspaces:
|
|
2650
2650
|
- name: configs
|
|
2651
2651
|
# --------------------------------------------------------------------------------
|
|
@@ -2730,7 +2730,7 @@ spec:
|
|
|
2730
2730
|
- -c
|
|
2731
2731
|
name: gitops-deprovision-app-install
|
|
2732
2732
|
imagePullPolicy: IfNotPresent
|
|
2733
|
-
image: quay.io/ibmmas/cli:10.
|
|
2733
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
2734
2734
|
workspaces:
|
|
2735
2735
|
- name: configs
|
|
2736
2736
|
# --------------------------------------------------------------------------------
|
|
@@ -2815,7 +2815,7 @@ spec:
|
|
|
2815
2815
|
- -c
|
|
2816
2816
|
name: gitops-deprovision-cluster
|
|
2817
2817
|
imagePullPolicy: IfNotPresent
|
|
2818
|
-
image: quay.io/ibmmas/cli:10.
|
|
2818
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
2819
2819
|
workspaces:
|
|
2820
2820
|
- name: configs
|
|
2821
2821
|
# --------------------------------------------------------------------------------
|
|
@@ -2922,7 +2922,7 @@ spec:
|
|
|
2922
2922
|
- -c
|
|
2923
2923
|
name: gitops-deprovision-cos
|
|
2924
2924
|
imagePullPolicy: IfNotPresent
|
|
2925
|
-
image: quay.io/ibmmas/cli:10.
|
|
2925
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
2926
2926
|
workspaces:
|
|
2927
2927
|
- name: configs
|
|
2928
2928
|
# --------------------------------------------------------------------------------
|
|
@@ -3010,7 +3010,7 @@ spec:
|
|
|
3010
3010
|
- -c
|
|
3011
3011
|
name: gitops-deprovision-db2u-database
|
|
3012
3012
|
imagePullPolicy: IfNotPresent
|
|
3013
|
-
image: quay.io/ibmmas/cli:10.
|
|
3013
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
3014
3014
|
workspaces:
|
|
3015
3015
|
- name: configs
|
|
3016
3016
|
|
|
@@ -3093,7 +3093,7 @@ spec:
|
|
|
3093
3093
|
- -c
|
|
3094
3094
|
name: gitops-deprovision-db2u
|
|
3095
3095
|
imagePullPolicy: IfNotPresent
|
|
3096
|
-
image: quay.io/ibmmas/cli:10.
|
|
3096
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
3097
3097
|
workspaces:
|
|
3098
3098
|
- name: configs
|
|
3099
3099
|
|
|
@@ -3169,7 +3169,7 @@ spec:
|
|
|
3169
3169
|
- -c
|
|
3170
3170
|
name: gitops-deprovision-efs
|
|
3171
3171
|
imagePullPolicy: IfNotPresent
|
|
3172
|
-
image: quay.io/ibmmas/cli:10.
|
|
3172
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
3173
3173
|
workspaces:
|
|
3174
3174
|
- name: configs
|
|
3175
3175
|
|
|
@@ -3278,7 +3278,7 @@ spec:
|
|
|
3278
3278
|
- -c
|
|
3279
3279
|
name: gitops-deprovision-kafka
|
|
3280
3280
|
imagePullPolicy: IfNotPresent
|
|
3281
|
-
image: quay.io/ibmmas/cli:10.
|
|
3281
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
3282
3282
|
workspaces:
|
|
3283
3283
|
- name: configs
|
|
3284
3284
|
# --------------------------------------------------------------------------------
|
|
@@ -3380,7 +3380,7 @@ spec:
|
|
|
3380
3380
|
- -c
|
|
3381
3381
|
name: gitops-deprovision-mongo
|
|
3382
3382
|
imagePullPolicy: IfNotPresent
|
|
3383
|
-
image: quay.io/ibmmas/cli:10.
|
|
3383
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
3384
3384
|
workspaces:
|
|
3385
3385
|
- name: configs
|
|
3386
3386
|
|
|
@@ -3437,7 +3437,7 @@ spec:
|
|
|
3437
3437
|
- -c
|
|
3438
3438
|
name: gitops-deprovision-rosa
|
|
3439
3439
|
imagePullPolicy: IfNotPresent
|
|
3440
|
-
image: quay.io/ibmmas/cli:10.
|
|
3440
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
3441
3441
|
workspaces:
|
|
3442
3442
|
- name: configs
|
|
3443
3443
|
# --------------------------------------------------------------------------------
|
|
@@ -3630,7 +3630,7 @@ spec:
|
|
|
3630
3630
|
- -c
|
|
3631
3631
|
name: gitops-deprovision-suite-config
|
|
3632
3632
|
imagePullPolicy: IfNotPresent
|
|
3633
|
-
image: quay.io/ibmmas/cli:10.
|
|
3633
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
3634
3634
|
workspaces:
|
|
3635
3635
|
- name: configs
|
|
3636
3636
|
|
|
@@ -3728,7 +3728,7 @@ spec:
|
|
|
3728
3728
|
- -c
|
|
3729
3729
|
name: gitops-deprovision-suite-idp-config
|
|
3730
3730
|
imagePullPolicy: IfNotPresent
|
|
3731
|
-
image: quay.io/ibmmas/cli:10.
|
|
3731
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
3732
3732
|
workspaces:
|
|
3733
3733
|
- name: configs
|
|
3734
3734
|
# --------------------------------------------------------------------------------
|
|
@@ -3820,7 +3820,7 @@ spec:
|
|
|
3820
3820
|
- -c
|
|
3821
3821
|
name: gitops-deprovision-suite-objectstorage-config
|
|
3822
3822
|
imagePullPolicy: IfNotPresent
|
|
3823
|
-
image: quay.io/ibmmas/cli:10.
|
|
3823
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
3824
3824
|
workspaces:
|
|
3825
3825
|
- name: configs
|
|
3826
3826
|
# --------------------------------------------------------------------------------
|
|
@@ -3912,7 +3912,7 @@ spec:
|
|
|
3912
3912
|
- -c
|
|
3913
3913
|
name: gitops-deprovision-suite-smtp-config
|
|
3914
3914
|
imagePullPolicy: IfNotPresent
|
|
3915
|
-
image: quay.io/ibmmas/cli:10.
|
|
3915
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
3916
3916
|
workspaces:
|
|
3917
3917
|
- name: configs
|
|
3918
3918
|
# --------------------------------------------------------------------------------
|
|
@@ -4005,7 +4005,7 @@ spec:
|
|
|
4005
4005
|
- -c
|
|
4006
4006
|
name: gitops-deprovision-suite-watson-studio-config
|
|
4007
4007
|
imagePullPolicy: IfNotPresent
|
|
4008
|
-
image: quay.io/ibmmas/cli:10.
|
|
4008
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
4009
4009
|
workspaces:
|
|
4010
4010
|
- name: configs
|
|
4011
4011
|
# --------------------------------------------------------------------------------
|
|
@@ -4096,7 +4096,7 @@ spec:
|
|
|
4096
4096
|
- -c
|
|
4097
4097
|
name: gitops-deprovision-suite-workspace
|
|
4098
4098
|
imagePullPolicy: Always
|
|
4099
|
-
image: quay.io/ibmmas/cli:10.
|
|
4099
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
4100
4100
|
workspaces:
|
|
4101
4101
|
- name: configs
|
|
4102
4102
|
# --------------------------------------------------------------------------------
|
|
@@ -4189,7 +4189,7 @@ spec:
|
|
|
4189
4189
|
- -c
|
|
4190
4190
|
name: gitops-deprovision-suite
|
|
4191
4191
|
imagePullPolicy: IfNotPresent
|
|
4192
|
-
image: quay.io/ibmmas/cli:10.
|
|
4192
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
4193
4193
|
workspaces:
|
|
4194
4194
|
- name: configs
|
|
4195
4195
|
|
|
@@ -4292,7 +4292,7 @@ spec:
|
|
|
4292
4292
|
- -c
|
|
4293
4293
|
name: gitops-dro
|
|
4294
4294
|
imagePullPolicy: IfNotPresent
|
|
4295
|
-
image: quay.io/ibmmas/cli:10.
|
|
4295
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
4296
4296
|
workspaces:
|
|
4297
4297
|
- name: configs
|
|
4298
4298
|
# --------------------------------------------------------------------------------
|
|
@@ -4374,7 +4374,7 @@ spec:
|
|
|
4374
4374
|
- -c
|
|
4375
4375
|
name: gitops-efs
|
|
4376
4376
|
imagePullPolicy: IfNotPresent
|
|
4377
|
-
image: quay.io/ibmmas/cli:10.
|
|
4377
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
4378
4378
|
workspaces:
|
|
4379
4379
|
- name: configs
|
|
4380
4380
|
|
|
@@ -4504,7 +4504,7 @@ spec:
|
|
|
4504
4504
|
- -c
|
|
4505
4505
|
name: gitops-jdbc-config
|
|
4506
4506
|
imagePullPolicy: Always
|
|
4507
|
-
image: quay.io/ibmmas/cli:10.
|
|
4507
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
4508
4508
|
workspaces:
|
|
4509
4509
|
- name: configs
|
|
4510
4510
|
- name: shared-gitops-configs
|
|
@@ -4600,7 +4600,7 @@ spec:
|
|
|
4600
4600
|
- -c
|
|
4601
4601
|
name: gitops-kafka-config
|
|
4602
4602
|
imagePullPolicy: Always
|
|
4603
|
-
image: quay.io/ibmmas/cli:10.
|
|
4603
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
4604
4604
|
workspaces:
|
|
4605
4605
|
- name: configs
|
|
4606
4606
|
|
|
@@ -4721,7 +4721,7 @@ spec:
|
|
|
4721
4721
|
- -c
|
|
4722
4722
|
name: gitops-kafka
|
|
4723
4723
|
imagePullPolicy: IfNotPresent
|
|
4724
|
-
image: quay.io/ibmmas/cli:10.
|
|
4724
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
4725
4725
|
workspaces:
|
|
4726
4726
|
- name: configs
|
|
4727
4727
|
# --------------------------------------------------------------------------------
|
|
@@ -4772,7 +4772,7 @@ spec:
|
|
|
4772
4772
|
- -c
|
|
4773
4773
|
name: gitops-license
|
|
4774
4774
|
imagePullPolicy: Always
|
|
4775
|
-
image: quay.io/ibmmas/cli:10.
|
|
4775
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
4776
4776
|
workspaces:
|
|
4777
4777
|
- name: shared-entitlement
|
|
4778
4778
|
|
|
@@ -5229,7 +5229,7 @@ spec:
|
|
|
5229
5229
|
- -c
|
|
5230
5230
|
name: gitops-mas-fvt-preparer
|
|
5231
5231
|
imagePullPolicy: Always
|
|
5232
|
-
image: quay.io/ibmmas/cli:10.
|
|
5232
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
5233
5233
|
workspaces:
|
|
5234
5234
|
- name: configs
|
|
5235
5235
|
- name: shared-additional-configs
|
|
@@ -5633,7 +5633,7 @@ spec:
|
|
|
5633
5633
|
- -c
|
|
5634
5634
|
name: gitops-mas-initiator
|
|
5635
5635
|
imagePullPolicy: IfNotPresent
|
|
5636
|
-
image: quay.io/ibmmas/cli:10.
|
|
5636
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
5637
5637
|
workspaces:
|
|
5638
5638
|
- name: configs
|
|
5639
5639
|
# --------------------------------------------------------------------------------
|
|
@@ -5740,7 +5740,7 @@ spec:
|
|
|
5740
5740
|
- -c
|
|
5741
5741
|
name: gitops-mongo
|
|
5742
5742
|
imagePullPolicy: IfNotPresent
|
|
5743
|
-
image: quay.io/ibmmas/cli:10.
|
|
5743
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
5744
5744
|
workspaces:
|
|
5745
5745
|
- name: configs
|
|
5746
5746
|
|
|
@@ -5852,7 +5852,7 @@ spec:
|
|
|
5852
5852
|
- -c
|
|
5853
5853
|
name: gitops-nvidia-gpu
|
|
5854
5854
|
imagePullPolicy: IfNotPresent
|
|
5855
|
-
image: quay.io/ibmmas/cli:10.
|
|
5855
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
5856
5856
|
workspaces:
|
|
5857
5857
|
- name: configs
|
|
5858
5858
|
# --------------------------------------------------------------------------------
|
|
@@ -5969,7 +5969,7 @@ spec:
|
|
|
5969
5969
|
- -c
|
|
5970
5970
|
name: gitops-process-mongo-user
|
|
5971
5971
|
imagePullPolicy: IfNotPresent
|
|
5972
|
-
image: quay.io/ibmmas/cli:10.
|
|
5972
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
5973
5973
|
workspaces:
|
|
5974
5974
|
- name: configs
|
|
5975
5975
|
# --------------------------------------------------------------------------------
|
|
@@ -6025,7 +6025,7 @@ spec:
|
|
|
6025
6025
|
- -c
|
|
6026
6026
|
name: gitops-rosa
|
|
6027
6027
|
imagePullPolicy: IfNotPresent
|
|
6028
|
-
image: quay.io/ibmmas/cli:10.
|
|
6028
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
6029
6029
|
workspaces:
|
|
6030
6030
|
- name: configs
|
|
6031
6031
|
# --------------------------------------------------------------------------------
|
|
@@ -6192,7 +6192,7 @@ spec:
|
|
|
6192
6192
|
- -c
|
|
6193
6193
|
name: gitops-suite-app-config
|
|
6194
6194
|
imagePullPolicy: IfNotPresent
|
|
6195
|
-
image: quay.io/ibmmas/cli:10.
|
|
6195
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
6196
6196
|
workspaces:
|
|
6197
6197
|
- name: configs
|
|
6198
6198
|
- name: shared-gitops-configs
|
|
@@ -6345,7 +6345,7 @@ spec:
|
|
|
6345
6345
|
- -c
|
|
6346
6346
|
name: gitops-suite-app-install
|
|
6347
6347
|
imagePullPolicy: Always
|
|
6348
|
-
image: quay.io/ibmmas/cli:10.
|
|
6348
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
6349
6349
|
workspaces:
|
|
6350
6350
|
- name: configs
|
|
6351
6351
|
- name: shared-gitops-configs
|
|
@@ -6451,7 +6451,7 @@ spec:
|
|
|
6451
6451
|
- -c
|
|
6452
6452
|
name: gitops-suite-certs
|
|
6453
6453
|
imagePullPolicy: IfNotPresent
|
|
6454
|
-
image: quay.io/ibmmas/cli:10.
|
|
6454
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
6455
6455
|
workspaces:
|
|
6456
6456
|
- name: configs
|
|
6457
6457
|
- name: certificates
|
|
@@ -6498,9 +6498,6 @@ spec:
|
|
|
6498
6498
|
- name: cluster_url
|
|
6499
6499
|
type: string
|
|
6500
6500
|
default: ""
|
|
6501
|
-
- name: mas_wipe_mongo_data
|
|
6502
|
-
type: string
|
|
6503
|
-
default: "false"
|
|
6504
6501
|
stepTemplate:
|
|
6505
6502
|
name: gitops-suite-config
|
|
6506
6503
|
env:
|
|
@@ -6536,8 +6533,6 @@ spec:
|
|
|
6536
6533
|
value: $(params.dro_contact_lastname)
|
|
6537
6534
|
- name: DRO_CA_CERTIFICATE_FILE
|
|
6538
6535
|
value: $(params.dro_ca_certificate_file)
|
|
6539
|
-
- name: MAS_WIPE_MONGO_DATA
|
|
6540
|
-
value: $(params.mas_wipe_mongo_data)
|
|
6541
6536
|
envFrom:
|
|
6542
6537
|
- configMapRef:
|
|
6543
6538
|
name: environment-properties
|
|
@@ -6569,7 +6564,6 @@ spec:
|
|
|
6569
6564
|
--mas-config-type mongo \
|
|
6570
6565
|
--dir /tmp/init-mas-config-mongo \
|
|
6571
6566
|
--mongo-provider "$MONGODB_PROVIDER" \
|
|
6572
|
-
--mas-wipe-mongo-data "$MAS_WIPE_MONGO_DATA" \
|
|
6573
6567
|
|| exit 1
|
|
6574
6568
|
|
|
6575
6569
|
mkdir -p /tmp/init-mas-config-sls
|
|
@@ -6617,7 +6611,7 @@ spec:
|
|
|
6617
6611
|
- -c
|
|
6618
6612
|
name: gitops-suite-config
|
|
6619
6613
|
imagePullPolicy: IfNotPresent
|
|
6620
|
-
image: quay.io/ibmmas/cli:10.
|
|
6614
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
6621
6615
|
workspaces:
|
|
6622
6616
|
- name: configs
|
|
6623
6617
|
- name: shared-additional-configs
|
|
@@ -6717,7 +6711,7 @@ spec:
|
|
|
6717
6711
|
- -c
|
|
6718
6712
|
name: gitops-suite-dns
|
|
6719
6713
|
imagePullPolicy: IfNotPresent
|
|
6720
|
-
image: quay.io/ibmmas/cli:10.
|
|
6714
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
6721
6715
|
workspaces:
|
|
6722
6716
|
- name: configs
|
|
6723
6717
|
|
|
@@ -6841,7 +6835,7 @@ spec:
|
|
|
6841
6835
|
- -c
|
|
6842
6836
|
name: gitops-suite-idp-config
|
|
6843
6837
|
imagePullPolicy: IfNotPresent
|
|
6844
|
-
image: quay.io/ibmmas/cli:10.
|
|
6838
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
6845
6839
|
workspaces:
|
|
6846
6840
|
- name: configs
|
|
6847
6841
|
- name: shared-additional-configs
|
|
@@ -6942,7 +6936,7 @@ spec:
|
|
|
6942
6936
|
- -c
|
|
6943
6937
|
name: gitops-suite-objectstorage-config
|
|
6944
6938
|
imagePullPolicy: IfNotPresent
|
|
6945
|
-
image: quay.io/ibmmas/cli:10.
|
|
6939
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
6946
6940
|
workspaces:
|
|
6947
6941
|
- name: configs
|
|
6948
6942
|
- name: shared-gitops-configs
|
|
@@ -7086,7 +7080,7 @@ spec:
|
|
|
7086
7080
|
- -c
|
|
7087
7081
|
name: gitops-suite-smtp-config
|
|
7088
7082
|
imagePullPolicy: IfNotPresent
|
|
7089
|
-
image: quay.io/ibmmas/cli:10.
|
|
7083
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
7090
7084
|
workspaces:
|
|
7091
7085
|
- name: configs
|
|
7092
7086
|
|
|
@@ -7195,7 +7189,7 @@ spec:
|
|
|
7195
7189
|
- -c
|
|
7196
7190
|
name: gitops-suite-watson-studio-config
|
|
7197
7191
|
imagePullPolicy: IfNotPresent
|
|
7198
|
-
image: quay.io/ibmmas/cli:10.
|
|
7192
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
7199
7193
|
workspaces:
|
|
7200
7194
|
- name: configs
|
|
7201
7195
|
- name: shared-gitops-configs
|
|
@@ -7292,7 +7286,7 @@ spec:
|
|
|
7292
7286
|
- -c
|
|
7293
7287
|
name: gitops-suite-workspace
|
|
7294
7288
|
imagePullPolicy: IfNotPresent
|
|
7295
|
-
image: quay.io/ibmmas/cli:10.
|
|
7289
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
7296
7290
|
workspaces:
|
|
7297
7291
|
- name: configs
|
|
7298
7292
|
# --------------------------------------------------------------------------------
|
|
@@ -7410,6 +7404,9 @@ spec:
|
|
|
7410
7404
|
- name: mas_pod_template_yaml
|
|
7411
7405
|
type: string
|
|
7412
7406
|
default: ""
|
|
7407
|
+
- name: mas_wipe_mongo_data
|
|
7408
|
+
type: string
|
|
7409
|
+
default: "false"
|
|
7413
7410
|
stepTemplate:
|
|
7414
7411
|
name: gitops-suite
|
|
7415
7412
|
env:
|
|
@@ -7497,6 +7494,8 @@ spec:
|
|
|
7497
7494
|
value: $(params.mas_manual_certs_yaml)
|
|
7498
7495
|
- name: MAS_POD_TEMPLATE_YAML
|
|
7499
7496
|
value: $(params.mas_pod_template_yaml)
|
|
7497
|
+
- name: MAS_WIPE_MONGO_DATA
|
|
7498
|
+
value: $(params.mas_wipe_mongo_data)
|
|
7500
7499
|
envFrom:
|
|
7501
7500
|
- configMapRef:
|
|
7502
7501
|
name: environment-properties
|
|
@@ -7543,7 +7542,8 @@ spec:
|
|
|
7543
7542
|
--github-host $GITHUB_HOST \
|
|
7544
7543
|
--github-org $GITHUB_ORG \
|
|
7545
7544
|
--github-repo $GITHUB_REPO \
|
|
7546
|
-
--git-branch $GIT_BRANCH
|
|
7545
|
+
--git-branch $GIT_BRANCH \
|
|
7546
|
+
--mas-wipe-mongo-data "$MAS_WIPE_MONGO_DATA" \
|
|
7547
7547
|
|
|
7548
7548
|
exit $?
|
|
7549
7549
|
command:
|
|
@@ -7551,7 +7551,7 @@ spec:
|
|
|
7551
7551
|
- -c
|
|
7552
7552
|
name: gitops-suite
|
|
7553
7553
|
imagePullPolicy: IfNotPresent
|
|
7554
|
-
image: quay.io/ibmmas/cli:10.
|
|
7554
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
7555
7555
|
workspaces:
|
|
7556
7556
|
- name: configs
|
|
7557
7557
|
- name: shared-gitops-configs
|
|
@@ -7601,7 +7601,7 @@ spec:
|
|
|
7601
7601
|
|
|
7602
7602
|
steps:
|
|
7603
7603
|
- name: grafana
|
|
7604
|
-
image: quay.io/ibmmas/cli:10.
|
|
7604
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
7605
7605
|
imagePullPolicy: $(params.image_pull_policy)
|
|
7606
7606
|
command:
|
|
7607
7607
|
- /opt/app-root/src/run-role.sh
|
|
@@ -7735,7 +7735,7 @@ spec:
|
|
|
7735
7735
|
command:
|
|
7736
7736
|
- /opt/app-root/src/run-role.sh
|
|
7737
7737
|
- ibm_catalogs
|
|
7738
|
-
image: quay.io/ibmmas/cli:10.
|
|
7738
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
7739
7739
|
imagePullPolicy: $(params.image_pull_policy)
|
|
7740
7740
|
workingDir: /workspace/configs
|
|
7741
7741
|
# --------------------------------------------------------------------------------
|
|
@@ -7977,7 +7977,7 @@ spec:
|
|
|
7977
7977
|
command:
|
|
7978
7978
|
- /opt/app-root/src/run-role.sh
|
|
7979
7979
|
- kafka
|
|
7980
|
-
image: quay.io/ibmmas/cli:10.
|
|
7980
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
7981
7981
|
imagePullPolicy: $(params.image_pull_policy)
|
|
7982
7982
|
workingDir: /workspace/configs
|
|
7983
7983
|
|
|
@@ -8154,7 +8154,7 @@ spec:
|
|
|
8154
8154
|
command:
|
|
8155
8155
|
- /opt/app-root/src/run-role.sh
|
|
8156
8156
|
- mongodb
|
|
8157
|
-
image: quay.io/ibmmas/cli:10.
|
|
8157
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
8158
8158
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8159
8159
|
workingDir: /workspace/configs
|
|
8160
8160
|
|
|
@@ -8197,7 +8197,7 @@ spec:
|
|
|
8197
8197
|
- $(params.base_output_dir)
|
|
8198
8198
|
- --extra-namespaces
|
|
8199
8199
|
- selenium
|
|
8200
|
-
image: quay.io/ibmmas/cli:10.
|
|
8200
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
8201
8201
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8202
8202
|
env:
|
|
8203
8203
|
- name: DEVOPS_MONGO_URI
|
|
@@ -8314,7 +8314,7 @@ spec:
|
|
|
8314
8314
|
command:
|
|
8315
8315
|
- /opt/app-root/src/run-role.sh
|
|
8316
8316
|
- nvidia_gpu
|
|
8317
|
-
image: quay.io/ibmmas/cli:10.
|
|
8317
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
8318
8318
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8319
8319
|
workingDir: /workspace/configs
|
|
8320
8320
|
|
|
@@ -8350,7 +8350,7 @@ spec:
|
|
|
8350
8350
|
# Verify Cluster
|
|
8351
8351
|
# -------------------------------------------------------------------------
|
|
8352
8352
|
- name: ocp-verify-cluster
|
|
8353
|
-
image: quay.io/ibmmas/cli:10.
|
|
8353
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
8354
8354
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8355
8355
|
command:
|
|
8356
8356
|
- /opt/app-root/src/run-role.sh
|
|
@@ -8392,7 +8392,7 @@ spec:
|
|
|
8392
8392
|
# Verify Catalogs
|
|
8393
8393
|
# -------------------------------------------------------------------------
|
|
8394
8394
|
- name: ocp-verify-catalogs
|
|
8395
|
-
image: quay.io/ibmmas/cli:10.
|
|
8395
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
8396
8396
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8397
8397
|
command:
|
|
8398
8398
|
- /opt/app-root/src/run-role.sh
|
|
@@ -8434,7 +8434,7 @@ spec:
|
|
|
8434
8434
|
# Verify Subscriptions
|
|
8435
8435
|
# -------------------------------------------------------------------------
|
|
8436
8436
|
- name: ocp-verify-subscriptions
|
|
8437
|
-
image: quay.io/ibmmas/cli:10.
|
|
8437
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
8438
8438
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8439
8439
|
command:
|
|
8440
8440
|
- /opt/app-root/src/run-role.sh
|
|
@@ -8476,7 +8476,7 @@ spec:
|
|
|
8476
8476
|
# Verify Workloads
|
|
8477
8477
|
# -------------------------------------------------------------------------
|
|
8478
8478
|
- name: ocp-verify-workloads
|
|
8479
|
-
image: quay.io/ibmmas/cli:10.
|
|
8479
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
8480
8480
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8481
8481
|
command:
|
|
8482
8482
|
- /opt/app-root/src/run-role.sh
|
|
@@ -8518,7 +8518,7 @@ spec:
|
|
|
8518
8518
|
# Verify Catalogs - Ingress TLS
|
|
8519
8519
|
# -------------------------------------------------------------------------
|
|
8520
8520
|
- name: ocp-verify-ingress
|
|
8521
|
-
image: quay.io/ibmmas/cli:10.
|
|
8521
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
8522
8522
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8523
8523
|
command:
|
|
8524
8524
|
- /opt/app-root/src/run-role.sh
|
|
@@ -8644,7 +8644,7 @@ spec:
|
|
|
8644
8644
|
command:
|
|
8645
8645
|
- /opt/app-root/src/run-role.sh
|
|
8646
8646
|
- ocp_verify
|
|
8647
|
-
image: quay.io/ibmmas/cli:10.
|
|
8647
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
8648
8648
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8649
8649
|
workingDir: /workspace/configs
|
|
8650
8650
|
# --------------------------------------------------------------------------------
|
|
@@ -8712,7 +8712,7 @@ spec:
|
|
|
8712
8712
|
command:
|
|
8713
8713
|
- /opt/app-root/src/run-role.sh
|
|
8714
8714
|
- ocs
|
|
8715
|
-
image: quay.io/ibmmas/cli:10.
|
|
8715
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
8716
8716
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8717
8717
|
workingDir: /workspace/configs
|
|
8718
8718
|
|
|
@@ -8893,7 +8893,7 @@ spec:
|
|
|
8893
8893
|
command:
|
|
8894
8894
|
- /opt/app-root/src/run-role.sh
|
|
8895
8895
|
- sls
|
|
8896
|
-
image: quay.io/ibmmas/cli:10.
|
|
8896
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
8897
8897
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8898
8898
|
workingDir: /workspace/configs
|
|
8899
8899
|
|
|
@@ -9268,12 +9268,12 @@ spec:
|
|
|
9268
9268
|
command:
|
|
9269
9269
|
- /opt/app-root/src/run-role.sh
|
|
9270
9270
|
- suite_app_config
|
|
9271
|
-
image: quay.io/ibmmas/cli:10.
|
|
9271
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
9272
9272
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9273
9273
|
|
|
9274
9274
|
# If configmap/approval-app-cfg-$(params.mas_app_id) exists then set CONFIGMAP_KEY=pending and wait for it to be changed to "approved"
|
|
9275
9275
|
- name: app-cfg-post-verify
|
|
9276
|
-
image: quay.io/ibmmas/cli:10.
|
|
9276
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
9277
9277
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9278
9278
|
command:
|
|
9279
9279
|
- /opt/app-root/src/wait-for-configmap.sh
|
|
@@ -9474,7 +9474,7 @@ spec:
|
|
|
9474
9474
|
command:
|
|
9475
9475
|
- /opt/app-root/src/run-role.sh
|
|
9476
9476
|
- suite_app_install
|
|
9477
|
-
image: quay.io/ibmmas/cli:10.
|
|
9477
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
9478
9478
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9479
9479
|
|
|
9480
9480
|
workspaces:
|
|
@@ -9563,7 +9563,7 @@ spec:
|
|
|
9563
9563
|
command:
|
|
9564
9564
|
- /opt/app-root/src/run-role.sh
|
|
9565
9565
|
- suite_app_rollback
|
|
9566
|
-
image: quay.io/ibmmas/cli:10.
|
|
9566
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
9567
9567
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9568
9568
|
# --------------------------------------------------------------------------------
|
|
9569
9569
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-app-uninstall.yaml
|
|
@@ -9626,7 +9626,7 @@ spec:
|
|
|
9626
9626
|
command:
|
|
9627
9627
|
- /opt/app-root/src/run-role.sh
|
|
9628
9628
|
- suite_app_uninstall
|
|
9629
|
-
image: quay.io/ibmmas/cli:10.
|
|
9629
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
9630
9630
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9631
9631
|
# --------------------------------------------------------------------------------
|
|
9632
9632
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-app-upgrade.yaml
|
|
@@ -9701,7 +9701,7 @@ spec:
|
|
|
9701
9701
|
command:
|
|
9702
9702
|
- /opt/app-root/src/run-role.sh
|
|
9703
9703
|
- suite_app_upgrade
|
|
9704
|
-
image: quay.io/ibmmas/cli:10.
|
|
9704
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
9705
9705
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9706
9706
|
# --------------------------------------------------------------------------------
|
|
9707
9707
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-app-verify.yaml
|
|
@@ -9802,7 +9802,7 @@ spec:
|
|
|
9802
9802
|
command:
|
|
9803
9803
|
- /opt/app-root/src/run-role.sh
|
|
9804
9804
|
- suite_app_verify
|
|
9805
|
-
image: quay.io/ibmmas/cli:10.
|
|
9805
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
9806
9806
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9807
9807
|
# --------------------------------------------------------------------------------
|
|
9808
9808
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-certs.yaml
|
|
@@ -9945,7 +9945,7 @@ spec:
|
|
|
9945
9945
|
command:
|
|
9946
9946
|
- /opt/app-root/src/run-role.sh
|
|
9947
9947
|
- suite_certs
|
|
9948
|
-
image: quay.io/ibmmas/cli:10.
|
|
9948
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
9949
9949
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9950
9950
|
|
|
9951
9951
|
workspaces:
|
|
@@ -10012,7 +10012,7 @@ spec:
|
|
|
10012
10012
|
command:
|
|
10013
10013
|
- /opt/app-root/src/run-role.sh
|
|
10014
10014
|
- suite_config
|
|
10015
|
-
image: quay.io/ibmmas/cli:10.
|
|
10015
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
10016
10016
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10017
10017
|
workingDir: /workspace/configs
|
|
10018
10018
|
|
|
@@ -10083,7 +10083,7 @@ spec:
|
|
|
10083
10083
|
command:
|
|
10084
10084
|
- /opt/app-root/src/run-role.sh
|
|
10085
10085
|
- suite_db2_setup_for_manage
|
|
10086
|
-
image: quay.io/ibmmas/cli:10.
|
|
10086
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
10087
10087
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10088
10088
|
# --------------------------------------------------------------------------------
|
|
10089
10089
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-dns.yaml
|
|
@@ -10273,7 +10273,7 @@ spec:
|
|
|
10273
10273
|
command:
|
|
10274
10274
|
- /opt/app-root/src/run-role.sh
|
|
10275
10275
|
- suite_dns
|
|
10276
|
-
image: quay.io/ibmmas/cli:10.
|
|
10276
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
10277
10277
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10278
10278
|
# --------------------------------------------------------------------------------
|
|
10279
10279
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-install.yaml
|
|
@@ -10512,7 +10512,7 @@ spec:
|
|
|
10512
10512
|
command:
|
|
10513
10513
|
- /opt/app-root/src/run-role.sh
|
|
10514
10514
|
- suite_install
|
|
10515
|
-
image: quay.io/ibmmas/cli:10.
|
|
10515
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
10516
10516
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10517
10517
|
workingDir: /workspace/configs
|
|
10518
10518
|
|
|
@@ -10600,7 +10600,7 @@ spec:
|
|
|
10600
10600
|
command:
|
|
10601
10601
|
- /opt/app-root/src/run-role.sh
|
|
10602
10602
|
- suite_rollback
|
|
10603
|
-
image: quay.io/ibmmas/cli:10.
|
|
10603
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
10604
10604
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10605
10605
|
# --------------------------------------------------------------------------------
|
|
10606
10606
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-uninstall.yaml
|
|
@@ -10665,7 +10665,7 @@ spec:
|
|
|
10665
10665
|
command:
|
|
10666
10666
|
- /opt/app-root/src/run-role.sh
|
|
10667
10667
|
- suite_uninstall
|
|
10668
|
-
image: quay.io/ibmmas/cli:10.
|
|
10668
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
10669
10669
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10670
10670
|
# --------------------------------------------------------------------------------
|
|
10671
10671
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-upgrade.yaml
|
|
@@ -10735,7 +10735,7 @@ spec:
|
|
|
10735
10735
|
command:
|
|
10736
10736
|
- /opt/app-root/src/run-role.sh
|
|
10737
10737
|
- suite_upgrade
|
|
10738
|
-
image: quay.io/ibmmas/cli:10.
|
|
10738
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
10739
10739
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10740
10740
|
# --------------------------------------------------------------------------------
|
|
10741
10741
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-verify.yaml
|
|
@@ -10797,12 +10797,12 @@ spec:
|
|
|
10797
10797
|
command:
|
|
10798
10798
|
- /opt/app-root/src/run-role.sh
|
|
10799
10799
|
- suite_verify
|
|
10800
|
-
image: quay.io/ibmmas/cli:10.
|
|
10800
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
10801
10801
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10802
10802
|
|
|
10803
10803
|
# If configmap/approval-suite-verify exists then set CONFIGMAP_KEY=pending and wait for it to be changed to "approved"
|
|
10804
10804
|
- name: suite-post-verify
|
|
10805
|
-
image: quay.io/ibmmas/cli:10.
|
|
10805
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
10806
10806
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10807
10807
|
command:
|
|
10808
10808
|
- /opt/app-root/src/wait-for-configmap.sh
|
|
@@ -10931,7 +10931,7 @@ spec:
|
|
|
10931
10931
|
command:
|
|
10932
10932
|
- /opt/app-root/src/run-role.sh
|
|
10933
10933
|
- turbonomic
|
|
10934
|
-
image: quay.io/ibmmas/cli:10.
|
|
10934
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
10935
10935
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10936
10936
|
# --------------------------------------------------------------------------------
|
|
10937
10937
|
# /home/runner/work/cli/cli/tekton/target/tasks/uds.yaml
|
|
@@ -11012,7 +11012,7 @@ spec:
|
|
|
11012
11012
|
# IBM User Data Services (UDS)
|
|
11013
11013
|
# -------------------------------------------------------------------------
|
|
11014
11014
|
- name: uds
|
|
11015
|
-
image: quay.io/ibmmas/cli:10.
|
|
11015
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
11016
11016
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11017
11017
|
workingDir: /workspace/configs
|
|
11018
11018
|
command:
|
|
@@ -11075,7 +11075,7 @@ spec:
|
|
|
11075
11075
|
# IBM Data Reporter Operator (DRO)
|
|
11076
11076
|
# -------------------------------------------------------------------------
|
|
11077
11077
|
- name: dro
|
|
11078
|
-
image: quay.io/ibmmas/cli:10.
|
|
11078
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
11079
11079
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11080
11080
|
workingDir: /workspace/configs
|
|
11081
11081
|
command:
|
|
@@ -11161,7 +11161,7 @@ spec:
|
|
|
11161
11161
|
|
|
11162
11162
|
steps:
|
|
11163
11163
|
- name: update-configmap
|
|
11164
|
-
image: quay.io/ibmmas/cli:10.
|
|
11164
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
11165
11165
|
command:
|
|
11166
11166
|
- /opt/app-root/src/update-configmap.sh
|
|
11167
11167
|
env:
|
|
@@ -11223,7 +11223,7 @@ spec:
|
|
|
11223
11223
|
|
|
11224
11224
|
steps:
|
|
11225
11225
|
- name: wait-for-configmap
|
|
11226
|
-
image: quay.io/ibmmas/cli:10.
|
|
11226
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
11227
11227
|
command:
|
|
11228
11228
|
- /opt/app-root/src/wait-for-configmap.sh
|
|
11229
11229
|
env:
|
|
@@ -11287,7 +11287,7 @@ spec:
|
|
|
11287
11287
|
|
|
11288
11288
|
steps:
|
|
11289
11289
|
- name: wait
|
|
11290
|
-
image: quay.io/ibmmas/cli:10.
|
|
11290
|
+
image: quay.io/ibmmas/cli:10.5.0
|
|
11291
11291
|
command:
|
|
11292
11292
|
- /opt/app-root/src/wait-for-tekton.sh
|
|
11293
11293
|
env:
|
|
@@ -17893,6 +17893,8 @@ spec:
|
|
|
17893
17893
|
value: $(params.mas_manual_certs_yaml)
|
|
17894
17894
|
- name: mas_pod_template_yaml
|
|
17895
17895
|
value: $(params.mas_pod_template_yaml)
|
|
17896
|
+
- name: mas_wipe_mongo_data
|
|
17897
|
+
value: $(params.mas_wipe_mongo_data)
|
|
17896
17898
|
taskRef:
|
|
17897
17899
|
kind: Task
|
|
17898
17900
|
name: gitops-suite
|
|
@@ -17943,8 +17945,6 @@ spec:
|
|
|
17943
17945
|
value: $(params.dro_ca_certificate_file)
|
|
17944
17946
|
- name: cluster_url
|
|
17945
17947
|
value: $(params.cluster_url)
|
|
17946
|
-
- name: mas_wipe_mongo_data
|
|
17947
|
-
value: $(params.mas_wipe_mongo_data)
|
|
17948
17948
|
workspaces:
|
|
17949
17949
|
- name: configs
|
|
17950
17950
|
workspace: configs
|
mas/cli/update/app.py
CHANGED
|
@@ -233,12 +233,13 @@ class UpdateApp(BaseApp):
|
|
|
233
233
|
self.printH1("Select IBM Maximo Operator Catalog Version")
|
|
234
234
|
self.printDescription([
|
|
235
235
|
"Select MAS Catalog",
|
|
236
|
-
" 1)
|
|
237
|
-
" 2)
|
|
236
|
+
" 1) July 30 2024 Update (MAS 9.0.1, 8.11.13, & 8.10.16)",
|
|
237
|
+
" 2) June 25 2024 Update (MAS 9.0.0, 8.11.12, & 8.10.15)",
|
|
238
|
+
" 3) May 28 2024 Update (MAS 8.11.11 & 8.10.14)"
|
|
238
239
|
])
|
|
239
240
|
|
|
240
241
|
catalogOptions = [
|
|
241
|
-
"v9-240625-amd64", "v8-240528-amd64"
|
|
242
|
+
"v9-240730-amd64", "v9-240625-amd64", "v8-240528-amd64"
|
|
242
243
|
]
|
|
243
244
|
self.promptForListSelect("Select catalog version", catalogOptions, "mas_catalog_version", default=1)
|
|
244
245
|
|
|
@@ -331,7 +332,8 @@ class UpdateApp(BaseApp):
|
|
|
331
332
|
# where it can be made available to both the ansible collection and this python package.
|
|
332
333
|
mongoVersions = {
|
|
333
334
|
"v8-240528-amd64": "5.0.23",
|
|
334
|
-
"v9-240625-amd64": "6.0.12"
|
|
335
|
+
"v9-240625-amd64": "6.0.12",
|
|
336
|
+
"v9-240730-amd64": "6.0.12"
|
|
335
337
|
}
|
|
336
338
|
|
|
337
339
|
targetMongoVersion = mongoVersions[self.getParam('mas_catalog_version')]
|
|
@@ -444,7 +446,8 @@ class UpdateApp(BaseApp):
|
|
|
444
446
|
# where it can be made available to both the ansible collection and this python package.
|
|
445
447
|
cp4dVersions = {
|
|
446
448
|
"v8-240528-amd64": "4.6.6",
|
|
447
|
-
"v9-240625-amd64": "4.8.0"
|
|
449
|
+
"v9-240625-amd64": "4.8.0",
|
|
450
|
+
"v9-240730-amd64": "4.8.0"
|
|
448
451
|
}
|
|
449
452
|
|
|
450
453
|
with Halo(text='Checking for IBM Cloud Pak for Data', spinner=self.spinner) as h:
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
mas/cli/__init__.py,sha256=
|
|
1
|
+
mas/cli/__init__.py,sha256=Z8nqWH8j_4pknDvO_tmBkioZAi29Pj7h4ieJgYHYIUI,491
|
|
2
2
|
mas/cli/cli.py,sha256=cCo18YcAU2sdv1FkPSgJlw8mEcUz3JSWAvV80t1bSNk,10753
|
|
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=h2ef4tUMw7e2vE7DH3th_UyOKBFRRB4kamZY0J4PHuo,52853
|
|
8
8
|
mas/cli/install/argParser.py,sha256=FEmCUrRwaE5e-AHkpsQmgMpo6ta-nLYXTtuofVxsmMg,25381
|
|
9
9
|
mas/cli/install/summarizer.py,sha256=ydOnkiRmj3nPPcE9ZHNxHDMMgii_VYHKnyXV4JbVQ7s,18046
|
|
10
10
|
mas/cli/install/settings/__init__.py,sha256=eGdNVHVALUxJlZyGYkBet8LbHvVfa-1UjL_8Zl3d-lY,953
|
|
@@ -13,7 +13,7 @@ mas/cli/install/settings/db2Settings.py,sha256=mR0XL81Talvwvm1bekw0o9VOwV42QkS0j
|
|
|
13
13
|
mas/cli/install/settings/kafkaSettings.py,sha256=bjAji5OZfSBpttiYHKM5B5Lvva8L8PUzi8QSs6opQcE,6997
|
|
14
14
|
mas/cli/install/settings/manageSettings.py,sha256=WZHI5VMVBwaHrQDT5kbthgxypCc2th4XEHEMVKTnh0g,13308
|
|
15
15
|
mas/cli/install/settings/turbonomicSettings.py,sha256=OC-sn6_Z6MAq0kf33OC3c96gqT8FT4P7A51PenPiCXw,1368
|
|
16
|
-
mas/cli/templates/ibm-mas-tekton.yaml,sha256=
|
|
16
|
+
mas/cli/templates/ibm-mas-tekton.yaml,sha256=e-gd2hxnxPNHL68T-Tzo1sInAykrtJ0Q-jBLgVHR1fc,723141
|
|
17
17
|
mas/cli/templates/jdbccfg.yml.j2,sha256=cANbwkUkKEPQp-P3_BB_Llbt94457Ciagah2hOdySIM,1644
|
|
18
18
|
mas/cli/templates/pod-templates/best-effort/ibm-data-dictionary-assetdatadictionary.yml,sha256=8VG_FDFcEjWNaAOZTcS58Pe0tWOXC10SJLloNqzEMC8,757
|
|
19
19
|
mas/cli/templates/pod-templates/best-effort/ibm-mas-bascfg.yml,sha256=rkq8c2pVJoskgict9tCZzCchGSE2MBC-dJ47JyMYm7A,1559
|
|
@@ -89,13 +89,13 @@ mas/cli/uninstall/__init__.py,sha256=tGH_qJ5ZqcSFpIlObRiye3Y-r4zU8rEplYFjwuHwBTY
|
|
|
89
89
|
mas/cli/uninstall/app.py,sha256=Sbv-xqUUdIOerkSw3pz8wo3u7_KmgmwwRFEB8UP3uFU,9934
|
|
90
90
|
mas/cli/uninstall/argParser.py,sha256=VO6_u8Qv_munelgZMxBw9mdJBwF_9j688b6nUxQD2RM,3298
|
|
91
91
|
mas/cli/update/__init__.py,sha256=tGH_qJ5ZqcSFpIlObRiye3Y-r4zU8rEplYFjwuHwBTY,494
|
|
92
|
-
mas/cli/update/app.py,sha256=
|
|
92
|
+
mas/cli/update/app.py,sha256=XxVY54vEEErc91ljG9P00hdOA5nWpEcQ07XYoU6XvNg,36565
|
|
93
93
|
mas/cli/update/argParser.py,sha256=k9-2i6KRvU4gxkiHJTgtjh1IkDaaLzgisrZe6-JORJA,3641
|
|
94
94
|
mas/cli/upgrade/__init__.py,sha256=tGH_qJ5ZqcSFpIlObRiye3Y-r4zU8rEplYFjwuHwBTY,494
|
|
95
95
|
mas/cli/upgrade/app.py,sha256=lxMZYlO_sybzbOuZ4D7R0OCjGqnMg3MF1h2vSVZ1YmE,5328
|
|
96
96
|
mas/cli/upgrade/argParser.py,sha256=jl8SU0mXDMAkpfqXaKE4MPNUmVoD0LSsvMUSJjU1dbQ,1881
|
|
97
|
-
mas_cli-10.
|
|
98
|
-
mas_cli-10.
|
|
99
|
-
mas_cli-10.
|
|
100
|
-
mas_cli-10.
|
|
101
|
-
mas_cli-10.
|
|
97
|
+
mas_cli-10.5.0.data/scripts/mas-cli,sha256=sEPYV6KUzcq4ukiTM4tMLsYKv-d9Ms0aJI9Uhjg_G9Y,3436
|
|
98
|
+
mas_cli-10.5.0.dist-info/METADATA,sha256=mWy7WtoK4cVvvUD_rGjwV9Qh1s7fLZUtLwcHNvFmxOU,2076
|
|
99
|
+
mas_cli-10.5.0.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
|
|
100
|
+
mas_cli-10.5.0.dist-info/top_level.txt,sha256=_Hlsp7pvMvyV14LFg-vk1hULq30j61EILnnxMFIhhc8,4
|
|
101
|
+
mas_cli-10.5.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|