mas-cli 10.7.2__py3-none-any.whl → 10.8.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 +12 -1
- mas/cli/install/argParser.py +8 -0
- mas/cli/install/summarizer.py +3 -0
- mas/cli/templates/ibm-mas-tekton.yaml +117 -99
- mas/cli/update/app.py +2 -2
- {mas_cli-10.7.2.dist-info → mas_cli-10.8.0.dist-info}/METADATA +1 -1
- {mas_cli-10.7.2.dist-info → mas_cli-10.8.0.dist-info}/RECORD +11 -11
- {mas_cli-10.7.2.dist-info → mas_cli-10.8.0.dist-info}/WHEEL +1 -1
- {mas_cli-10.7.2.data → mas_cli-10.8.0.data}/scripts/mas-cli +0 -0
- {mas_cli-10.7.2.dist-info → mas_cli-10.8.0.dist-info}/top_level.txt +0 -0
mas/cli/__init__.py
CHANGED
mas/cli/install/app.py
CHANGED
|
@@ -221,6 +221,14 @@ class InstallApp(BaseApp, InstallSettingsMixin, InstallSummarizerMixin, ConfigGe
|
|
|
221
221
|
self.yesOrNo("Disable LDAP cookie", "disable_ldap_cookie")
|
|
222
222
|
self.yesOrNo("Allow custom cache key", "allow_custom_cache_key")
|
|
223
223
|
|
|
224
|
+
def configGuidedTour(self):
|
|
225
|
+
self.printH1("Enable Guided Tour")
|
|
226
|
+
self.printDescription([
|
|
227
|
+
"By default, Maximo Application Suite is configured with guided tour, you can disable this if it not required"
|
|
228
|
+
])
|
|
229
|
+
if not self.yesOrNo("Enable Guided Tour"):
|
|
230
|
+
self.setParam("mas_enable_walkme","false")
|
|
231
|
+
|
|
224
232
|
def configMAS(self):
|
|
225
233
|
self.printH1("Configure MAS Instance")
|
|
226
234
|
self.printDescription([
|
|
@@ -250,6 +258,7 @@ class InstallApp(BaseApp, InstallSettingsMixin, InstallSummarizerMixin, ConfigGe
|
|
|
250
258
|
self.configCATrust()
|
|
251
259
|
self.configDNSAndCerts()
|
|
252
260
|
self.configSSOProperties()
|
|
261
|
+
self.configGuidedTour()
|
|
253
262
|
|
|
254
263
|
def configCATrust(self) -> None:
|
|
255
264
|
self.printH1("Certificate Authority Trust")
|
|
@@ -727,7 +736,9 @@ class InstallApp(BaseApp, InstallSettingsMixin, InstallSummarizerMixin, ConfigGe
|
|
|
727
736
|
"artifactory_token",
|
|
728
737
|
# TODO: The way arcgis has been implemented needs to be fixed
|
|
729
738
|
"install_arcgis",
|
|
730
|
-
"mas_arcgis_channel"
|
|
739
|
+
"mas_arcgis_channel",
|
|
740
|
+
# Guided Tour
|
|
741
|
+
"mas_enable_walkme"
|
|
731
742
|
]
|
|
732
743
|
|
|
733
744
|
for key, value in vars(self.args).items():
|
mas/cli/install/argParser.py
CHANGED
|
@@ -148,6 +148,14 @@ masAdvancedArgGroup.add_argument(
|
|
|
148
148
|
required=False,
|
|
149
149
|
help="Path to directory containing the certificates to be applied"
|
|
150
150
|
)
|
|
151
|
+
masAdvancedArgGroup.add_argument(
|
|
152
|
+
"--disable-walkme",
|
|
153
|
+
dest="mas_enable_walkme",
|
|
154
|
+
required=False,
|
|
155
|
+
help="Disable MAS guided tour",
|
|
156
|
+
action="store_const",
|
|
157
|
+
const="false"
|
|
158
|
+
)
|
|
151
159
|
|
|
152
160
|
# Storage
|
|
153
161
|
# -----------------------------------------------------------------------------
|
mas/cli/install/summarizer.py
CHANGED
|
@@ -81,6 +81,9 @@ class InstallSummarizerMixin():
|
|
|
81
81
|
print()
|
|
82
82
|
self.printSummary("Manual Certificates", "Not Configured")
|
|
83
83
|
|
|
84
|
+
print()
|
|
85
|
+
self.printParamSummary("Enable Guided Tour", "mas_enable_walkme")
|
|
86
|
+
|
|
84
87
|
print()
|
|
85
88
|
self.printParamSummary("Catalog Version", "mas_catalog_version")
|
|
86
89
|
self.printParamSummary("Subscription Channel", "mas_channel")
|
|
@@ -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.8.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.8.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.8.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.8.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.8.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.8.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.8.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.8.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.8.0
|
|
1143
1143
|
imagePullPolicy: $(params.image_pull_policy)
|
|
1144
1144
|
workingDir: /workspace/configs
|
|
1145
1145
|
|
|
@@ -1168,6 +1168,10 @@ spec:
|
|
|
1168
1168
|
default: ""
|
|
1169
1169
|
|
|
1170
1170
|
|
|
1171
|
+
- name: eck_action
|
|
1172
|
+
type: string
|
|
1173
|
+
default: ""
|
|
1174
|
+
|
|
1171
1175
|
# Internal Stack
|
|
1172
1176
|
- name: eck_enable_elasticsearch
|
|
1173
1177
|
type: string
|
|
@@ -1220,6 +1224,9 @@ spec:
|
|
|
1220
1224
|
value: $(params.devops_suite_name)
|
|
1221
1225
|
|
|
1222
1226
|
|
|
1227
|
+
- name: ECK_ACTION
|
|
1228
|
+
value: $(params.eck_action)
|
|
1229
|
+
|
|
1223
1230
|
# Internal Stack
|
|
1224
1231
|
- name: ECK_ENABLE_ELASTICSEARCH
|
|
1225
1232
|
value: $(params.eck_enable_elasticsearch)
|
|
@@ -1242,7 +1249,7 @@ spec:
|
|
|
1242
1249
|
command:
|
|
1243
1250
|
- /opt/app-root/src/run-role.sh
|
|
1244
1251
|
- eck
|
|
1245
|
-
image: quay.io/ibmmas/cli:10.
|
|
1252
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
1246
1253
|
imagePullPolicy: $(params.image_pull_policy)
|
|
1247
1254
|
# --------------------------------------------------------------------------------
|
|
1248
1255
|
# /home/runner/work/cli/cli/tekton/target/tasks/gencfg-workspace.yaml
|
|
@@ -1331,7 +1338,7 @@ spec:
|
|
|
1331
1338
|
command:
|
|
1332
1339
|
- /opt/app-root/src/run-role.sh
|
|
1333
1340
|
- gencfg_workspace
|
|
1334
|
-
image: quay.io/ibmmas/cli:10.
|
|
1341
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
1335
1342
|
imagePullPolicy: $(params.image_pull_policy)
|
|
1336
1343
|
workingDir: /workspace/configs
|
|
1337
1344
|
|
|
@@ -1435,7 +1442,7 @@ spec:
|
|
|
1435
1442
|
- -c
|
|
1436
1443
|
name: gitops-bootstrap
|
|
1437
1444
|
imagePullPolicy: IfNotPresent
|
|
1438
|
-
image: quay.io/ibmmas/cli:10.
|
|
1445
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
1439
1446
|
workspaces:
|
|
1440
1447
|
- name: configs
|
|
1441
1448
|
# --------------------------------------------------------------------------------
|
|
@@ -1512,7 +1519,7 @@ spec:
|
|
|
1512
1519
|
- -c
|
|
1513
1520
|
name: gitops-cis-compliance
|
|
1514
1521
|
imagePullPolicy: IfNotPresent
|
|
1515
|
-
image: quay.io/ibmmas/cli:10.
|
|
1522
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
1516
1523
|
workspaces:
|
|
1517
1524
|
- name: configs
|
|
1518
1525
|
# --------------------------------------------------------------------------------
|
|
@@ -1696,7 +1703,7 @@ spec:
|
|
|
1696
1703
|
- -c
|
|
1697
1704
|
name: gitops-cluster
|
|
1698
1705
|
imagePullPolicy: Always
|
|
1699
|
-
image: quay.io/ibmmas/cli:10.
|
|
1706
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
1700
1707
|
workspaces:
|
|
1701
1708
|
- name: configs
|
|
1702
1709
|
# --------------------------------------------------------------------------------
|
|
@@ -1787,7 +1794,7 @@ spec:
|
|
|
1787
1794
|
- -c
|
|
1788
1795
|
name: gitops-cos
|
|
1789
1796
|
imagePullPolicy: IfNotPresent
|
|
1790
|
-
image: quay.io/ibmmas/cli:10.
|
|
1797
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
1791
1798
|
workspaces:
|
|
1792
1799
|
- name: configs
|
|
1793
1800
|
# --------------------------------------------------------------------------------
|
|
@@ -1900,7 +1907,7 @@ spec:
|
|
|
1900
1907
|
- -c
|
|
1901
1908
|
name: gitops-cp4d-service
|
|
1902
1909
|
imagePullPolicy: IfNotPresent
|
|
1903
|
-
image: quay.io/ibmmas/cli:10.
|
|
1910
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
1904
1911
|
workspaces:
|
|
1905
1912
|
- name: configs
|
|
1906
1913
|
- name: shared-gitops-configs
|
|
@@ -2009,7 +2016,7 @@ spec:
|
|
|
2009
2016
|
- -c
|
|
2010
2017
|
name: gitops-cp4d
|
|
2011
2018
|
imagePullPolicy: IfNotPresent
|
|
2012
|
-
image: quay.io/ibmmas/cli:10.
|
|
2019
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
2013
2020
|
workspaces:
|
|
2014
2021
|
- name: configs
|
|
2015
2022
|
- name: shared-gitops-configs
|
|
@@ -2261,7 +2268,7 @@ spec:
|
|
|
2261
2268
|
- -c
|
|
2262
2269
|
name: gitops-db2u-database
|
|
2263
2270
|
imagePullPolicy: Always
|
|
2264
|
-
image: quay.io/ibmmas/cli:10.
|
|
2271
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
2265
2272
|
workspaces:
|
|
2266
2273
|
- name: configs
|
|
2267
2274
|
- name: shared-gitops-configs
|
|
@@ -2354,7 +2361,7 @@ spec:
|
|
|
2354
2361
|
- -c
|
|
2355
2362
|
name: gitops-db2u
|
|
2356
2363
|
imagePullPolicy: IfNotPresent
|
|
2357
|
-
image: quay.io/ibmmas/cli:10.
|
|
2364
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
2358
2365
|
workspaces:
|
|
2359
2366
|
- name: configs
|
|
2360
2367
|
# --------------------------------------------------------------------------------
|
|
@@ -2481,7 +2488,7 @@ spec:
|
|
|
2481
2488
|
- -c
|
|
2482
2489
|
name: gitops-delete-jdbc-config
|
|
2483
2490
|
imagePullPolicy: IfNotPresent
|
|
2484
|
-
image: quay.io/ibmmas/cli:10.
|
|
2491
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
2485
2492
|
workspaces:
|
|
2486
2493
|
- name: configs
|
|
2487
2494
|
# --------------------------------------------------------------------------------
|
|
@@ -2579,7 +2586,7 @@ spec:
|
|
|
2579
2586
|
- -c
|
|
2580
2587
|
name: gitops-delete-kafka-config
|
|
2581
2588
|
imagePullPolicy: Always
|
|
2582
|
-
image: quay.io/ibmmas/cli:10.
|
|
2589
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
2583
2590
|
workspaces:
|
|
2584
2591
|
- name: configs
|
|
2585
2592
|
|
|
@@ -2671,7 +2678,7 @@ spec:
|
|
|
2671
2678
|
- -c
|
|
2672
2679
|
name: gitops-deprovision-app-config
|
|
2673
2680
|
imagePullPolicy: IfNotPresent
|
|
2674
|
-
image: quay.io/ibmmas/cli:10.
|
|
2681
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
2675
2682
|
workspaces:
|
|
2676
2683
|
- name: configs
|
|
2677
2684
|
# --------------------------------------------------------------------------------
|
|
@@ -2756,7 +2763,7 @@ spec:
|
|
|
2756
2763
|
- -c
|
|
2757
2764
|
name: gitops-deprovision-app-install
|
|
2758
2765
|
imagePullPolicy: IfNotPresent
|
|
2759
|
-
image: quay.io/ibmmas/cli:10.
|
|
2766
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
2760
2767
|
workspaces:
|
|
2761
2768
|
- name: configs
|
|
2762
2769
|
# --------------------------------------------------------------------------------
|
|
@@ -2841,7 +2848,7 @@ spec:
|
|
|
2841
2848
|
- -c
|
|
2842
2849
|
name: gitops-deprovision-cluster
|
|
2843
2850
|
imagePullPolicy: IfNotPresent
|
|
2844
|
-
image: quay.io/ibmmas/cli:10.
|
|
2851
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
2845
2852
|
workspaces:
|
|
2846
2853
|
- name: configs
|
|
2847
2854
|
# --------------------------------------------------------------------------------
|
|
@@ -2948,7 +2955,7 @@ spec:
|
|
|
2948
2955
|
- -c
|
|
2949
2956
|
name: gitops-deprovision-cos
|
|
2950
2957
|
imagePullPolicy: IfNotPresent
|
|
2951
|
-
image: quay.io/ibmmas/cli:10.
|
|
2958
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
2952
2959
|
workspaces:
|
|
2953
2960
|
- name: configs
|
|
2954
2961
|
# --------------------------------------------------------------------------------
|
|
@@ -3036,7 +3043,7 @@ spec:
|
|
|
3036
3043
|
- -c
|
|
3037
3044
|
name: gitops-deprovision-db2u-database
|
|
3038
3045
|
imagePullPolicy: IfNotPresent
|
|
3039
|
-
image: quay.io/ibmmas/cli:10.
|
|
3046
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
3040
3047
|
workspaces:
|
|
3041
3048
|
- name: configs
|
|
3042
3049
|
|
|
@@ -3119,7 +3126,7 @@ spec:
|
|
|
3119
3126
|
- -c
|
|
3120
3127
|
name: gitops-deprovision-db2u
|
|
3121
3128
|
imagePullPolicy: IfNotPresent
|
|
3122
|
-
image: quay.io/ibmmas/cli:10.
|
|
3129
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
3123
3130
|
workspaces:
|
|
3124
3131
|
- name: configs
|
|
3125
3132
|
|
|
@@ -3195,7 +3202,7 @@ spec:
|
|
|
3195
3202
|
- -c
|
|
3196
3203
|
name: gitops-deprovision-efs
|
|
3197
3204
|
imagePullPolicy: IfNotPresent
|
|
3198
|
-
image: quay.io/ibmmas/cli:10.
|
|
3205
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
3199
3206
|
workspaces:
|
|
3200
3207
|
- name: configs
|
|
3201
3208
|
|
|
@@ -3304,7 +3311,7 @@ spec:
|
|
|
3304
3311
|
- -c
|
|
3305
3312
|
name: gitops-deprovision-kafka
|
|
3306
3313
|
imagePullPolicy: IfNotPresent
|
|
3307
|
-
image: quay.io/ibmmas/cli:10.
|
|
3314
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
3308
3315
|
workspaces:
|
|
3309
3316
|
- name: configs
|
|
3310
3317
|
# --------------------------------------------------------------------------------
|
|
@@ -3406,7 +3413,7 @@ spec:
|
|
|
3406
3413
|
- -c
|
|
3407
3414
|
name: gitops-deprovision-mongo
|
|
3408
3415
|
imagePullPolicy: IfNotPresent
|
|
3409
|
-
image: quay.io/ibmmas/cli:10.
|
|
3416
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
3410
3417
|
workspaces:
|
|
3411
3418
|
- name: configs
|
|
3412
3419
|
|
|
@@ -3463,7 +3470,7 @@ spec:
|
|
|
3463
3470
|
- -c
|
|
3464
3471
|
name: gitops-deprovision-rosa
|
|
3465
3472
|
imagePullPolicy: IfNotPresent
|
|
3466
|
-
image: quay.io/ibmmas/cli:10.
|
|
3473
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
3467
3474
|
workspaces:
|
|
3468
3475
|
- name: configs
|
|
3469
3476
|
# --------------------------------------------------------------------------------
|
|
@@ -3668,7 +3675,7 @@ spec:
|
|
|
3668
3675
|
- -c
|
|
3669
3676
|
name: gitops-deprovision-suite-config
|
|
3670
3677
|
imagePullPolicy: IfNotPresent
|
|
3671
|
-
image: quay.io/ibmmas/cli:10.
|
|
3678
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
3672
3679
|
workspaces:
|
|
3673
3680
|
- name: configs
|
|
3674
3681
|
|
|
@@ -3766,7 +3773,7 @@ spec:
|
|
|
3766
3773
|
- -c
|
|
3767
3774
|
name: gitops-deprovision-suite-idp-config
|
|
3768
3775
|
imagePullPolicy: IfNotPresent
|
|
3769
|
-
image: quay.io/ibmmas/cli:10.
|
|
3776
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
3770
3777
|
workspaces:
|
|
3771
3778
|
- name: configs
|
|
3772
3779
|
# --------------------------------------------------------------------------------
|
|
@@ -3858,7 +3865,7 @@ spec:
|
|
|
3858
3865
|
- -c
|
|
3859
3866
|
name: gitops-deprovision-suite-objectstorage-config
|
|
3860
3867
|
imagePullPolicy: IfNotPresent
|
|
3861
|
-
image: quay.io/ibmmas/cli:10.
|
|
3868
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
3862
3869
|
workspaces:
|
|
3863
3870
|
- name: configs
|
|
3864
3871
|
# --------------------------------------------------------------------------------
|
|
@@ -3950,7 +3957,7 @@ spec:
|
|
|
3950
3957
|
- -c
|
|
3951
3958
|
name: gitops-deprovision-suite-smtp-config
|
|
3952
3959
|
imagePullPolicy: IfNotPresent
|
|
3953
|
-
image: quay.io/ibmmas/cli:10.
|
|
3960
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
3954
3961
|
workspaces:
|
|
3955
3962
|
- name: configs
|
|
3956
3963
|
# --------------------------------------------------------------------------------
|
|
@@ -4043,7 +4050,7 @@ spec:
|
|
|
4043
4050
|
- -c
|
|
4044
4051
|
name: gitops-deprovision-suite-watson-studio-config
|
|
4045
4052
|
imagePullPolicy: IfNotPresent
|
|
4046
|
-
image: quay.io/ibmmas/cli:10.
|
|
4053
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
4047
4054
|
workspaces:
|
|
4048
4055
|
- name: configs
|
|
4049
4056
|
# --------------------------------------------------------------------------------
|
|
@@ -4134,7 +4141,7 @@ spec:
|
|
|
4134
4141
|
- -c
|
|
4135
4142
|
name: gitops-deprovision-suite-workspace
|
|
4136
4143
|
imagePullPolicy: Always
|
|
4137
|
-
image: quay.io/ibmmas/cli:10.
|
|
4144
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
4138
4145
|
workspaces:
|
|
4139
4146
|
- name: configs
|
|
4140
4147
|
# --------------------------------------------------------------------------------
|
|
@@ -4227,7 +4234,7 @@ spec:
|
|
|
4227
4234
|
- -c
|
|
4228
4235
|
name: gitops-deprovision-suite
|
|
4229
4236
|
imagePullPolicy: IfNotPresent
|
|
4230
|
-
image: quay.io/ibmmas/cli:10.
|
|
4237
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
4231
4238
|
workspaces:
|
|
4232
4239
|
- name: configs
|
|
4233
4240
|
|
|
@@ -4330,7 +4337,7 @@ spec:
|
|
|
4330
4337
|
- -c
|
|
4331
4338
|
name: gitops-dro
|
|
4332
4339
|
imagePullPolicy: IfNotPresent
|
|
4333
|
-
image: quay.io/ibmmas/cli:10.
|
|
4340
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
4334
4341
|
workspaces:
|
|
4335
4342
|
- name: configs
|
|
4336
4343
|
# --------------------------------------------------------------------------------
|
|
@@ -4412,7 +4419,7 @@ spec:
|
|
|
4412
4419
|
- -c
|
|
4413
4420
|
name: gitops-efs
|
|
4414
4421
|
imagePullPolicy: IfNotPresent
|
|
4415
|
-
image: quay.io/ibmmas/cli:10.
|
|
4422
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
4416
4423
|
workspaces:
|
|
4417
4424
|
- name: configs
|
|
4418
4425
|
|
|
@@ -4547,7 +4554,7 @@ spec:
|
|
|
4547
4554
|
- -c
|
|
4548
4555
|
name: gitops-jdbc-config
|
|
4549
4556
|
imagePullPolicy: Always
|
|
4550
|
-
image: quay.io/ibmmas/cli:10.
|
|
4557
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
4551
4558
|
workspaces:
|
|
4552
4559
|
- name: configs
|
|
4553
4560
|
- name: shared-gitops-configs
|
|
@@ -4643,7 +4650,7 @@ spec:
|
|
|
4643
4650
|
- -c
|
|
4644
4651
|
name: gitops-kafka-config
|
|
4645
4652
|
imagePullPolicy: Always
|
|
4646
|
-
image: quay.io/ibmmas/cli:10.
|
|
4653
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
4647
4654
|
workspaces:
|
|
4648
4655
|
- name: configs
|
|
4649
4656
|
|
|
@@ -4764,7 +4771,7 @@ spec:
|
|
|
4764
4771
|
- -c
|
|
4765
4772
|
name: gitops-kafka
|
|
4766
4773
|
imagePullPolicy: IfNotPresent
|
|
4767
|
-
image: quay.io/ibmmas/cli:10.
|
|
4774
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
4768
4775
|
workspaces:
|
|
4769
4776
|
- name: configs
|
|
4770
4777
|
# --------------------------------------------------------------------------------
|
|
@@ -4815,7 +4822,7 @@ spec:
|
|
|
4815
4822
|
- -c
|
|
4816
4823
|
name: gitops-license
|
|
4817
4824
|
imagePullPolicy: Always
|
|
4818
|
-
image: quay.io/ibmmas/cli:10.
|
|
4825
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
4819
4826
|
workspaces:
|
|
4820
4827
|
- name: shared-entitlement
|
|
4821
4828
|
|
|
@@ -5272,7 +5279,7 @@ spec:
|
|
|
5272
5279
|
- -c
|
|
5273
5280
|
name: gitops-mas-fvt-preparer
|
|
5274
5281
|
imagePullPolicy: Always
|
|
5275
|
-
image: quay.io/ibmmas/cli:10.
|
|
5282
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
5276
5283
|
workspaces:
|
|
5277
5284
|
- name: configs
|
|
5278
5285
|
- name: shared-additional-configs
|
|
@@ -5676,7 +5683,7 @@ spec:
|
|
|
5676
5683
|
- -c
|
|
5677
5684
|
name: gitops-mas-initiator
|
|
5678
5685
|
imagePullPolicy: IfNotPresent
|
|
5679
|
-
image: quay.io/ibmmas/cli:10.
|
|
5686
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
5680
5687
|
workspaces:
|
|
5681
5688
|
- name: configs
|
|
5682
5689
|
# --------------------------------------------------------------------------------
|
|
@@ -5783,7 +5790,7 @@ spec:
|
|
|
5783
5790
|
- -c
|
|
5784
5791
|
name: gitops-mongo
|
|
5785
5792
|
imagePullPolicy: IfNotPresent
|
|
5786
|
-
image: quay.io/ibmmas/cli:10.
|
|
5793
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
5787
5794
|
workspaces:
|
|
5788
5795
|
- name: configs
|
|
5789
5796
|
|
|
@@ -5895,7 +5902,7 @@ spec:
|
|
|
5895
5902
|
- -c
|
|
5896
5903
|
name: gitops-nvidia-gpu
|
|
5897
5904
|
imagePullPolicy: IfNotPresent
|
|
5898
|
-
image: quay.io/ibmmas/cli:10.
|
|
5905
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
5899
5906
|
workspaces:
|
|
5900
5907
|
- name: configs
|
|
5901
5908
|
# --------------------------------------------------------------------------------
|
|
@@ -6012,7 +6019,7 @@ spec:
|
|
|
6012
6019
|
- -c
|
|
6013
6020
|
name: gitops-process-mongo-user
|
|
6014
6021
|
imagePullPolicy: IfNotPresent
|
|
6015
|
-
image: quay.io/ibmmas/cli:10.
|
|
6022
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
6016
6023
|
workspaces:
|
|
6017
6024
|
- name: configs
|
|
6018
6025
|
# --------------------------------------------------------------------------------
|
|
@@ -6068,7 +6075,7 @@ spec:
|
|
|
6068
6075
|
- -c
|
|
6069
6076
|
name: gitops-rosa
|
|
6070
6077
|
imagePullPolicy: IfNotPresent
|
|
6071
|
-
image: quay.io/ibmmas/cli:10.
|
|
6078
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
6072
6079
|
workspaces:
|
|
6073
6080
|
- name: configs
|
|
6074
6081
|
# --------------------------------------------------------------------------------
|
|
@@ -6240,7 +6247,7 @@ spec:
|
|
|
6240
6247
|
- -c
|
|
6241
6248
|
name: gitops-suite-app-config
|
|
6242
6249
|
imagePullPolicy: IfNotPresent
|
|
6243
|
-
image: quay.io/ibmmas/cli:10.
|
|
6250
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
6244
6251
|
workspaces:
|
|
6245
6252
|
- name: configs
|
|
6246
6253
|
- name: shared-gitops-configs
|
|
@@ -6393,7 +6400,7 @@ spec:
|
|
|
6393
6400
|
- -c
|
|
6394
6401
|
name: gitops-suite-app-install
|
|
6395
6402
|
imagePullPolicy: Always
|
|
6396
|
-
image: quay.io/ibmmas/cli:10.
|
|
6403
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
6397
6404
|
workspaces:
|
|
6398
6405
|
- name: configs
|
|
6399
6406
|
- name: shared-gitops-configs
|
|
@@ -6499,7 +6506,7 @@ spec:
|
|
|
6499
6506
|
- -c
|
|
6500
6507
|
name: gitops-suite-certs
|
|
6501
6508
|
imagePullPolicy: IfNotPresent
|
|
6502
|
-
image: quay.io/ibmmas/cli:10.
|
|
6509
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
6503
6510
|
workspaces:
|
|
6504
6511
|
- name: configs
|
|
6505
6512
|
- name: certificates
|
|
@@ -6659,7 +6666,7 @@ spec:
|
|
|
6659
6666
|
- -c
|
|
6660
6667
|
name: gitops-suite-config
|
|
6661
6668
|
imagePullPolicy: IfNotPresent
|
|
6662
|
-
image: quay.io/ibmmas/cli:10.
|
|
6669
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
6663
6670
|
workspaces:
|
|
6664
6671
|
- name: configs
|
|
6665
6672
|
- name: shared-additional-configs
|
|
@@ -6759,7 +6766,7 @@ spec:
|
|
|
6759
6766
|
- -c
|
|
6760
6767
|
name: gitops-suite-dns
|
|
6761
6768
|
imagePullPolicy: IfNotPresent
|
|
6762
|
-
image: quay.io/ibmmas/cli:10.
|
|
6769
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
6763
6770
|
workspaces:
|
|
6764
6771
|
- name: configs
|
|
6765
6772
|
|
|
@@ -6883,7 +6890,7 @@ spec:
|
|
|
6883
6890
|
- -c
|
|
6884
6891
|
name: gitops-suite-idp-config
|
|
6885
6892
|
imagePullPolicy: IfNotPresent
|
|
6886
|
-
image: quay.io/ibmmas/cli:10.
|
|
6893
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
6887
6894
|
workspaces:
|
|
6888
6895
|
- name: configs
|
|
6889
6896
|
- name: shared-additional-configs
|
|
@@ -6984,7 +6991,7 @@ spec:
|
|
|
6984
6991
|
- -c
|
|
6985
6992
|
name: gitops-suite-objectstorage-config
|
|
6986
6993
|
imagePullPolicy: IfNotPresent
|
|
6987
|
-
image: quay.io/ibmmas/cli:10.
|
|
6994
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
6988
6995
|
workspaces:
|
|
6989
6996
|
- name: configs
|
|
6990
6997
|
- name: shared-gitops-configs
|
|
@@ -7128,7 +7135,7 @@ spec:
|
|
|
7128
7135
|
- -c
|
|
7129
7136
|
name: gitops-suite-smtp-config
|
|
7130
7137
|
imagePullPolicy: IfNotPresent
|
|
7131
|
-
image: quay.io/ibmmas/cli:10.
|
|
7138
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
7132
7139
|
workspaces:
|
|
7133
7140
|
- name: configs
|
|
7134
7141
|
|
|
@@ -7237,7 +7244,7 @@ spec:
|
|
|
7237
7244
|
- -c
|
|
7238
7245
|
name: gitops-suite-watson-studio-config
|
|
7239
7246
|
imagePullPolicy: IfNotPresent
|
|
7240
|
-
image: quay.io/ibmmas/cli:10.
|
|
7247
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
7241
7248
|
workspaces:
|
|
7242
7249
|
- name: configs
|
|
7243
7250
|
- name: shared-gitops-configs
|
|
@@ -7334,7 +7341,7 @@ spec:
|
|
|
7334
7341
|
- -c
|
|
7335
7342
|
name: gitops-suite-workspace
|
|
7336
7343
|
imagePullPolicy: IfNotPresent
|
|
7337
|
-
image: quay.io/ibmmas/cli:10.
|
|
7344
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
7338
7345
|
workspaces:
|
|
7339
7346
|
- name: configs
|
|
7340
7347
|
# --------------------------------------------------------------------------------
|
|
@@ -7604,7 +7611,7 @@ spec:
|
|
|
7604
7611
|
- -c
|
|
7605
7612
|
name: gitops-suite
|
|
7606
7613
|
imagePullPolicy: IfNotPresent
|
|
7607
|
-
image: quay.io/ibmmas/cli:10.
|
|
7614
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
7608
7615
|
workspaces:
|
|
7609
7616
|
- name: configs
|
|
7610
7617
|
- name: shared-gitops-configs
|
|
@@ -7654,7 +7661,7 @@ spec:
|
|
|
7654
7661
|
|
|
7655
7662
|
steps:
|
|
7656
7663
|
- name: grafana
|
|
7657
|
-
image: quay.io/ibmmas/cli:10.
|
|
7664
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
7658
7665
|
imagePullPolicy: $(params.image_pull_policy)
|
|
7659
7666
|
command:
|
|
7660
7667
|
- /opt/app-root/src/run-role.sh
|
|
@@ -7788,7 +7795,7 @@ spec:
|
|
|
7788
7795
|
command:
|
|
7789
7796
|
- /opt/app-root/src/run-role.sh
|
|
7790
7797
|
- ibm_catalogs
|
|
7791
|
-
image: quay.io/ibmmas/cli:10.
|
|
7798
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
7792
7799
|
imagePullPolicy: $(params.image_pull_policy)
|
|
7793
7800
|
workingDir: /workspace/configs
|
|
7794
7801
|
# --------------------------------------------------------------------------------
|
|
@@ -8030,7 +8037,7 @@ spec:
|
|
|
8030
8037
|
command:
|
|
8031
8038
|
- /opt/app-root/src/run-role.sh
|
|
8032
8039
|
- kafka
|
|
8033
|
-
image: quay.io/ibmmas/cli:10.
|
|
8040
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
8034
8041
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8035
8042
|
workingDir: /workspace/configs
|
|
8036
8043
|
|
|
@@ -8207,7 +8214,7 @@ spec:
|
|
|
8207
8214
|
command:
|
|
8208
8215
|
- /opt/app-root/src/run-role.sh
|
|
8209
8216
|
- mongodb
|
|
8210
|
-
image: quay.io/ibmmas/cli:10.
|
|
8217
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
8211
8218
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8212
8219
|
workingDir: /workspace/configs
|
|
8213
8220
|
|
|
@@ -8250,7 +8257,7 @@ spec:
|
|
|
8250
8257
|
- $(params.base_output_dir)
|
|
8251
8258
|
- --extra-namespaces
|
|
8252
8259
|
- selenium
|
|
8253
|
-
image: quay.io/ibmmas/cli:10.
|
|
8260
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
8254
8261
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8255
8262
|
env:
|
|
8256
8263
|
- name: DEVOPS_MONGO_URI
|
|
@@ -8367,7 +8374,7 @@ spec:
|
|
|
8367
8374
|
command:
|
|
8368
8375
|
- /opt/app-root/src/run-role.sh
|
|
8369
8376
|
- nvidia_gpu
|
|
8370
|
-
image: quay.io/ibmmas/cli:10.
|
|
8377
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
8371
8378
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8372
8379
|
workingDir: /workspace/configs
|
|
8373
8380
|
|
|
@@ -8403,7 +8410,7 @@ spec:
|
|
|
8403
8410
|
# Verify Cluster
|
|
8404
8411
|
# -------------------------------------------------------------------------
|
|
8405
8412
|
- name: ocp-verify-cluster
|
|
8406
|
-
image: quay.io/ibmmas/cli:10.
|
|
8413
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
8407
8414
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8408
8415
|
command:
|
|
8409
8416
|
- /opt/app-root/src/run-role.sh
|
|
@@ -8445,7 +8452,7 @@ spec:
|
|
|
8445
8452
|
# Verify Catalogs
|
|
8446
8453
|
# -------------------------------------------------------------------------
|
|
8447
8454
|
- name: ocp-verify-catalogs
|
|
8448
|
-
image: quay.io/ibmmas/cli:10.
|
|
8455
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
8449
8456
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8450
8457
|
command:
|
|
8451
8458
|
- /opt/app-root/src/run-role.sh
|
|
@@ -8487,7 +8494,7 @@ spec:
|
|
|
8487
8494
|
# Verify Subscriptions
|
|
8488
8495
|
# -------------------------------------------------------------------------
|
|
8489
8496
|
- name: ocp-verify-subscriptions
|
|
8490
|
-
image: quay.io/ibmmas/cli:10.
|
|
8497
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
8491
8498
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8492
8499
|
command:
|
|
8493
8500
|
- /opt/app-root/src/run-role.sh
|
|
@@ -8529,7 +8536,7 @@ spec:
|
|
|
8529
8536
|
# Verify Workloads
|
|
8530
8537
|
# -------------------------------------------------------------------------
|
|
8531
8538
|
- name: ocp-verify-workloads
|
|
8532
|
-
image: quay.io/ibmmas/cli:10.
|
|
8539
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
8533
8540
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8534
8541
|
command:
|
|
8535
8542
|
- /opt/app-root/src/run-role.sh
|
|
@@ -8571,7 +8578,7 @@ spec:
|
|
|
8571
8578
|
# Verify Catalogs - Ingress TLS
|
|
8572
8579
|
# -------------------------------------------------------------------------
|
|
8573
8580
|
- name: ocp-verify-ingress
|
|
8574
|
-
image: quay.io/ibmmas/cli:10.
|
|
8581
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
8575
8582
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8576
8583
|
command:
|
|
8577
8584
|
- /opt/app-root/src/run-role.sh
|
|
@@ -8697,7 +8704,7 @@ spec:
|
|
|
8697
8704
|
command:
|
|
8698
8705
|
- /opt/app-root/src/run-role.sh
|
|
8699
8706
|
- ocp_verify
|
|
8700
|
-
image: quay.io/ibmmas/cli:10.
|
|
8707
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
8701
8708
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8702
8709
|
workingDir: /workspace/configs
|
|
8703
8710
|
# --------------------------------------------------------------------------------
|
|
@@ -8765,7 +8772,7 @@ spec:
|
|
|
8765
8772
|
command:
|
|
8766
8773
|
- /opt/app-root/src/run-role.sh
|
|
8767
8774
|
- ocs
|
|
8768
|
-
image: quay.io/ibmmas/cli:10.
|
|
8775
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
8769
8776
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8770
8777
|
workingDir: /workspace/configs
|
|
8771
8778
|
|
|
@@ -8946,7 +8953,7 @@ spec:
|
|
|
8946
8953
|
command:
|
|
8947
8954
|
- /opt/app-root/src/run-role.sh
|
|
8948
8955
|
- sls
|
|
8949
|
-
image: quay.io/ibmmas/cli:10.
|
|
8956
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
8950
8957
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8951
8958
|
workingDir: /workspace/configs
|
|
8952
8959
|
|
|
@@ -9321,12 +9328,12 @@ spec:
|
|
|
9321
9328
|
command:
|
|
9322
9329
|
- /opt/app-root/src/run-role.sh
|
|
9323
9330
|
- suite_app_config
|
|
9324
|
-
image: quay.io/ibmmas/cli:10.
|
|
9331
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
9325
9332
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9326
9333
|
|
|
9327
9334
|
# If configmap/approval-app-cfg-$(params.mas_app_id) exists then set CONFIGMAP_KEY=pending and wait for it to be changed to "approved"
|
|
9328
9335
|
- name: app-cfg-post-verify
|
|
9329
|
-
image: quay.io/ibmmas/cli:10.
|
|
9336
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
9330
9337
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9331
9338
|
command:
|
|
9332
9339
|
- /opt/app-root/src/wait-for-configmap.sh
|
|
@@ -9527,7 +9534,7 @@ spec:
|
|
|
9527
9534
|
command:
|
|
9528
9535
|
- /opt/app-root/src/run-role.sh
|
|
9529
9536
|
- suite_app_install
|
|
9530
|
-
image: quay.io/ibmmas/cli:10.
|
|
9537
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
9531
9538
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9532
9539
|
|
|
9533
9540
|
workspaces:
|
|
@@ -9616,7 +9623,7 @@ spec:
|
|
|
9616
9623
|
command:
|
|
9617
9624
|
- /opt/app-root/src/run-role.sh
|
|
9618
9625
|
- suite_app_rollback
|
|
9619
|
-
image: quay.io/ibmmas/cli:10.
|
|
9626
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
9620
9627
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9621
9628
|
# --------------------------------------------------------------------------------
|
|
9622
9629
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-app-uninstall.yaml
|
|
@@ -9679,7 +9686,7 @@ spec:
|
|
|
9679
9686
|
command:
|
|
9680
9687
|
- /opt/app-root/src/run-role.sh
|
|
9681
9688
|
- suite_app_uninstall
|
|
9682
|
-
image: quay.io/ibmmas/cli:10.
|
|
9689
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
9683
9690
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9684
9691
|
# --------------------------------------------------------------------------------
|
|
9685
9692
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-app-upgrade.yaml
|
|
@@ -9754,7 +9761,7 @@ spec:
|
|
|
9754
9761
|
command:
|
|
9755
9762
|
- /opt/app-root/src/run-role.sh
|
|
9756
9763
|
- suite_app_upgrade
|
|
9757
|
-
image: quay.io/ibmmas/cli:10.
|
|
9764
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
9758
9765
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9759
9766
|
# --------------------------------------------------------------------------------
|
|
9760
9767
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-app-verify.yaml
|
|
@@ -9855,7 +9862,7 @@ spec:
|
|
|
9855
9862
|
command:
|
|
9856
9863
|
- /opt/app-root/src/run-role.sh
|
|
9857
9864
|
- suite_app_verify
|
|
9858
|
-
image: quay.io/ibmmas/cli:10.
|
|
9865
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
9859
9866
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9860
9867
|
# --------------------------------------------------------------------------------
|
|
9861
9868
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-certs.yaml
|
|
@@ -9998,7 +10005,7 @@ spec:
|
|
|
9998
10005
|
command:
|
|
9999
10006
|
- /opt/app-root/src/run-role.sh
|
|
10000
10007
|
- suite_certs
|
|
10001
|
-
image: quay.io/ibmmas/cli:10.
|
|
10008
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
10002
10009
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10003
10010
|
|
|
10004
10011
|
workspaces:
|
|
@@ -10065,7 +10072,7 @@ spec:
|
|
|
10065
10072
|
command:
|
|
10066
10073
|
- /opt/app-root/src/run-role.sh
|
|
10067
10074
|
- suite_config
|
|
10068
|
-
image: quay.io/ibmmas/cli:10.
|
|
10075
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
10069
10076
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10070
10077
|
workingDir: /workspace/configs
|
|
10071
10078
|
|
|
@@ -10136,7 +10143,7 @@ spec:
|
|
|
10136
10143
|
command:
|
|
10137
10144
|
- /opt/app-root/src/run-role.sh
|
|
10138
10145
|
- suite_db2_setup_for_manage
|
|
10139
|
-
image: quay.io/ibmmas/cli:10.
|
|
10146
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
10140
10147
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10141
10148
|
# --------------------------------------------------------------------------------
|
|
10142
10149
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-dns.yaml
|
|
@@ -10326,7 +10333,7 @@ spec:
|
|
|
10326
10333
|
command:
|
|
10327
10334
|
- /opt/app-root/src/run-role.sh
|
|
10328
10335
|
- suite_dns
|
|
10329
|
-
image: quay.io/ibmmas/cli:10.
|
|
10336
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
10330
10337
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10331
10338
|
# --------------------------------------------------------------------------------
|
|
10332
10339
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-install.yaml
|
|
@@ -10366,6 +10373,9 @@ spec:
|
|
|
10366
10373
|
- name: mas_add_catalog
|
|
10367
10374
|
type: string
|
|
10368
10375
|
default: ""
|
|
10376
|
+
- name: mas_enable_walkme
|
|
10377
|
+
type: string
|
|
10378
|
+
default: "True"
|
|
10369
10379
|
|
|
10370
10380
|
- name: mas_annotations
|
|
10371
10381
|
default: ''
|
|
@@ -10495,6 +10505,8 @@ spec:
|
|
|
10495
10505
|
|
|
10496
10506
|
- name: MAS_ADD_CATALOG
|
|
10497
10507
|
value: $(params.mas_add_catalog)
|
|
10508
|
+
- name: MAS_ENABLE_WALKME
|
|
10509
|
+
value: $(params.mas_enable_walkme)
|
|
10498
10510
|
- name: MAS_ADD_CHANNEL
|
|
10499
10511
|
value: $(params.mas_add_channel)
|
|
10500
10512
|
|
|
@@ -10565,7 +10577,7 @@ spec:
|
|
|
10565
10577
|
command:
|
|
10566
10578
|
- /opt/app-root/src/run-role.sh
|
|
10567
10579
|
- suite_install
|
|
10568
|
-
image: quay.io/ibmmas/cli:10.
|
|
10580
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
10569
10581
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10570
10582
|
workingDir: /workspace/configs
|
|
10571
10583
|
|
|
@@ -10653,7 +10665,7 @@ spec:
|
|
|
10653
10665
|
command:
|
|
10654
10666
|
- /opt/app-root/src/run-role.sh
|
|
10655
10667
|
- suite_rollback
|
|
10656
|
-
image: quay.io/ibmmas/cli:10.
|
|
10668
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
10657
10669
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10658
10670
|
# --------------------------------------------------------------------------------
|
|
10659
10671
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-uninstall.yaml
|
|
@@ -10718,7 +10730,7 @@ spec:
|
|
|
10718
10730
|
command:
|
|
10719
10731
|
- /opt/app-root/src/run-role.sh
|
|
10720
10732
|
- suite_uninstall
|
|
10721
|
-
image: quay.io/ibmmas/cli:10.
|
|
10733
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
10722
10734
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10723
10735
|
# --------------------------------------------------------------------------------
|
|
10724
10736
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-upgrade.yaml
|
|
@@ -10788,7 +10800,7 @@ spec:
|
|
|
10788
10800
|
command:
|
|
10789
10801
|
- /opt/app-root/src/run-role.sh
|
|
10790
10802
|
- suite_upgrade
|
|
10791
|
-
image: quay.io/ibmmas/cli:10.
|
|
10803
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
10792
10804
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10793
10805
|
# --------------------------------------------------------------------------------
|
|
10794
10806
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-verify.yaml
|
|
@@ -10850,12 +10862,12 @@ spec:
|
|
|
10850
10862
|
command:
|
|
10851
10863
|
- /opt/app-root/src/run-role.sh
|
|
10852
10864
|
- suite_verify
|
|
10853
|
-
image: quay.io/ibmmas/cli:10.
|
|
10865
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
10854
10866
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10855
10867
|
|
|
10856
10868
|
# If configmap/approval-suite-verify exists then set CONFIGMAP_KEY=pending and wait for it to be changed to "approved"
|
|
10857
10869
|
- name: suite-post-verify
|
|
10858
|
-
image: quay.io/ibmmas/cli:10.
|
|
10870
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
10859
10871
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10860
10872
|
command:
|
|
10861
10873
|
- /opt/app-root/src/wait-for-configmap.sh
|
|
@@ -10984,7 +10996,7 @@ spec:
|
|
|
10984
10996
|
command:
|
|
10985
10997
|
- /opt/app-root/src/run-role.sh
|
|
10986
10998
|
- turbonomic
|
|
10987
|
-
image: quay.io/ibmmas/cli:10.
|
|
10999
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
10988
11000
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10989
11001
|
# --------------------------------------------------------------------------------
|
|
10990
11002
|
# /home/runner/work/cli/cli/tekton/target/tasks/uds.yaml
|
|
@@ -11065,7 +11077,7 @@ spec:
|
|
|
11065
11077
|
# IBM User Data Services (UDS)
|
|
11066
11078
|
# -------------------------------------------------------------------------
|
|
11067
11079
|
- name: uds
|
|
11068
|
-
image: quay.io/ibmmas/cli:10.
|
|
11080
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
11069
11081
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11070
11082
|
workingDir: /workspace/configs
|
|
11071
11083
|
command:
|
|
@@ -11128,7 +11140,7 @@ spec:
|
|
|
11128
11140
|
# IBM Data Reporter Operator (DRO)
|
|
11129
11141
|
# -------------------------------------------------------------------------
|
|
11130
11142
|
- name: dro
|
|
11131
|
-
image: quay.io/ibmmas/cli:10.
|
|
11143
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
11132
11144
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11133
11145
|
workingDir: /workspace/configs
|
|
11134
11146
|
command:
|
|
@@ -11214,7 +11226,7 @@ spec:
|
|
|
11214
11226
|
|
|
11215
11227
|
steps:
|
|
11216
11228
|
- name: update-configmap
|
|
11217
|
-
image: quay.io/ibmmas/cli:10.
|
|
11229
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
11218
11230
|
command:
|
|
11219
11231
|
- /opt/app-root/src/update-configmap.sh
|
|
11220
11232
|
env:
|
|
@@ -11276,7 +11288,7 @@ spec:
|
|
|
11276
11288
|
|
|
11277
11289
|
steps:
|
|
11278
11290
|
- name: wait-for-configmap
|
|
11279
|
-
image: quay.io/ibmmas/cli:10.
|
|
11291
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
11280
11292
|
command:
|
|
11281
11293
|
- /opt/app-root/src/wait-for-configmap.sh
|
|
11282
11294
|
env:
|
|
@@ -11340,7 +11352,7 @@ spec:
|
|
|
11340
11352
|
|
|
11341
11353
|
steps:
|
|
11342
11354
|
- name: wait
|
|
11343
|
-
image: quay.io/ibmmas/cli:10.
|
|
11355
|
+
image: quay.io/ibmmas/cli:10.8.0
|
|
11344
11356
|
command:
|
|
11345
11357
|
- /opt/app-root/src/wait-for-tekton.sh
|
|
11346
11358
|
env:
|
|
@@ -18400,7 +18412,7 @@ spec:
|
|
|
18400
18412
|
# -----------------------------------------------------------------------------
|
|
18401
18413
|
- name: eck_action
|
|
18402
18414
|
type: string
|
|
18403
|
-
default: "
|
|
18415
|
+
default: "no-action"
|
|
18404
18416
|
|
|
18405
18417
|
- name: eck_enable_elasticsearch
|
|
18406
18418
|
type: string
|
|
@@ -19097,6 +19109,10 @@ spec:
|
|
|
19097
19109
|
type: string
|
|
19098
19110
|
default: ""
|
|
19099
19111
|
description: Data Dictionary catalog source
|
|
19112
|
+
- name: mas_enable_walkme
|
|
19113
|
+
type: string
|
|
19114
|
+
default: "True"
|
|
19115
|
+
description: Optional parameter to enable or disable guided tour
|
|
19100
19116
|
|
|
19101
19117
|
# SSO Configuration
|
|
19102
19118
|
# -----------------------------------------------------------------------------
|
|
@@ -20696,6 +20712,8 @@ spec:
|
|
|
20696
20712
|
value: $(params.custom_labels)
|
|
20697
20713
|
- name: mas_add_catalog
|
|
20698
20714
|
value: $(params.mas_add_catalog)
|
|
20715
|
+
- name: mas_enable_walkme
|
|
20716
|
+
value: $(params.mas_enable_walkme)
|
|
20699
20717
|
- name: mas_add_channel
|
|
20700
20718
|
value: $(params.mas_add_channel)
|
|
20701
20719
|
# Enable optional integration with ECK logstash
|
mas/cli/update/app.py
CHANGED
|
@@ -586,8 +586,8 @@ class UpdateApp(BaseApp):
|
|
|
586
586
|
self.printDescription([
|
|
587
587
|
f"{kind}s were found in multiple namespaces, select the namespace to target from the list below:"
|
|
588
588
|
])
|
|
589
|
-
for ns in sorted(namespaces):
|
|
590
|
-
self.printDescription([f"
|
|
589
|
+
for index, ns in enumerate(sorted(namespaces), start=1):
|
|
590
|
+
self.printDescription([f"{index}. {ns}"])
|
|
591
591
|
self.promptForListSelect("Select namespace", sorted(namespaces), paramName)
|
|
592
592
|
else:
|
|
593
593
|
logger.debug(f"Found no instances of {kind} to update")
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
mas/cli/__init__.py,sha256=
|
|
1
|
+
mas/cli/__init__.py,sha256=8QHzaUIvXqrzQMYxfqOO8ebqpYiw13K_K6oFoHVb4e8,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=
|
|
8
|
-
mas/cli/install/argParser.py,sha256=
|
|
9
|
-
mas/cli/install/summarizer.py,sha256=
|
|
7
|
+
mas/cli/install/app.py,sha256=ftywyT7FPo7sVFfm2Jy65u_YbpUyXPN1dvFbbQHLN_s,53502
|
|
8
|
+
mas/cli/install/argParser.py,sha256=tPLI0rK-D1KTGY0uctv_MIiff2SFCGb16LobF2sDU-I,25716
|
|
9
|
+
mas/cli/install/summarizer.py,sha256=Q6QrXdjkMGvjV1nRX-GpU9DCBrTL8hIOCeU_WzmSun0,18249
|
|
10
10
|
mas/cli/install/settings/__init__.py,sha256=eGdNVHVALUxJlZyGYkBet8LbHvVfa-1UjL_8Zl3d-lY,953
|
|
11
11
|
mas/cli/install/settings/additionalConfigs.py,sha256=-qn25IExNGDJ_VLTH1EmgPrFrIE3JFZ3MMb0RlTzVOg,9651
|
|
12
12
|
mas/cli/install/settings/db2Settings.py,sha256=mR0XL81Talvwvm1bekw0o9VOwV42QkS0jMyp055bx5U,10713
|
|
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=WENjRruz7mixdo8yu_FgwsqlbIDNAxp6cpnz-ksk9C4,726734
|
|
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=003i8fBCfJRZ5sIht8EdxT1yV81s1Fcfp9vog8nU_lg,36598
|
|
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.8.0.data/scripts/mas-cli,sha256=sEPYV6KUzcq4ukiTM4tMLsYKv-d9Ms0aJI9Uhjg_G9Y,3436
|
|
98
|
+
mas_cli-10.8.0.dist-info/METADATA,sha256=tKmB5fhuAEeoSgxDYCEL1xiITzab-FrgT_0P8Vchc4s,2076
|
|
99
|
+
mas_cli-10.8.0.dist-info/WHEEL,sha256=Mdi9PDNwEZptOjTlUcAth7XJDFtKrHYaQMPulZeBCiQ,91
|
|
100
|
+
mas_cli-10.8.0.dist-info/top_level.txt,sha256=_Hlsp7pvMvyV14LFg-vk1hULq30j61EILnnxMFIhhc8,4
|
|
101
|
+
mas_cli-10.8.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|