mas-cli 11.0.0__py3-none-any.whl → 11.1.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 +11 -3
- mas/cli/templates/ibm-mas-tekton.yaml +136 -109
- {mas_cli-11.0.0.dist-info → mas_cli-11.1.0.dist-info}/METADATA +1 -1
- {mas_cli-11.0.0.dist-info → mas_cli-11.1.0.dist-info}/RECORD +9 -9
- {mas_cli-11.0.0.data → mas_cli-11.1.0.data}/scripts/mas-cli +0 -0
- {mas_cli-11.0.0.dist-info → mas_cli-11.1.0.dist-info}/WHEEL +0 -0
- {mas_cli-11.0.0.dist-info → mas_cli-11.1.0.dist-info}/top_level.txt +0 -0
mas/cli/__init__.py
CHANGED
mas/cli/cli.py
CHANGED
mas/cli/install/app.py
CHANGED
|
@@ -188,7 +188,7 @@ class InstallApp(BaseApp, InstallSettingsMixin, InstallSummarizerMixin, ConfigGe
|
|
|
188
188
|
def configSpecialCharacters(self):
|
|
189
189
|
self.printH1("Configure special characters for userID and username")
|
|
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
193
|
if self.getParam("mas_catalog_version") in ["v9-240625-amd64", "v9-240730-amd64", "v9-240827-amd64"]:
|
|
194
194
|
logger.debug(f"Using automatic CP4D product version: {self.getParam('cpd_product_version')}")
|
|
@@ -484,7 +484,15 @@ class InstallApp(BaseApp, InstallSettingsMixin, InstallSummarizerMixin, ConfigGe
|
|
|
484
484
|
self.storageClassProvider = "ocs"
|
|
485
485
|
self.params["storage_class_rwo"] = "ocs-storagecluster-ceph-rbd"
|
|
486
486
|
self.params["storage_class_rwx"] = "ocs-storagecluster-cephfs"
|
|
487
|
-
# 3.
|
|
487
|
+
# 3. NFS Client
|
|
488
|
+
elif getStorageClass(self.dynamicClient, "nfs-client") is not None:
|
|
489
|
+
print_formatted_text(HTML("<MediumSeaGreen>Storage provider auto-detected: NFS Client</MediumSeaGreen>"))
|
|
490
|
+
print_formatted_text(HTML("<LightSlateGrey> - Storage class (ReadWriteOnce): nfs-client</LightSlateGrey>"))
|
|
491
|
+
print_formatted_text(HTML("<LightSlateGrey> - Storage class (ReadWriteMany): nfs-client</LightSlateGrey>"))
|
|
492
|
+
self.storageClassProvider = "nfs"
|
|
493
|
+
self.params["storage_class_rwo"] = "nfs-client"
|
|
494
|
+
self.params["storage_class_rwx"] = "nfs-client"
|
|
495
|
+
# 4. Azure
|
|
488
496
|
elif getStorageClass(self.dynamicClient, "managed-premium") is not None:
|
|
489
497
|
print_formatted_text(HTML("<MediumSeaGreen>Storage provider auto-detected: Azure Managed</MediumSeaGreen>"))
|
|
490
498
|
print_formatted_text(HTML("<LightSlateGrey> - Storage class (ReadWriteOnce): managed-premium</LightSlateGrey>"))
|
|
@@ -492,7 +500,7 @@ class InstallApp(BaseApp, InstallSettingsMixin, InstallSummarizerMixin, ConfigGe
|
|
|
492
500
|
self.storageClassProvider = "azure"
|
|
493
501
|
self.params["storage_class_rwo"] = "managed-premium"
|
|
494
502
|
self.params["storage_class_rwx"] = "azurefiles-premium"
|
|
495
|
-
#
|
|
503
|
+
# 5. AWS
|
|
496
504
|
elif getStorageClass(self.dynamicClient, "gp2") is not None:
|
|
497
505
|
print_formatted_text(HTML("<MediumSeaGreen>Storage provider auto-detected: AWS gp2</MediumSeaGreen>"))
|
|
498
506
|
print_formatted_text(HTML("<LightSlateGrey> - Storage class (ReadWriteOnce): gp2</LightSlateGrey>"))
|
|
@@ -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.1.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.1.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.1.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.1.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.1.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.1.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.1.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.1.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.1.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.1.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.1.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.1.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.1.0
|
|
1532
1532
|
workspaces:
|
|
1533
1533
|
- name: configs
|
|
1534
1534
|
# --------------------------------------------------------------------------------
|
|
@@ -1712,7 +1712,7 @@ spec:
|
|
|
1712
1712
|
- -c
|
|
1713
1713
|
name: gitops-cluster
|
|
1714
1714
|
imagePullPolicy: Always
|
|
1715
|
-
image: quay.io/ibmmas/cli:11.
|
|
1715
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
1716
1716
|
workspaces:
|
|
1717
1717
|
- name: configs
|
|
1718
1718
|
# --------------------------------------------------------------------------------
|
|
@@ -1807,7 +1807,7 @@ spec:
|
|
|
1807
1807
|
- -c
|
|
1808
1808
|
name: gitops-cos
|
|
1809
1809
|
imagePullPolicy: IfNotPresent
|
|
1810
|
-
image: quay.io/ibmmas/cli:11.
|
|
1810
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
1811
1811
|
workspaces:
|
|
1812
1812
|
- name: configs
|
|
1813
1813
|
# --------------------------------------------------------------------------------
|
|
@@ -1920,7 +1920,7 @@ spec:
|
|
|
1920
1920
|
- -c
|
|
1921
1921
|
name: gitops-cp4d-service
|
|
1922
1922
|
imagePullPolicy: IfNotPresent
|
|
1923
|
-
image: quay.io/ibmmas/cli:11.
|
|
1923
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
1924
1924
|
workspaces:
|
|
1925
1925
|
- name: configs
|
|
1926
1926
|
- name: shared-gitops-configs
|
|
@@ -2029,7 +2029,7 @@ spec:
|
|
|
2029
2029
|
- -c
|
|
2030
2030
|
name: gitops-cp4d
|
|
2031
2031
|
imagePullPolicy: IfNotPresent
|
|
2032
|
-
image: quay.io/ibmmas/cli:11.
|
|
2032
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
2033
2033
|
workspaces:
|
|
2034
2034
|
- name: configs
|
|
2035
2035
|
- name: shared-gitops-configs
|
|
@@ -2281,7 +2281,7 @@ spec:
|
|
|
2281
2281
|
- -c
|
|
2282
2282
|
name: gitops-db2u-database
|
|
2283
2283
|
imagePullPolicy: Always
|
|
2284
|
-
image: quay.io/ibmmas/cli:11.
|
|
2284
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
2285
2285
|
workspaces:
|
|
2286
2286
|
- name: configs
|
|
2287
2287
|
- name: shared-gitops-configs
|
|
@@ -2374,7 +2374,7 @@ spec:
|
|
|
2374
2374
|
- -c
|
|
2375
2375
|
name: gitops-db2u
|
|
2376
2376
|
imagePullPolicy: IfNotPresent
|
|
2377
|
-
image: quay.io/ibmmas/cli:11.
|
|
2377
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
2378
2378
|
workspaces:
|
|
2379
2379
|
- name: configs
|
|
2380
2380
|
# --------------------------------------------------------------------------------
|
|
@@ -2501,7 +2501,7 @@ spec:
|
|
|
2501
2501
|
- -c
|
|
2502
2502
|
name: gitops-delete-jdbc-config
|
|
2503
2503
|
imagePullPolicy: IfNotPresent
|
|
2504
|
-
image: quay.io/ibmmas/cli:11.
|
|
2504
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
2505
2505
|
workspaces:
|
|
2506
2506
|
- name: configs
|
|
2507
2507
|
# --------------------------------------------------------------------------------
|
|
@@ -2599,7 +2599,7 @@ spec:
|
|
|
2599
2599
|
- -c
|
|
2600
2600
|
name: gitops-delete-kafka-config
|
|
2601
2601
|
imagePullPolicy: Always
|
|
2602
|
-
image: quay.io/ibmmas/cli:11.
|
|
2602
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
2603
2603
|
workspaces:
|
|
2604
2604
|
- name: configs
|
|
2605
2605
|
|
|
@@ -2691,7 +2691,7 @@ spec:
|
|
|
2691
2691
|
- -c
|
|
2692
2692
|
name: gitops-deprovision-app-config
|
|
2693
2693
|
imagePullPolicy: IfNotPresent
|
|
2694
|
-
image: quay.io/ibmmas/cli:11.
|
|
2694
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
2695
2695
|
workspaces:
|
|
2696
2696
|
- name: configs
|
|
2697
2697
|
# --------------------------------------------------------------------------------
|
|
@@ -2776,7 +2776,7 @@ spec:
|
|
|
2776
2776
|
- -c
|
|
2777
2777
|
name: gitops-deprovision-app-install
|
|
2778
2778
|
imagePullPolicy: IfNotPresent
|
|
2779
|
-
image: quay.io/ibmmas/cli:11.
|
|
2779
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
2780
2780
|
workspaces:
|
|
2781
2781
|
- name: configs
|
|
2782
2782
|
# --------------------------------------------------------------------------------
|
|
@@ -2861,7 +2861,7 @@ spec:
|
|
|
2861
2861
|
- -c
|
|
2862
2862
|
name: gitops-deprovision-cluster
|
|
2863
2863
|
imagePullPolicy: IfNotPresent
|
|
2864
|
-
image: quay.io/ibmmas/cli:11.
|
|
2864
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
2865
2865
|
workspaces:
|
|
2866
2866
|
- name: configs
|
|
2867
2867
|
# --------------------------------------------------------------------------------
|
|
@@ -2972,7 +2972,7 @@ spec:
|
|
|
2972
2972
|
- -c
|
|
2973
2973
|
name: gitops-deprovision-cos
|
|
2974
2974
|
imagePullPolicy: IfNotPresent
|
|
2975
|
-
image: quay.io/ibmmas/cli:11.
|
|
2975
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
2976
2976
|
workspaces:
|
|
2977
2977
|
- name: configs
|
|
2978
2978
|
# --------------------------------------------------------------------------------
|
|
@@ -3060,7 +3060,7 @@ spec:
|
|
|
3060
3060
|
- -c
|
|
3061
3061
|
name: gitops-deprovision-db2u-database
|
|
3062
3062
|
imagePullPolicy: IfNotPresent
|
|
3063
|
-
image: quay.io/ibmmas/cli:11.
|
|
3063
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
3064
3064
|
workspaces:
|
|
3065
3065
|
- name: configs
|
|
3066
3066
|
|
|
@@ -3143,7 +3143,7 @@ spec:
|
|
|
3143
3143
|
- -c
|
|
3144
3144
|
name: gitops-deprovision-db2u
|
|
3145
3145
|
imagePullPolicy: IfNotPresent
|
|
3146
|
-
image: quay.io/ibmmas/cli:11.
|
|
3146
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
3147
3147
|
workspaces:
|
|
3148
3148
|
- name: configs
|
|
3149
3149
|
|
|
@@ -3219,7 +3219,7 @@ spec:
|
|
|
3219
3219
|
- -c
|
|
3220
3220
|
name: gitops-deprovision-efs
|
|
3221
3221
|
imagePullPolicy: IfNotPresent
|
|
3222
|
-
image: quay.io/ibmmas/cli:11.
|
|
3222
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
3223
3223
|
workspaces:
|
|
3224
3224
|
- name: configs
|
|
3225
3225
|
|
|
@@ -3328,7 +3328,7 @@ spec:
|
|
|
3328
3328
|
- -c
|
|
3329
3329
|
name: gitops-deprovision-kafka
|
|
3330
3330
|
imagePullPolicy: IfNotPresent
|
|
3331
|
-
image: quay.io/ibmmas/cli:11.
|
|
3331
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
3332
3332
|
workspaces:
|
|
3333
3333
|
- name: configs
|
|
3334
3334
|
# --------------------------------------------------------------------------------
|
|
@@ -3430,7 +3430,7 @@ spec:
|
|
|
3430
3430
|
- -c
|
|
3431
3431
|
name: gitops-deprovision-mongo
|
|
3432
3432
|
imagePullPolicy: IfNotPresent
|
|
3433
|
-
image: quay.io/ibmmas/cli:11.
|
|
3433
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
3434
3434
|
workspaces:
|
|
3435
3435
|
- name: configs
|
|
3436
3436
|
|
|
@@ -3487,7 +3487,7 @@ spec:
|
|
|
3487
3487
|
- -c
|
|
3488
3488
|
name: gitops-deprovision-rosa
|
|
3489
3489
|
imagePullPolicy: IfNotPresent
|
|
3490
|
-
image: quay.io/ibmmas/cli:11.
|
|
3490
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
3491
3491
|
workspaces:
|
|
3492
3492
|
- name: configs
|
|
3493
3493
|
# --------------------------------------------------------------------------------
|
|
@@ -3692,7 +3692,7 @@ spec:
|
|
|
3692
3692
|
- -c
|
|
3693
3693
|
name: gitops-deprovision-suite-config
|
|
3694
3694
|
imagePullPolicy: IfNotPresent
|
|
3695
|
-
image: quay.io/ibmmas/cli:11.
|
|
3695
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
3696
3696
|
workspaces:
|
|
3697
3697
|
- name: configs
|
|
3698
3698
|
|
|
@@ -3790,7 +3790,7 @@ spec:
|
|
|
3790
3790
|
- -c
|
|
3791
3791
|
name: gitops-deprovision-suite-idp-config
|
|
3792
3792
|
imagePullPolicy: IfNotPresent
|
|
3793
|
-
image: quay.io/ibmmas/cli:11.
|
|
3793
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
3794
3794
|
workspaces:
|
|
3795
3795
|
- name: configs
|
|
3796
3796
|
# --------------------------------------------------------------------------------
|
|
@@ -3882,7 +3882,7 @@ spec:
|
|
|
3882
3882
|
- -c
|
|
3883
3883
|
name: gitops-deprovision-suite-objectstorage-config
|
|
3884
3884
|
imagePullPolicy: IfNotPresent
|
|
3885
|
-
image: quay.io/ibmmas/cli:11.
|
|
3885
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
3886
3886
|
workspaces:
|
|
3887
3887
|
- name: configs
|
|
3888
3888
|
# --------------------------------------------------------------------------------
|
|
@@ -3974,7 +3974,7 @@ spec:
|
|
|
3974
3974
|
- -c
|
|
3975
3975
|
name: gitops-deprovision-suite-smtp-config
|
|
3976
3976
|
imagePullPolicy: IfNotPresent
|
|
3977
|
-
image: quay.io/ibmmas/cli:11.
|
|
3977
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
3978
3978
|
workspaces:
|
|
3979
3979
|
- name: configs
|
|
3980
3980
|
# --------------------------------------------------------------------------------
|
|
@@ -4067,7 +4067,7 @@ spec:
|
|
|
4067
4067
|
- -c
|
|
4068
4068
|
name: gitops-deprovision-suite-watson-studio-config
|
|
4069
4069
|
imagePullPolicy: IfNotPresent
|
|
4070
|
-
image: quay.io/ibmmas/cli:11.
|
|
4070
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
4071
4071
|
workspaces:
|
|
4072
4072
|
- name: configs
|
|
4073
4073
|
# --------------------------------------------------------------------------------
|
|
@@ -4158,7 +4158,7 @@ spec:
|
|
|
4158
4158
|
- -c
|
|
4159
4159
|
name: gitops-deprovision-suite-workspace
|
|
4160
4160
|
imagePullPolicy: Always
|
|
4161
|
-
image: quay.io/ibmmas/cli:11.
|
|
4161
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
4162
4162
|
workspaces:
|
|
4163
4163
|
- name: configs
|
|
4164
4164
|
# --------------------------------------------------------------------------------
|
|
@@ -4251,7 +4251,7 @@ spec:
|
|
|
4251
4251
|
- -c
|
|
4252
4252
|
name: gitops-deprovision-suite
|
|
4253
4253
|
imagePullPolicy: IfNotPresent
|
|
4254
|
-
image: quay.io/ibmmas/cli:11.
|
|
4254
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
4255
4255
|
workspaces:
|
|
4256
4256
|
- name: configs
|
|
4257
4257
|
|
|
@@ -4354,7 +4354,7 @@ spec:
|
|
|
4354
4354
|
- -c
|
|
4355
4355
|
name: gitops-dro
|
|
4356
4356
|
imagePullPolicy: IfNotPresent
|
|
4357
|
-
image: quay.io/ibmmas/cli:11.
|
|
4357
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
4358
4358
|
workspaces:
|
|
4359
4359
|
- name: configs
|
|
4360
4360
|
# --------------------------------------------------------------------------------
|
|
@@ -4436,7 +4436,7 @@ spec:
|
|
|
4436
4436
|
- -c
|
|
4437
4437
|
name: gitops-efs
|
|
4438
4438
|
imagePullPolicy: IfNotPresent
|
|
4439
|
-
image: quay.io/ibmmas/cli:11.
|
|
4439
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
4440
4440
|
workspaces:
|
|
4441
4441
|
- name: configs
|
|
4442
4442
|
|
|
@@ -4571,7 +4571,7 @@ spec:
|
|
|
4571
4571
|
- -c
|
|
4572
4572
|
name: gitops-jdbc-config
|
|
4573
4573
|
imagePullPolicy: Always
|
|
4574
|
-
image: quay.io/ibmmas/cli:11.
|
|
4574
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
4575
4575
|
workspaces:
|
|
4576
4576
|
- name: configs
|
|
4577
4577
|
- name: shared-gitops-configs
|
|
@@ -4667,7 +4667,7 @@ spec:
|
|
|
4667
4667
|
- -c
|
|
4668
4668
|
name: gitops-kafka-config
|
|
4669
4669
|
imagePullPolicy: Always
|
|
4670
|
-
image: quay.io/ibmmas/cli:11.
|
|
4670
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
4671
4671
|
workspaces:
|
|
4672
4672
|
- name: configs
|
|
4673
4673
|
|
|
@@ -4788,7 +4788,7 @@ spec:
|
|
|
4788
4788
|
- -c
|
|
4789
4789
|
name: gitops-kafka
|
|
4790
4790
|
imagePullPolicy: IfNotPresent
|
|
4791
|
-
image: quay.io/ibmmas/cli:11.
|
|
4791
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
4792
4792
|
workspaces:
|
|
4793
4793
|
- name: configs
|
|
4794
4794
|
# --------------------------------------------------------------------------------
|
|
@@ -4839,7 +4839,7 @@ spec:
|
|
|
4839
4839
|
- -c
|
|
4840
4840
|
name: gitops-license
|
|
4841
4841
|
imagePullPolicy: Always
|
|
4842
|
-
image: quay.io/ibmmas/cli:11.
|
|
4842
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
4843
4843
|
workspaces:
|
|
4844
4844
|
- name: shared-entitlement
|
|
4845
4845
|
|
|
@@ -5296,7 +5296,7 @@ spec:
|
|
|
5296
5296
|
- -c
|
|
5297
5297
|
name: gitops-mas-fvt-preparer
|
|
5298
5298
|
imagePullPolicy: Always
|
|
5299
|
-
image: quay.io/ibmmas/cli:11.
|
|
5299
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
5300
5300
|
workspaces:
|
|
5301
5301
|
- name: configs
|
|
5302
5302
|
- name: shared-additional-configs
|
|
@@ -5700,7 +5700,7 @@ spec:
|
|
|
5700
5700
|
- -c
|
|
5701
5701
|
name: gitops-mas-initiator
|
|
5702
5702
|
imagePullPolicy: IfNotPresent
|
|
5703
|
-
image: quay.io/ibmmas/cli:11.
|
|
5703
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
5704
5704
|
workspaces:
|
|
5705
5705
|
- name: configs
|
|
5706
5706
|
# --------------------------------------------------------------------------------
|
|
@@ -5807,7 +5807,7 @@ spec:
|
|
|
5807
5807
|
- -c
|
|
5808
5808
|
name: gitops-mongo
|
|
5809
5809
|
imagePullPolicy: IfNotPresent
|
|
5810
|
-
image: quay.io/ibmmas/cli:11.
|
|
5810
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
5811
5811
|
workspaces:
|
|
5812
5812
|
- name: configs
|
|
5813
5813
|
|
|
@@ -5919,7 +5919,7 @@ spec:
|
|
|
5919
5919
|
- -c
|
|
5920
5920
|
name: gitops-nvidia-gpu
|
|
5921
5921
|
imagePullPolicy: IfNotPresent
|
|
5922
|
-
image: quay.io/ibmmas/cli:11.
|
|
5922
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
5923
5923
|
workspaces:
|
|
5924
5924
|
- name: configs
|
|
5925
5925
|
# --------------------------------------------------------------------------------
|
|
@@ -6036,7 +6036,7 @@ spec:
|
|
|
6036
6036
|
- -c
|
|
6037
6037
|
name: gitops-process-mongo-user
|
|
6038
6038
|
imagePullPolicy: IfNotPresent
|
|
6039
|
-
image: quay.io/ibmmas/cli:11.
|
|
6039
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
6040
6040
|
workspaces:
|
|
6041
6041
|
- name: configs
|
|
6042
6042
|
# --------------------------------------------------------------------------------
|
|
@@ -6092,7 +6092,7 @@ spec:
|
|
|
6092
6092
|
- -c
|
|
6093
6093
|
name: gitops-rosa
|
|
6094
6094
|
imagePullPolicy: IfNotPresent
|
|
6095
|
-
image: quay.io/ibmmas/cli:11.
|
|
6095
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
6096
6096
|
workspaces:
|
|
6097
6097
|
- name: configs
|
|
6098
6098
|
# --------------------------------------------------------------------------------
|
|
@@ -6173,6 +6173,9 @@ spec:
|
|
|
6173
6173
|
- name: ingress
|
|
6174
6174
|
type: string
|
|
6175
6175
|
default: "false"
|
|
6176
|
+
- name: run_sanity_test
|
|
6177
|
+
type: string
|
|
6178
|
+
default: "false"
|
|
6176
6179
|
|
|
6177
6180
|
stepTemplate:
|
|
6178
6181
|
name: gitops-suite-app-config
|
|
@@ -6231,6 +6234,8 @@ spec:
|
|
|
6231
6234
|
value: $(params.mas_manual_certs_yaml)
|
|
6232
6235
|
- name: INGRESS
|
|
6233
6236
|
value: $(params.ingress)
|
|
6237
|
+
- name: RUN_SANITY_TEST
|
|
6238
|
+
value: $(params.run_sanity_test)
|
|
6234
6239
|
envFrom:
|
|
6235
6240
|
- configMapRef:
|
|
6236
6241
|
name: environment-properties
|
|
@@ -6269,7 +6274,7 @@ spec:
|
|
|
6269
6274
|
- -c
|
|
6270
6275
|
name: gitops-suite-app-config
|
|
6271
6276
|
imagePullPolicy: IfNotPresent
|
|
6272
|
-
image: quay.io/ibmmas/cli:11.
|
|
6277
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
6273
6278
|
workspaces:
|
|
6274
6279
|
- name: configs
|
|
6275
6280
|
- name: shared-gitops-configs
|
|
@@ -6422,7 +6427,7 @@ spec:
|
|
|
6422
6427
|
- -c
|
|
6423
6428
|
name: gitops-suite-app-install
|
|
6424
6429
|
imagePullPolicy: Always
|
|
6425
|
-
image: quay.io/ibmmas/cli:11.
|
|
6430
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
6426
6431
|
workspaces:
|
|
6427
6432
|
- name: configs
|
|
6428
6433
|
- name: shared-gitops-configs
|
|
@@ -6528,7 +6533,7 @@ spec:
|
|
|
6528
6533
|
- -c
|
|
6529
6534
|
name: gitops-suite-certs
|
|
6530
6535
|
imagePullPolicy: IfNotPresent
|
|
6531
|
-
image: quay.io/ibmmas/cli:11.
|
|
6536
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
6532
6537
|
workspaces:
|
|
6533
6538
|
- name: configs
|
|
6534
6539
|
- name: certificates
|
|
@@ -6688,7 +6693,7 @@ spec:
|
|
|
6688
6693
|
- -c
|
|
6689
6694
|
name: gitops-suite-config
|
|
6690
6695
|
imagePullPolicy: IfNotPresent
|
|
6691
|
-
image: quay.io/ibmmas/cli:11.
|
|
6696
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
6692
6697
|
workspaces:
|
|
6693
6698
|
- name: configs
|
|
6694
6699
|
- name: shared-additional-configs
|
|
@@ -6788,7 +6793,7 @@ spec:
|
|
|
6788
6793
|
- -c
|
|
6789
6794
|
name: gitops-suite-dns
|
|
6790
6795
|
imagePullPolicy: IfNotPresent
|
|
6791
|
-
image: quay.io/ibmmas/cli:11.
|
|
6796
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
6792
6797
|
workspaces:
|
|
6793
6798
|
- name: configs
|
|
6794
6799
|
|
|
@@ -6912,7 +6917,7 @@ spec:
|
|
|
6912
6917
|
- -c
|
|
6913
6918
|
name: gitops-suite-idp-config
|
|
6914
6919
|
imagePullPolicy: IfNotPresent
|
|
6915
|
-
image: quay.io/ibmmas/cli:11.
|
|
6920
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
6916
6921
|
workspaces:
|
|
6917
6922
|
- name: configs
|
|
6918
6923
|
- name: shared-additional-configs
|
|
@@ -7013,7 +7018,7 @@ spec:
|
|
|
7013
7018
|
- -c
|
|
7014
7019
|
name: gitops-suite-objectstorage-config
|
|
7015
7020
|
imagePullPolicy: IfNotPresent
|
|
7016
|
-
image: quay.io/ibmmas/cli:11.
|
|
7021
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
7017
7022
|
workspaces:
|
|
7018
7023
|
- name: configs
|
|
7019
7024
|
- name: shared-gitops-configs
|
|
@@ -7157,7 +7162,7 @@ spec:
|
|
|
7157
7162
|
- -c
|
|
7158
7163
|
name: gitops-suite-smtp-config
|
|
7159
7164
|
imagePullPolicy: IfNotPresent
|
|
7160
|
-
image: quay.io/ibmmas/cli:11.
|
|
7165
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
7161
7166
|
workspaces:
|
|
7162
7167
|
- name: configs
|
|
7163
7168
|
|
|
@@ -7266,7 +7271,7 @@ spec:
|
|
|
7266
7271
|
- -c
|
|
7267
7272
|
name: gitops-suite-watson-studio-config
|
|
7268
7273
|
imagePullPolicy: IfNotPresent
|
|
7269
|
-
image: quay.io/ibmmas/cli:11.
|
|
7274
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
7270
7275
|
workspaces:
|
|
7271
7276
|
- name: configs
|
|
7272
7277
|
- name: shared-gitops-configs
|
|
@@ -7363,7 +7368,7 @@ spec:
|
|
|
7363
7368
|
- -c
|
|
7364
7369
|
name: gitops-suite-workspace
|
|
7365
7370
|
imagePullPolicy: IfNotPresent
|
|
7366
|
-
image: quay.io/ibmmas/cli:11.
|
|
7371
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
7367
7372
|
workspaces:
|
|
7368
7373
|
- name: configs
|
|
7369
7374
|
# --------------------------------------------------------------------------------
|
|
@@ -7633,7 +7638,7 @@ spec:
|
|
|
7633
7638
|
- -c
|
|
7634
7639
|
name: gitops-suite
|
|
7635
7640
|
imagePullPolicy: IfNotPresent
|
|
7636
|
-
image: quay.io/ibmmas/cli:11.
|
|
7641
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
7637
7642
|
workspaces:
|
|
7638
7643
|
- name: configs
|
|
7639
7644
|
- name: shared-gitops-configs
|
|
@@ -7683,7 +7688,7 @@ spec:
|
|
|
7683
7688
|
|
|
7684
7689
|
steps:
|
|
7685
7690
|
- name: grafana
|
|
7686
|
-
image: quay.io/ibmmas/cli:11.
|
|
7691
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
7687
7692
|
imagePullPolicy: $(params.image_pull_policy)
|
|
7688
7693
|
command:
|
|
7689
7694
|
- /opt/app-root/src/run-role.sh
|
|
@@ -7817,7 +7822,7 @@ spec:
|
|
|
7817
7822
|
command:
|
|
7818
7823
|
- /opt/app-root/src/run-role.sh
|
|
7819
7824
|
- ibm_catalogs
|
|
7820
|
-
image: quay.io/ibmmas/cli:11.
|
|
7825
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
7821
7826
|
imagePullPolicy: $(params.image_pull_policy)
|
|
7822
7827
|
workingDir: /workspace/configs
|
|
7823
7828
|
# --------------------------------------------------------------------------------
|
|
@@ -8059,7 +8064,7 @@ spec:
|
|
|
8059
8064
|
command:
|
|
8060
8065
|
- /opt/app-root/src/run-role.sh
|
|
8061
8066
|
- kafka
|
|
8062
|
-
image: quay.io/ibmmas/cli:11.
|
|
8067
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
8063
8068
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8064
8069
|
workingDir: /workspace/configs
|
|
8065
8070
|
|
|
@@ -8242,7 +8247,7 @@ spec:
|
|
|
8242
8247
|
command:
|
|
8243
8248
|
- /opt/app-root/src/run-role.sh
|
|
8244
8249
|
- mongodb
|
|
8245
|
-
image: quay.io/ibmmas/cli:11.
|
|
8250
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
8246
8251
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8247
8252
|
workingDir: /workspace/configs
|
|
8248
8253
|
|
|
@@ -8285,7 +8290,7 @@ spec:
|
|
|
8285
8290
|
- $(params.base_output_dir)
|
|
8286
8291
|
- --extra-namespaces
|
|
8287
8292
|
- selenium
|
|
8288
|
-
image: quay.io/ibmmas/cli:11.
|
|
8293
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
8289
8294
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8290
8295
|
env:
|
|
8291
8296
|
- name: DEVOPS_MONGO_URI
|
|
@@ -8402,7 +8407,7 @@ spec:
|
|
|
8402
8407
|
command:
|
|
8403
8408
|
- /opt/app-root/src/run-role.sh
|
|
8404
8409
|
- nvidia_gpu
|
|
8405
|
-
image: quay.io/ibmmas/cli:11.
|
|
8410
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
8406
8411
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8407
8412
|
workingDir: /workspace/configs
|
|
8408
8413
|
|
|
@@ -8438,7 +8443,7 @@ spec:
|
|
|
8438
8443
|
# Verify Cluster
|
|
8439
8444
|
# -------------------------------------------------------------------------
|
|
8440
8445
|
- name: ocp-verify-cluster
|
|
8441
|
-
image: quay.io/ibmmas/cli:11.
|
|
8446
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
8442
8447
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8443
8448
|
command:
|
|
8444
8449
|
- /opt/app-root/src/run-role.sh
|
|
@@ -8480,7 +8485,7 @@ spec:
|
|
|
8480
8485
|
# Verify Catalogs
|
|
8481
8486
|
# -------------------------------------------------------------------------
|
|
8482
8487
|
- name: ocp-verify-catalogs
|
|
8483
|
-
image: quay.io/ibmmas/cli:11.
|
|
8488
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
8484
8489
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8485
8490
|
command:
|
|
8486
8491
|
- /opt/app-root/src/run-role.sh
|
|
@@ -8522,7 +8527,7 @@ spec:
|
|
|
8522
8527
|
# Verify Subscriptions
|
|
8523
8528
|
# -------------------------------------------------------------------------
|
|
8524
8529
|
- name: ocp-verify-subscriptions
|
|
8525
|
-
image: quay.io/ibmmas/cli:11.
|
|
8530
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
8526
8531
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8527
8532
|
command:
|
|
8528
8533
|
- /opt/app-root/src/run-role.sh
|
|
@@ -8564,7 +8569,7 @@ spec:
|
|
|
8564
8569
|
# Verify Workloads
|
|
8565
8570
|
# -------------------------------------------------------------------------
|
|
8566
8571
|
- name: ocp-verify-workloads
|
|
8567
|
-
image: quay.io/ibmmas/cli:11.
|
|
8572
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
8568
8573
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8569
8574
|
command:
|
|
8570
8575
|
- /opt/app-root/src/run-role.sh
|
|
@@ -8606,7 +8611,7 @@ spec:
|
|
|
8606
8611
|
# Verify Catalogs - Ingress TLS
|
|
8607
8612
|
# -------------------------------------------------------------------------
|
|
8608
8613
|
- name: ocp-verify-ingress
|
|
8609
|
-
image: quay.io/ibmmas/cli:11.
|
|
8614
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
8610
8615
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8611
8616
|
command:
|
|
8612
8617
|
- /opt/app-root/src/run-role.sh
|
|
@@ -8732,7 +8737,7 @@ spec:
|
|
|
8732
8737
|
command:
|
|
8733
8738
|
- /opt/app-root/src/run-role.sh
|
|
8734
8739
|
- ocp_verify
|
|
8735
|
-
image: quay.io/ibmmas/cli:11.
|
|
8740
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
8736
8741
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8737
8742
|
workingDir: /workspace/configs
|
|
8738
8743
|
# --------------------------------------------------------------------------------
|
|
@@ -8800,7 +8805,7 @@ spec:
|
|
|
8800
8805
|
command:
|
|
8801
8806
|
- /opt/app-root/src/run-role.sh
|
|
8802
8807
|
- ocs
|
|
8803
|
-
image: quay.io/ibmmas/cli:11.
|
|
8808
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
8804
8809
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8805
8810
|
workingDir: /workspace/configs
|
|
8806
8811
|
|
|
@@ -8981,7 +8986,7 @@ spec:
|
|
|
8981
8986
|
command:
|
|
8982
8987
|
- /opt/app-root/src/run-role.sh
|
|
8983
8988
|
- sls
|
|
8984
|
-
image: quay.io/ibmmas/cli:11.
|
|
8989
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
8985
8990
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8986
8991
|
workingDir: /workspace/configs
|
|
8987
8992
|
|
|
@@ -9356,12 +9361,12 @@ spec:
|
|
|
9356
9361
|
command:
|
|
9357
9362
|
- /opt/app-root/src/run-role.sh
|
|
9358
9363
|
- suite_app_config
|
|
9359
|
-
image: quay.io/ibmmas/cli:11.
|
|
9364
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
9360
9365
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9361
9366
|
|
|
9362
9367
|
# If configmap/approval-app-cfg-$(params.mas_app_id) exists then set CONFIGMAP_KEY=pending and wait for it to be changed to "approved"
|
|
9363
9368
|
- name: app-cfg-post-verify
|
|
9364
|
-
image: quay.io/ibmmas/cli:11.
|
|
9369
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
9365
9370
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9366
9371
|
command:
|
|
9367
9372
|
- /opt/app-root/src/wait-for-configmap.sh
|
|
@@ -9562,7 +9567,7 @@ spec:
|
|
|
9562
9567
|
command:
|
|
9563
9568
|
- /opt/app-root/src/run-role.sh
|
|
9564
9569
|
- suite_app_install
|
|
9565
|
-
image: quay.io/ibmmas/cli:11.
|
|
9570
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
9566
9571
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9567
9572
|
|
|
9568
9573
|
workspaces:
|
|
@@ -9651,7 +9656,7 @@ spec:
|
|
|
9651
9656
|
command:
|
|
9652
9657
|
- /opt/app-root/src/run-role.sh
|
|
9653
9658
|
- suite_app_rollback
|
|
9654
|
-
image: quay.io/ibmmas/cli:11.
|
|
9659
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
9655
9660
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9656
9661
|
# --------------------------------------------------------------------------------
|
|
9657
9662
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-app-uninstall.yaml
|
|
@@ -9714,7 +9719,7 @@ spec:
|
|
|
9714
9719
|
command:
|
|
9715
9720
|
- /opt/app-root/src/run-role.sh
|
|
9716
9721
|
- suite_app_uninstall
|
|
9717
|
-
image: quay.io/ibmmas/cli:11.
|
|
9722
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
9718
9723
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9719
9724
|
# --------------------------------------------------------------------------------
|
|
9720
9725
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-app-upgrade.yaml
|
|
@@ -9789,7 +9794,7 @@ spec:
|
|
|
9789
9794
|
command:
|
|
9790
9795
|
- /opt/app-root/src/run-role.sh
|
|
9791
9796
|
- suite_app_upgrade
|
|
9792
|
-
image: quay.io/ibmmas/cli:11.
|
|
9797
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
9793
9798
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9794
9799
|
# --------------------------------------------------------------------------------
|
|
9795
9800
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-app-verify.yaml
|
|
@@ -9890,7 +9895,7 @@ spec:
|
|
|
9890
9895
|
command:
|
|
9891
9896
|
- /opt/app-root/src/run-role.sh
|
|
9892
9897
|
- suite_app_verify
|
|
9893
|
-
image: quay.io/ibmmas/cli:11.
|
|
9898
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
9894
9899
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9895
9900
|
# --------------------------------------------------------------------------------
|
|
9896
9901
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-certs.yaml
|
|
@@ -10033,7 +10038,7 @@ spec:
|
|
|
10033
10038
|
command:
|
|
10034
10039
|
- /opt/app-root/src/run-role.sh
|
|
10035
10040
|
- suite_certs
|
|
10036
|
-
image: quay.io/ibmmas/cli:11.
|
|
10041
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
10037
10042
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10038
10043
|
|
|
10039
10044
|
workspaces:
|
|
@@ -10100,7 +10105,7 @@ spec:
|
|
|
10100
10105
|
command:
|
|
10101
10106
|
- /opt/app-root/src/run-role.sh
|
|
10102
10107
|
- suite_config
|
|
10103
|
-
image: quay.io/ibmmas/cli:11.
|
|
10108
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
10104
10109
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10105
10110
|
workingDir: /workspace/configs
|
|
10106
10111
|
|
|
@@ -10171,7 +10176,7 @@ spec:
|
|
|
10171
10176
|
command:
|
|
10172
10177
|
- /opt/app-root/src/run-role.sh
|
|
10173
10178
|
- suite_db2_setup_for_manage
|
|
10174
|
-
image: quay.io/ibmmas/cli:11.
|
|
10179
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
10175
10180
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10176
10181
|
# --------------------------------------------------------------------------------
|
|
10177
10182
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-dns.yaml
|
|
@@ -10361,7 +10366,7 @@ spec:
|
|
|
10361
10366
|
command:
|
|
10362
10367
|
- /opt/app-root/src/run-role.sh
|
|
10363
10368
|
- suite_dns
|
|
10364
|
-
image: quay.io/ibmmas/cli:11.
|
|
10369
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
10365
10370
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10366
10371
|
# --------------------------------------------------------------------------------
|
|
10367
10372
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-install.yaml
|
|
@@ -10610,7 +10615,7 @@ spec:
|
|
|
10610
10615
|
command:
|
|
10611
10616
|
- /opt/app-root/src/run-role.sh
|
|
10612
10617
|
- suite_install
|
|
10613
|
-
image: quay.io/ibmmas/cli:11.
|
|
10618
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
10614
10619
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10615
10620
|
workingDir: /workspace/configs
|
|
10616
10621
|
|
|
@@ -10698,7 +10703,7 @@ spec:
|
|
|
10698
10703
|
command:
|
|
10699
10704
|
- /opt/app-root/src/run-role.sh
|
|
10700
10705
|
- suite_rollback
|
|
10701
|
-
image: quay.io/ibmmas/cli:11.
|
|
10706
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
10702
10707
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10703
10708
|
# --------------------------------------------------------------------------------
|
|
10704
10709
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-uninstall.yaml
|
|
@@ -10763,7 +10768,7 @@ spec:
|
|
|
10763
10768
|
command:
|
|
10764
10769
|
- /opt/app-root/src/run-role.sh
|
|
10765
10770
|
- suite_uninstall
|
|
10766
|
-
image: quay.io/ibmmas/cli:11.
|
|
10771
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
10767
10772
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10768
10773
|
# --------------------------------------------------------------------------------
|
|
10769
10774
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-upgrade.yaml
|
|
@@ -10833,7 +10838,7 @@ spec:
|
|
|
10833
10838
|
command:
|
|
10834
10839
|
- /opt/app-root/src/run-role.sh
|
|
10835
10840
|
- suite_upgrade
|
|
10836
|
-
image: quay.io/ibmmas/cli:11.
|
|
10841
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
10837
10842
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10838
10843
|
# --------------------------------------------------------------------------------
|
|
10839
10844
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-verify.yaml
|
|
@@ -10895,12 +10900,12 @@ spec:
|
|
|
10895
10900
|
command:
|
|
10896
10901
|
- /opt/app-root/src/run-role.sh
|
|
10897
10902
|
- suite_verify
|
|
10898
|
-
image: quay.io/ibmmas/cli:11.
|
|
10903
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
10899
10904
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10900
10905
|
|
|
10901
10906
|
# If configmap/approval-suite-verify exists then set CONFIGMAP_KEY=pending and wait for it to be changed to "approved"
|
|
10902
10907
|
- name: suite-post-verify
|
|
10903
|
-
image: quay.io/ibmmas/cli:11.
|
|
10908
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
10904
10909
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10905
10910
|
command:
|
|
10906
10911
|
- /opt/app-root/src/wait-for-configmap.sh
|
|
@@ -11029,7 +11034,7 @@ spec:
|
|
|
11029
11034
|
command:
|
|
11030
11035
|
- /opt/app-root/src/run-role.sh
|
|
11031
11036
|
- turbonomic
|
|
11032
|
-
image: quay.io/ibmmas/cli:11.
|
|
11037
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
11033
11038
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11034
11039
|
# --------------------------------------------------------------------------------
|
|
11035
11040
|
# /home/runner/work/cli/cli/tekton/target/tasks/uds.yaml
|
|
@@ -11110,7 +11115,7 @@ spec:
|
|
|
11110
11115
|
# IBM User Data Services (UDS)
|
|
11111
11116
|
# -------------------------------------------------------------------------
|
|
11112
11117
|
- name: uds
|
|
11113
|
-
image: quay.io/ibmmas/cli:11.
|
|
11118
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
11114
11119
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11115
11120
|
workingDir: /workspace/configs
|
|
11116
11121
|
command:
|
|
@@ -11173,7 +11178,7 @@ spec:
|
|
|
11173
11178
|
# IBM Data Reporter Operator (DRO)
|
|
11174
11179
|
# -------------------------------------------------------------------------
|
|
11175
11180
|
- name: dro
|
|
11176
|
-
image: quay.io/ibmmas/cli:11.
|
|
11181
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
11177
11182
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11178
11183
|
workingDir: /workspace/configs
|
|
11179
11184
|
command:
|
|
@@ -11259,7 +11264,7 @@ spec:
|
|
|
11259
11264
|
|
|
11260
11265
|
steps:
|
|
11261
11266
|
- name: update-configmap
|
|
11262
|
-
image: quay.io/ibmmas/cli:11.
|
|
11267
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
11263
11268
|
command:
|
|
11264
11269
|
- /opt/app-root/src/update-configmap.sh
|
|
11265
11270
|
env:
|
|
@@ -11321,7 +11326,7 @@ spec:
|
|
|
11321
11326
|
|
|
11322
11327
|
steps:
|
|
11323
11328
|
- name: wait-for-configmap
|
|
11324
|
-
image: quay.io/ibmmas/cli:11.
|
|
11329
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
11325
11330
|
command:
|
|
11326
11331
|
- /opt/app-root/src/wait-for-configmap.sh
|
|
11327
11332
|
env:
|
|
@@ -11385,7 +11390,7 @@ spec:
|
|
|
11385
11390
|
|
|
11386
11391
|
steps:
|
|
11387
11392
|
- name: wait
|
|
11388
|
-
image: quay.io/ibmmas/cli:11.
|
|
11393
|
+
image: quay.io/ibmmas/cli:11.1.0
|
|
11389
11394
|
command:
|
|
11390
11395
|
- /opt/app-root/src/wait-for-tekton.sh
|
|
11391
11396
|
env:
|
|
@@ -11491,8 +11496,8 @@ spec:
|
|
|
11491
11496
|
value: $(params.pipelinerun_name)
|
|
11492
11497
|
- name: delay
|
|
11493
11498
|
value: 120 # seconds between checking the status of the pipelinerun
|
|
11494
|
-
- name:
|
|
11495
|
-
value:
|
|
11499
|
+
- name: max_retries
|
|
11500
|
+
value: 120 # attempts before giving up
|
|
11496
11501
|
- name: ignore_failure
|
|
11497
11502
|
value: $(params.ignore_failure) # fails and exit once the first failure is detected
|
|
11498
11503
|
|
|
@@ -11811,8 +11816,8 @@ spec:
|
|
|
11811
11816
|
value: $(params.pipelinerun_name)
|
|
11812
11817
|
- name: delay
|
|
11813
11818
|
value: 120 # seconds between checking the status of the pipelinerun
|
|
11814
|
-
- name:
|
|
11815
|
-
value:
|
|
11819
|
+
- name: max_retries
|
|
11820
|
+
value: 120 # attempts before giving up
|
|
11816
11821
|
- name: ignore_failure
|
|
11817
11822
|
value: $(params.ignore_failure) # fails and exit once the first failure is detected
|
|
11818
11823
|
- name: gitops-deprovision-mongo
|
|
@@ -13165,6 +13170,10 @@ spec:
|
|
|
13165
13170
|
type: string
|
|
13166
13171
|
default: "false"
|
|
13167
13172
|
|
|
13173
|
+
- name: run_sanity_test
|
|
13174
|
+
type: string
|
|
13175
|
+
default: "false"
|
|
13176
|
+
|
|
13168
13177
|
tasks:
|
|
13169
13178
|
# 2. Kafka
|
|
13170
13179
|
# -------------------------------------------------------------------------
|
|
@@ -13739,6 +13748,8 @@ spec:
|
|
|
13739
13748
|
value: $(params.mas_app_kind_iot)
|
|
13740
13749
|
- name: ingress
|
|
13741
13750
|
value: $(params.ingress)
|
|
13751
|
+
- name: run_sanity_test
|
|
13752
|
+
value: $(params.run_sanity_test)
|
|
13742
13753
|
taskRef:
|
|
13743
13754
|
name: gitops-suite-app-config
|
|
13744
13755
|
kind: Task
|
|
@@ -13896,6 +13907,8 @@ spec:
|
|
|
13896
13907
|
value: $(params.mas_manual_certs_yaml)
|
|
13897
13908
|
- name: ingress
|
|
13898
13909
|
value: $(params.ingress)
|
|
13910
|
+
- name: run_sanity_test
|
|
13911
|
+
value: $(params.run_sanity_test)
|
|
13899
13912
|
taskRef:
|
|
13900
13913
|
name: gitops-suite-app-config
|
|
13901
13914
|
kind: Task
|
|
@@ -14049,6 +14062,8 @@ spec:
|
|
|
14049
14062
|
value: $(params.mas_app_kind_monitor)
|
|
14050
14063
|
- name: ingress
|
|
14051
14064
|
value: $(params.ingress)
|
|
14065
|
+
- name: run_sanity_test
|
|
14066
|
+
value: $(params.run_sanity_test)
|
|
14052
14067
|
taskRef:
|
|
14053
14068
|
name: gitops-suite-app-config
|
|
14054
14069
|
kind: Task
|
|
@@ -14201,6 +14216,8 @@ spec:
|
|
|
14201
14216
|
value: $(params.mas_app_kind_visualinspection)
|
|
14202
14217
|
- name: ingress
|
|
14203
14218
|
value: $(params.ingress)
|
|
14219
|
+
- name: run_sanity_test
|
|
14220
|
+
value: $(params.run_sanity_test)
|
|
14204
14221
|
taskRef:
|
|
14205
14222
|
name: gitops-suite-app-config
|
|
14206
14223
|
kind: Task
|
|
@@ -14463,6 +14480,8 @@ spec:
|
|
|
14463
14480
|
value: $(params.mas_app_kind_assist)
|
|
14464
14481
|
- name: ingress
|
|
14465
14482
|
value: $(params.ingress)
|
|
14483
|
+
- name: run_sanity_test
|
|
14484
|
+
value: $(params.run_sanity_test)
|
|
14466
14485
|
taskRef:
|
|
14467
14486
|
name: gitops-suite-app-config
|
|
14468
14487
|
kind: Task
|
|
@@ -14615,6 +14634,8 @@ spec:
|
|
|
14615
14634
|
value: $(params.mas_app_kind_optimizer)
|
|
14616
14635
|
- name: ingress
|
|
14617
14636
|
value: $(params.ingress)
|
|
14637
|
+
- name: run_sanity_test
|
|
14638
|
+
value: $(params.run_sanity_test)
|
|
14618
14639
|
taskRef:
|
|
14619
14640
|
name: gitops-suite-app-config
|
|
14620
14641
|
kind: Task
|
|
@@ -14783,6 +14804,8 @@ spec:
|
|
|
14783
14804
|
value: $(params.mas_app_kind_predict)
|
|
14784
14805
|
- name: ingress
|
|
14785
14806
|
value: $(params.ingress)
|
|
14807
|
+
- name: run_sanity_test
|
|
14808
|
+
value: $(params.run_sanity_test)
|
|
14786
14809
|
taskRef:
|
|
14787
14810
|
name: gitops-suite-app-config
|
|
14788
14811
|
kind: Task
|
|
@@ -16486,8 +16509,8 @@ spec:
|
|
|
16486
16509
|
value: $(params.pipelinerun_name)
|
|
16487
16510
|
- name: delay
|
|
16488
16511
|
value: 120 # seconds between checking the status of the pipelinerun
|
|
16489
|
-
- name:
|
|
16490
|
-
value:
|
|
16512
|
+
- name: max_retries
|
|
16513
|
+
value: 120 # attempts before giving up
|
|
16491
16514
|
- name: ignore_failure
|
|
16492
16515
|
value: $(params.ignore_failure) # fails and exit once the first failure is detected
|
|
16493
16516
|
- name: gitops-mongo
|
|
@@ -16740,6 +16763,8 @@ spec:
|
|
|
16740
16763
|
|
|
16741
16764
|
- name: mas_workspace_id
|
|
16742
16765
|
type: string
|
|
16766
|
+
- name: mas_channel
|
|
16767
|
+
type: string
|
|
16743
16768
|
|
|
16744
16769
|
- name: launchfvt_core
|
|
16745
16770
|
type: string
|
|
@@ -16888,6 +16913,8 @@ spec:
|
|
|
16888
16913
|
|
|
16889
16914
|
- name: mas_workspace_id
|
|
16890
16915
|
value: $(params.mas_workspace_id)
|
|
16916
|
+
- name: mas_channel
|
|
16917
|
+
value: $(params.mas_channel)
|
|
16891
16918
|
|
|
16892
16919
|
- name: launchfvt_core
|
|
16893
16920
|
value: $(params.launchfvt_core)
|
|
@@ -17063,8 +17090,8 @@ spec:
|
|
|
17063
17090
|
value: $(params.pipelinerun_name)
|
|
17064
17091
|
- name: delay
|
|
17065
17092
|
value: 120 # seconds between checking the status of the pipelinerun
|
|
17066
|
-
- name:
|
|
17067
|
-
value:
|
|
17093
|
+
- name: max_retries
|
|
17094
|
+
value: 120 # attempts before giving up
|
|
17068
17095
|
- name: ignore_failure
|
|
17069
17096
|
value: $(params.ignore_failure) # fails and exit once the first failure is detected
|
|
17070
17097
|
- name: gitops-mas-initiator
|
|
@@ -18963,7 +18990,7 @@ spec:
|
|
|
18963
18990
|
operator: in
|
|
18964
18991
|
values: ["install"]
|
|
18965
18992
|
runAfter:
|
|
18966
|
-
-
|
|
18993
|
+
- ibm-catalogs
|
|
18967
18994
|
|
|
18968
18995
|
# 1.4 Configure ECK
|
|
18969
18996
|
- name: eck
|
|
@@ -21217,8 +21244,8 @@ spec:
|
|
|
21217
21244
|
value: $(params.pipelinerun_name)
|
|
21218
21245
|
- name: delay
|
|
21219
21246
|
value: 120 # seconds between checking the status of the pipelinerun
|
|
21220
|
-
- name:
|
|
21221
|
-
value:
|
|
21247
|
+
- name: max_retries
|
|
21248
|
+
value: 120 # attempts before giving up
|
|
21222
21249
|
- name: ignore_failure
|
|
21223
21250
|
value: $(params.ignore_failure) # fails and exit once the first failure is detected
|
|
21224
21251
|
- name: gitops-rosa
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
mas/cli/__init__.py,sha256=
|
|
2
|
-
mas/cli/cli.py,sha256=
|
|
1
|
+
mas/cli/__init__.py,sha256=e0sv_uDMXDNA0XgKp1c0wRXRVh-sw2_A4Sn2tH6eXKA,526
|
|
2
|
+
mas/cli/cli.py,sha256=CeUIMgZYo4MAbeXUcCgE1HKXpB74mJ_r93R2Mvnmapk,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=HDWGxBYcw9G6_-02lq1JfHNwZZ0OPXPX71z0XSlaOH8,55958
|
|
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=6IlNQv_QsK0E7IvM1EwUU1-UnkOzz9t90PLfFG8K54Q,711683
|
|
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
|
|
@@ -95,8 +95,8 @@ mas/cli/update/argParser.py,sha256=Xm0qXmMrCZH-ikVYlKVlp7g0cbwCavXDwtwRKZ_t8vQ,3
|
|
|
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.1.0.data/scripts/mas-cli,sha256=sEPYV6KUzcq4ukiTM4tMLsYKv-d9Ms0aJI9Uhjg_G9Y,3436
|
|
99
|
+
mas_cli-11.1.0.dist-info/METADATA,sha256=iVccaKUyZXHblvmwAminrN087ksTAd_1YvcVtr8C7z0,2076
|
|
100
|
+
mas_cli-11.1.0.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
101
|
+
mas_cli-11.1.0.dist-info/top_level.txt,sha256=_Hlsp7pvMvyV14LFg-vk1hULq30j61EILnnxMFIhhc8,4
|
|
102
|
+
mas_cli-11.1.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|