mas-cli 13.1.0__py3-none-any.whl → 13.2.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 +38 -21
- mas/cli/templates/ibm-mas-tekton.yaml +128 -102
- {mas_cli-13.1.0.dist-info → mas_cli-13.2.0.dist-info}/METADATA +1 -1
- {mas_cli-13.1.0.dist-info → mas_cli-13.2.0.dist-info}/RECORD +9 -9
- {mas_cli-13.1.0.data → mas_cli-13.2.0.data}/scripts/mas-cli +0 -0
- {mas_cli-13.1.0.dist-info → mas_cli-13.2.0.dist-info}/WHEEL +0 -0
- {mas_cli-13.1.0.dist-info → mas_cli-13.2.0.dist-info}/top_level.txt +0 -0
mas/cli/__init__.py
CHANGED
mas/cli/cli.py
CHANGED
|
@@ -117,7 +117,7 @@ class BaseApp(PrintMixin, PromptMixin):
|
|
|
117
117
|
logging.getLogger('asyncio').setLevel(logging.INFO)
|
|
118
118
|
|
|
119
119
|
# Supports extended semver, unlike mas.cli.__version__
|
|
120
|
-
self.version = "13.
|
|
120
|
+
self.version = "13.2.0"
|
|
121
121
|
self.h1count = 0
|
|
122
122
|
self.h2count = 0
|
|
123
123
|
|
mas/cli/install/app.py
CHANGED
|
@@ -164,23 +164,29 @@ class InstallApp(BaseApp, InstallSettingsMixin, InstallSummarizerMixin, ConfigGe
|
|
|
164
164
|
@logMethodCall
|
|
165
165
|
def processCatalogChoice(self) -> list:
|
|
166
166
|
self.catalogDigest = self.chosenCatalog["catalog_digest"]
|
|
167
|
-
self.catalogCp4dVersion = self.chosenCatalog["cpd_product_version_default"]
|
|
168
167
|
self.catalogMongoDbVersion = self.chosenCatalog["mongo_extras_version_default"]
|
|
168
|
+
if self.architecture != "s390x":
|
|
169
|
+
self.catalogCp4dVersion = self.chosenCatalog["cpd_product_version_default"]
|
|
170
|
+
|
|
171
|
+
applications = {
|
|
172
|
+
"Core": "mas_core_version",
|
|
173
|
+
"Manage": "mas_manage_version",
|
|
174
|
+
"IoT": "mas_iot_version",
|
|
175
|
+
"Monitor": "mas_monitor_version",
|
|
176
|
+
"Assist": "mas_assist_version",
|
|
177
|
+
"Optimizer": "mas_optimizer_version",
|
|
178
|
+
"Predict": "mas_predict_version",
|
|
179
|
+
"Inspection": "mas_visualinspection_version",
|
|
180
|
+
}
|
|
181
|
+
else:
|
|
182
|
+
applications = {
|
|
183
|
+
"Core": "mas_core_version",
|
|
184
|
+
"Manage": "mas_manage_version",
|
|
185
|
+
}
|
|
169
186
|
|
|
170
187
|
self.catalogReleases = []
|
|
171
188
|
self.catalogTable = []
|
|
172
189
|
|
|
173
|
-
applications = {
|
|
174
|
-
"Core": "mas_core_version",
|
|
175
|
-
"Manage": "mas_manage_version",
|
|
176
|
-
"IoT": "mas_iot_version",
|
|
177
|
-
"Monitor": "mas_monitor_version",
|
|
178
|
-
"Assist": "mas_assist_version",
|
|
179
|
-
"Optimizer": "mas_optimizer_version",
|
|
180
|
-
"Predict": "mas_predict_version",
|
|
181
|
-
"Inspection": "mas_visualinspection_version",
|
|
182
|
-
}
|
|
183
|
-
|
|
184
190
|
# Dynamically fetch the channels from the chosen catalog
|
|
185
191
|
# based on mas core
|
|
186
192
|
for channel in self.chosenCatalog["mas_core_version"]:
|
|
@@ -190,15 +196,26 @@ class InstallApp(BaseApp, InstallSettingsMixin, InstallSummarizerMixin, ConfigGe
|
|
|
190
196
|
for application, key in applications.items():
|
|
191
197
|
self.catalogTable.append({"": application} | self.chosenCatalog[key])
|
|
192
198
|
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
199
|
+
if self.architecture == "s390x":
|
|
200
|
+
summary = [
|
|
201
|
+
"",
|
|
202
|
+
"<u>Catalog Details</u>",
|
|
203
|
+
f"Catalog Image: icr.io/cpopen/ibm-maximo-operator-catalog:{self.getParam('mas_catalog_version')}",
|
|
204
|
+
f"Catalog Digest: {self.catalogDigest}",
|
|
205
|
+
f"MAS Releases: {', '.join(self.catalogReleases)}",
|
|
206
|
+
f"MongoDb: {self.catalogMongoDbVersion}",
|
|
207
|
+
]
|
|
208
|
+
else:
|
|
209
|
+
summary = [
|
|
210
|
+
"",
|
|
211
|
+
"<u>Catalog Details</u>",
|
|
212
|
+
f"Catalog Image: icr.io/cpopen/ibm-maximo-operator-catalog:{self.getParam('mas_catalog_version')}",
|
|
213
|
+
f"Catalog Digest: {self.catalogDigest}",
|
|
214
|
+
f"MAS Releases: {', '.join(self.catalogReleases)}",
|
|
215
|
+
f"Cloud Pak for Data: {self.catalogCp4dVersion}",
|
|
216
|
+
f"MongoDb: {self.catalogMongoDbVersion}",
|
|
217
|
+
]
|
|
218
|
+
|
|
202
219
|
return summary
|
|
203
220
|
|
|
204
221
|
@logMethodCall
|
|
@@ -231,7 +231,7 @@ spec:
|
|
|
231
231
|
command:
|
|
232
232
|
- /opt/app-root/src/run-role.sh
|
|
233
233
|
- aibroker
|
|
234
|
-
image: quay.io/ibmmas/cli:13.
|
|
234
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
235
235
|
imagePullPolicy: $(params.image_pull_policy)
|
|
236
236
|
# --------------------------------------------------------------------------------
|
|
237
237
|
# /home/runner/work/cli/cli/tekton/target/tasks/appconnect.yaml
|
|
@@ -342,7 +342,7 @@ spec:
|
|
|
342
342
|
command:
|
|
343
343
|
- /opt/app-root/src/run-role.sh
|
|
344
344
|
- appconnect
|
|
345
|
-
image: quay.io/ibmmas/cli:13.
|
|
345
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
346
346
|
imagePullPolicy: $(params.image_pull_policy)
|
|
347
347
|
workingDir: /workspace/configs
|
|
348
348
|
|
|
@@ -460,7 +460,7 @@ spec:
|
|
|
460
460
|
command:
|
|
461
461
|
- /opt/app-root/src/run-role.sh
|
|
462
462
|
- arcgis
|
|
463
|
-
image: quay.io/ibmmas/cli:13.
|
|
463
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
464
464
|
imagePullPolicy: $(params.image_pull_policy)
|
|
465
465
|
# --------------------------------------------------------------------------------
|
|
466
466
|
# /home/runner/work/cli/cli/tekton/target/tasks/cert-manager.yaml
|
|
@@ -530,7 +530,7 @@ spec:
|
|
|
530
530
|
command:
|
|
531
531
|
- /opt/app-root/src/run-role.sh
|
|
532
532
|
- cert_manager
|
|
533
|
-
image: quay.io/ibmmas/cli:13.
|
|
533
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
534
534
|
imagePullPolicy: $(params.image_pull_policy)
|
|
535
535
|
workingDir: /workspace/configs
|
|
536
536
|
# --------------------------------------------------------------------------------
|
|
@@ -596,7 +596,7 @@ spec:
|
|
|
596
596
|
command:
|
|
597
597
|
- /opt/app-root/src/run-role.sh
|
|
598
598
|
- common_services
|
|
599
|
-
image: quay.io/ibmmas/cli:13.
|
|
599
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
600
600
|
imagePullPolicy: $(params.image_pull_policy)
|
|
601
601
|
workingDir: /workspace/configs
|
|
602
602
|
# --------------------------------------------------------------------------------
|
|
@@ -723,7 +723,7 @@ spec:
|
|
|
723
723
|
command:
|
|
724
724
|
- /opt/app-root/src/run-role.sh
|
|
725
725
|
- cos
|
|
726
|
-
image: quay.io/ibmmas/cli:13.
|
|
726
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
727
727
|
imagePullPolicy: $(params.image_pull_policy)
|
|
728
728
|
workingDir: /workspace/configs
|
|
729
729
|
|
|
@@ -843,7 +843,7 @@ spec:
|
|
|
843
843
|
command:
|
|
844
844
|
- /opt/app-root/src/run-role.sh
|
|
845
845
|
- cp4d_service
|
|
846
|
-
image: quay.io/ibmmas/cli:13.
|
|
846
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
847
847
|
imagePullPolicy: $(params.image_pull_policy)
|
|
848
848
|
workingDir: /workspace/configs
|
|
849
849
|
# --------------------------------------------------------------------------------
|
|
@@ -960,7 +960,7 @@ spec:
|
|
|
960
960
|
command:
|
|
961
961
|
- /opt/app-root/src/run-role.sh
|
|
962
962
|
- cp4d_service
|
|
963
|
-
image: quay.io/ibmmas/cli:13.
|
|
963
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
964
964
|
imagePullPolicy: $(params.image_pull_policy)
|
|
965
965
|
workingDir: /workspace/configs
|
|
966
966
|
|
|
@@ -1066,7 +1066,7 @@ spec:
|
|
|
1066
1066
|
command:
|
|
1067
1067
|
- /opt/app-root/src/run-role.sh
|
|
1068
1068
|
- cp4d
|
|
1069
|
-
image: quay.io/ibmmas/cli:13.
|
|
1069
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
1070
1070
|
imagePullPolicy: $(params.image_pull_policy)
|
|
1071
1071
|
# --------------------------------------------------------------------------------
|
|
1072
1072
|
# /home/runner/work/cli/cli/tekton/target/tasks/db2.yaml
|
|
@@ -1388,7 +1388,7 @@ spec:
|
|
|
1388
1388
|
command:
|
|
1389
1389
|
- /opt/app-root/src/run-role.sh
|
|
1390
1390
|
- db2
|
|
1391
|
-
image: quay.io/ibmmas/cli:13.
|
|
1391
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
1392
1392
|
imagePullPolicy: $(params.image_pull_policy)
|
|
1393
1393
|
workingDir: /workspace/configs
|
|
1394
1394
|
|
|
@@ -1498,7 +1498,7 @@ spec:
|
|
|
1498
1498
|
command:
|
|
1499
1499
|
- /opt/app-root/src/run-role.sh
|
|
1500
1500
|
- eck
|
|
1501
|
-
image: quay.io/ibmmas/cli:13.
|
|
1501
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
1502
1502
|
imagePullPolicy: $(params.image_pull_policy)
|
|
1503
1503
|
# --------------------------------------------------------------------------------
|
|
1504
1504
|
# /home/runner/work/cli/cli/tekton/target/tasks/gencfg-workspace.yaml
|
|
@@ -1587,7 +1587,7 @@ spec:
|
|
|
1587
1587
|
command:
|
|
1588
1588
|
- /opt/app-root/src/run-role.sh
|
|
1589
1589
|
- gencfg_workspace
|
|
1590
|
-
image: quay.io/ibmmas/cli:13.
|
|
1590
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
1591
1591
|
imagePullPolicy: $(params.image_pull_policy)
|
|
1592
1592
|
workingDir: /workspace/configs
|
|
1593
1593
|
|
|
@@ -1691,7 +1691,7 @@ spec:
|
|
|
1691
1691
|
- -c
|
|
1692
1692
|
name: gitops-bootstrap
|
|
1693
1693
|
imagePullPolicy: IfNotPresent
|
|
1694
|
-
image: quay.io/ibmmas/cli:13.
|
|
1694
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
1695
1695
|
workspaces:
|
|
1696
1696
|
- name: configs
|
|
1697
1697
|
# --------------------------------------------------------------------------------
|
|
@@ -1773,7 +1773,7 @@ spec:
|
|
|
1773
1773
|
- -c
|
|
1774
1774
|
name: gitops-cis-compliance
|
|
1775
1775
|
imagePullPolicy: IfNotPresent
|
|
1776
|
-
image: quay.io/ibmmas/cli:13.
|
|
1776
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
1777
1777
|
workspaces:
|
|
1778
1778
|
- name: configs
|
|
1779
1779
|
# --------------------------------------------------------------------------------
|
|
@@ -1891,6 +1891,13 @@ spec:
|
|
|
1891
1891
|
type: string
|
|
1892
1892
|
default: ''
|
|
1893
1893
|
|
|
1894
|
+
- name: cluster_logging_operator_install
|
|
1895
|
+
type: string
|
|
1896
|
+
default: 'false'
|
|
1897
|
+
- name: cluster_logging_operator_use_syslog_forwarder
|
|
1898
|
+
type: string
|
|
1899
|
+
default: 'true'
|
|
1900
|
+
|
|
1894
1901
|
stepTemplate:
|
|
1895
1902
|
name: gitops-cluster
|
|
1896
1903
|
env:
|
|
@@ -1976,6 +1983,11 @@ spec:
|
|
|
1976
1983
|
- name: FALCON_OPERATOR_NODE_SENSOR
|
|
1977
1984
|
value: $(params.falcon_operator_node_sensor)
|
|
1978
1985
|
|
|
1986
|
+
- name: CLUSTER_LOGGING_OPERATOR_INSTALL
|
|
1987
|
+
value: $(params.cluster_logging_operator_install)
|
|
1988
|
+
- name: CLUSTER_LOGGING_OPERATOR_USE_SYSLOG_FORWARDER
|
|
1989
|
+
value: $(params.cluster_logging_operator_use_syslog_forwarder)
|
|
1990
|
+
|
|
1979
1991
|
envFrom:
|
|
1980
1992
|
- configMapRef:
|
|
1981
1993
|
name: environment-properties
|
|
@@ -2039,7 +2051,7 @@ spec:
|
|
|
2039
2051
|
- -c
|
|
2040
2052
|
name: gitops-cluster
|
|
2041
2053
|
imagePullPolicy: Always
|
|
2042
|
-
image: quay.io/ibmmas/cli:13.
|
|
2054
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
2043
2055
|
workspaces:
|
|
2044
2056
|
- name: configs
|
|
2045
2057
|
# --------------------------------------------------------------------------------
|
|
@@ -2142,7 +2154,7 @@ spec:
|
|
|
2142
2154
|
- -c
|
|
2143
2155
|
name: gitops-cos
|
|
2144
2156
|
imagePullPolicy: IfNotPresent
|
|
2145
|
-
image: quay.io/ibmmas/cli:13.
|
|
2157
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
2146
2158
|
workspaces:
|
|
2147
2159
|
- name: configs
|
|
2148
2160
|
# --------------------------------------------------------------------------------
|
|
@@ -2290,7 +2302,7 @@ spec:
|
|
|
2290
2302
|
- -c
|
|
2291
2303
|
name: gitops-cp4d-service
|
|
2292
2304
|
imagePullPolicy: IfNotPresent
|
|
2293
|
-
image: quay.io/ibmmas/cli:13.
|
|
2305
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
2294
2306
|
workspaces:
|
|
2295
2307
|
- name: configs
|
|
2296
2308
|
- name: shared-gitops-configs
|
|
@@ -2419,7 +2431,7 @@ spec:
|
|
|
2419
2431
|
- -c
|
|
2420
2432
|
name: gitops-cp4d
|
|
2421
2433
|
imagePullPolicy: IfNotPresent
|
|
2422
|
-
image: quay.io/ibmmas/cli:13.
|
|
2434
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
2423
2435
|
workspaces:
|
|
2424
2436
|
- name: configs
|
|
2425
2437
|
- name: shared-gitops-configs
|
|
@@ -2680,7 +2692,7 @@ spec:
|
|
|
2680
2692
|
- -c
|
|
2681
2693
|
name: gitops-db2u-database
|
|
2682
2694
|
imagePullPolicy: Always
|
|
2683
|
-
image: quay.io/ibmmas/cli:13.
|
|
2695
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
2684
2696
|
workspaces:
|
|
2685
2697
|
- name: configs
|
|
2686
2698
|
- name: shared-gitops-configs
|
|
@@ -2778,7 +2790,7 @@ spec:
|
|
|
2778
2790
|
- -c
|
|
2779
2791
|
name: gitops-db2u
|
|
2780
2792
|
imagePullPolicy: IfNotPresent
|
|
2781
|
-
image: quay.io/ibmmas/cli:13.
|
|
2793
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
2782
2794
|
workspaces:
|
|
2783
2795
|
- name: configs
|
|
2784
2796
|
# --------------------------------------------------------------------------------
|
|
@@ -2905,7 +2917,7 @@ spec:
|
|
|
2905
2917
|
- -c
|
|
2906
2918
|
name: gitops-delete-jdbc-config
|
|
2907
2919
|
imagePullPolicy: IfNotPresent
|
|
2908
|
-
image: quay.io/ibmmas/cli:13.
|
|
2920
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
2909
2921
|
workspaces:
|
|
2910
2922
|
- name: configs
|
|
2911
2923
|
# --------------------------------------------------------------------------------
|
|
@@ -3003,7 +3015,7 @@ spec:
|
|
|
3003
3015
|
- -c
|
|
3004
3016
|
name: gitops-delete-kafka-config
|
|
3005
3017
|
imagePullPolicy: Always
|
|
3006
|
-
image: quay.io/ibmmas/cli:13.
|
|
3018
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
3007
3019
|
workspaces:
|
|
3008
3020
|
- name: configs
|
|
3009
3021
|
|
|
@@ -3095,7 +3107,7 @@ spec:
|
|
|
3095
3107
|
- -c
|
|
3096
3108
|
name: gitops-deprovision-app-config
|
|
3097
3109
|
imagePullPolicy: IfNotPresent
|
|
3098
|
-
image: quay.io/ibmmas/cli:13.
|
|
3110
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
3099
3111
|
workspaces:
|
|
3100
3112
|
- name: configs
|
|
3101
3113
|
# --------------------------------------------------------------------------------
|
|
@@ -3180,7 +3192,7 @@ spec:
|
|
|
3180
3192
|
- -c
|
|
3181
3193
|
name: gitops-deprovision-app-install
|
|
3182
3194
|
imagePullPolicy: IfNotPresent
|
|
3183
|
-
image: quay.io/ibmmas/cli:13.
|
|
3195
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
3184
3196
|
workspaces:
|
|
3185
3197
|
- name: configs
|
|
3186
3198
|
# --------------------------------------------------------------------------------
|
|
@@ -3265,7 +3277,7 @@ spec:
|
|
|
3265
3277
|
- -c
|
|
3266
3278
|
name: gitops-deprovision-cluster
|
|
3267
3279
|
imagePullPolicy: IfNotPresent
|
|
3268
|
-
image: quay.io/ibmmas/cli:13.
|
|
3280
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
3269
3281
|
workspaces:
|
|
3270
3282
|
- name: configs
|
|
3271
3283
|
# --------------------------------------------------------------------------------
|
|
@@ -3384,7 +3396,7 @@ spec:
|
|
|
3384
3396
|
- -c
|
|
3385
3397
|
name: gitops-deprovision-cos
|
|
3386
3398
|
imagePullPolicy: IfNotPresent
|
|
3387
|
-
image: quay.io/ibmmas/cli:13.
|
|
3399
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
3388
3400
|
workspaces:
|
|
3389
3401
|
- name: configs
|
|
3390
3402
|
# --------------------------------------------------------------------------------
|
|
@@ -3472,7 +3484,7 @@ spec:
|
|
|
3472
3484
|
- -c
|
|
3473
3485
|
name: gitops-deprovision-db2u-database
|
|
3474
3486
|
imagePullPolicy: IfNotPresent
|
|
3475
|
-
image: quay.io/ibmmas/cli:13.
|
|
3487
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
3476
3488
|
workspaces:
|
|
3477
3489
|
- name: configs
|
|
3478
3490
|
|
|
@@ -3555,7 +3567,7 @@ spec:
|
|
|
3555
3567
|
- -c
|
|
3556
3568
|
name: gitops-deprovision-db2u
|
|
3557
3569
|
imagePullPolicy: IfNotPresent
|
|
3558
|
-
image: quay.io/ibmmas/cli:13.
|
|
3570
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
3559
3571
|
workspaces:
|
|
3560
3572
|
- name: configs
|
|
3561
3573
|
|
|
@@ -3663,7 +3675,7 @@ spec:
|
|
|
3663
3675
|
- -c
|
|
3664
3676
|
name: gitops-deprovision-efs
|
|
3665
3677
|
imagePullPolicy: IfNotPresent
|
|
3666
|
-
image: quay.io/ibmmas/cli:13.
|
|
3678
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
3667
3679
|
workspaces:
|
|
3668
3680
|
- name: configs
|
|
3669
3681
|
|
|
@@ -3773,7 +3785,7 @@ spec:
|
|
|
3773
3785
|
- -c
|
|
3774
3786
|
name: gitops-deprovision-kafka
|
|
3775
3787
|
imagePullPolicy: IfNotPresent
|
|
3776
|
-
image: quay.io/ibmmas/cli:13.
|
|
3788
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
3777
3789
|
workspaces:
|
|
3778
3790
|
- name: configs
|
|
3779
3791
|
# --------------------------------------------------------------------------------
|
|
@@ -3876,7 +3888,7 @@ spec:
|
|
|
3876
3888
|
- -c
|
|
3877
3889
|
name: gitops-deprovision-mongo
|
|
3878
3890
|
imagePullPolicy: IfNotPresent
|
|
3879
|
-
image: quay.io/ibmmas/cli:13.
|
|
3891
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
3880
3892
|
workspaces:
|
|
3881
3893
|
- name: configs
|
|
3882
3894
|
|
|
@@ -3933,7 +3945,7 @@ spec:
|
|
|
3933
3945
|
- -c
|
|
3934
3946
|
name: gitops-deprovision-rosa
|
|
3935
3947
|
imagePullPolicy: IfNotPresent
|
|
3936
|
-
image: quay.io/ibmmas/cli:13.
|
|
3948
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
3937
3949
|
workspaces:
|
|
3938
3950
|
- name: configs
|
|
3939
3951
|
# --------------------------------------------------------------------------------
|
|
@@ -4138,7 +4150,7 @@ spec:
|
|
|
4138
4150
|
- -c
|
|
4139
4151
|
name: gitops-deprovision-suite-config
|
|
4140
4152
|
imagePullPolicy: IfNotPresent
|
|
4141
|
-
image: quay.io/ibmmas/cli:13.
|
|
4153
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
4142
4154
|
workspaces:
|
|
4143
4155
|
- name: configs
|
|
4144
4156
|
|
|
@@ -4236,7 +4248,7 @@ spec:
|
|
|
4236
4248
|
- -c
|
|
4237
4249
|
name: gitops-deprovision-suite-idp-config
|
|
4238
4250
|
imagePullPolicy: IfNotPresent
|
|
4239
|
-
image: quay.io/ibmmas/cli:13.
|
|
4251
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
4240
4252
|
workspaces:
|
|
4241
4253
|
- name: configs
|
|
4242
4254
|
# --------------------------------------------------------------------------------
|
|
@@ -4328,7 +4340,7 @@ spec:
|
|
|
4328
4340
|
- -c
|
|
4329
4341
|
name: gitops-deprovision-suite-objectstorage-config
|
|
4330
4342
|
imagePullPolicy: IfNotPresent
|
|
4331
|
-
image: quay.io/ibmmas/cli:13.
|
|
4343
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
4332
4344
|
workspaces:
|
|
4333
4345
|
- name: configs
|
|
4334
4346
|
# --------------------------------------------------------------------------------
|
|
@@ -4540,7 +4552,7 @@ spec:
|
|
|
4540
4552
|
- -c
|
|
4541
4553
|
name: gitops-deprovision-suite-smtp-config
|
|
4542
4554
|
imagePullPolicy: IfNotPresent
|
|
4543
|
-
image: quay.io/ibmmas/cli:13.
|
|
4555
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
4544
4556
|
workspaces:
|
|
4545
4557
|
- name: configs
|
|
4546
4558
|
# --------------------------------------------------------------------------------
|
|
@@ -4633,7 +4645,7 @@ spec:
|
|
|
4633
4645
|
- -c
|
|
4634
4646
|
name: gitops-deprovision-suite-watson-studio-config
|
|
4635
4647
|
imagePullPolicy: IfNotPresent
|
|
4636
|
-
image: quay.io/ibmmas/cli:13.
|
|
4648
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
4637
4649
|
workspaces:
|
|
4638
4650
|
- name: configs
|
|
4639
4651
|
# --------------------------------------------------------------------------------
|
|
@@ -4724,7 +4736,7 @@ spec:
|
|
|
4724
4736
|
- -c
|
|
4725
4737
|
name: gitops-deprovision-suite-workspace
|
|
4726
4738
|
imagePullPolicy: Always
|
|
4727
|
-
image: quay.io/ibmmas/cli:13.
|
|
4739
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
4728
4740
|
workspaces:
|
|
4729
4741
|
- name: configs
|
|
4730
4742
|
# --------------------------------------------------------------------------------
|
|
@@ -4817,7 +4829,7 @@ spec:
|
|
|
4817
4829
|
- -c
|
|
4818
4830
|
name: gitops-deprovision-suite
|
|
4819
4831
|
imagePullPolicy: IfNotPresent
|
|
4820
|
-
image: quay.io/ibmmas/cli:13.
|
|
4832
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
4821
4833
|
workspaces:
|
|
4822
4834
|
- name: configs
|
|
4823
4835
|
|
|
@@ -4930,7 +4942,7 @@ spec:
|
|
|
4930
4942
|
- -c
|
|
4931
4943
|
name: gitops-dro
|
|
4932
4944
|
imagePullPolicy: IfNotPresent
|
|
4933
|
-
image: quay.io/ibmmas/cli:13.
|
|
4945
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
4934
4946
|
workspaces:
|
|
4935
4947
|
- name: configs
|
|
4936
4948
|
# --------------------------------------------------------------------------------
|
|
@@ -5047,7 +5059,7 @@ spec:
|
|
|
5047
5059
|
- -c
|
|
5048
5060
|
name: gitops-efs
|
|
5049
5061
|
imagePullPolicy: IfNotPresent
|
|
5050
|
-
image: quay.io/ibmmas/cli:13.
|
|
5062
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
5051
5063
|
workspaces:
|
|
5052
5064
|
- name: configs
|
|
5053
5065
|
|
|
@@ -5182,7 +5194,7 @@ spec:
|
|
|
5182
5194
|
- -c
|
|
5183
5195
|
name: gitops-jdbc-config
|
|
5184
5196
|
imagePullPolicy: Always
|
|
5185
|
-
image: quay.io/ibmmas/cli:13.
|
|
5197
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
5186
5198
|
workspaces:
|
|
5187
5199
|
- name: configs
|
|
5188
5200
|
- name: shared-gitops-configs
|
|
@@ -5278,7 +5290,7 @@ spec:
|
|
|
5278
5290
|
- -c
|
|
5279
5291
|
name: gitops-kafka-config
|
|
5280
5292
|
imagePullPolicy: Always
|
|
5281
|
-
image: quay.io/ibmmas/cli:13.
|
|
5293
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
5282
5294
|
workspaces:
|
|
5283
5295
|
- name: configs
|
|
5284
5296
|
|
|
@@ -5400,7 +5412,7 @@ spec:
|
|
|
5400
5412
|
- -c
|
|
5401
5413
|
name: gitops-kafka
|
|
5402
5414
|
imagePullPolicy: IfNotPresent
|
|
5403
|
-
image: quay.io/ibmmas/cli:13.
|
|
5415
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
5404
5416
|
workspaces:
|
|
5405
5417
|
- name: configs
|
|
5406
5418
|
# --------------------------------------------------------------------------------
|
|
@@ -5526,7 +5538,7 @@ spec:
|
|
|
5526
5538
|
- -c
|
|
5527
5539
|
name: gitops-license
|
|
5528
5540
|
imagePullPolicy: Always
|
|
5529
|
-
image: quay.io/ibmmas/cli:13.
|
|
5541
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
5530
5542
|
workspaces:
|
|
5531
5543
|
- name: shared-entitlement
|
|
5532
5544
|
|
|
@@ -6090,7 +6102,7 @@ spec:
|
|
|
6090
6102
|
- -c
|
|
6091
6103
|
name: gitops-mas-fvt-preparer
|
|
6092
6104
|
imagePullPolicy: Always
|
|
6093
|
-
image: quay.io/ibmmas/cli:13.
|
|
6105
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
6094
6106
|
workspaces:
|
|
6095
6107
|
- name: configs
|
|
6096
6108
|
- name: shared-additional-configs
|
|
@@ -6532,7 +6544,7 @@ spec:
|
|
|
6532
6544
|
- -c
|
|
6533
6545
|
name: gitops-mas-initiator
|
|
6534
6546
|
imagePullPolicy: IfNotPresent
|
|
6535
|
-
image: quay.io/ibmmas/cli:13.
|
|
6547
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
6536
6548
|
workspaces:
|
|
6537
6549
|
- name: configs
|
|
6538
6550
|
# --------------------------------------------------------------------------------
|
|
@@ -6640,7 +6652,7 @@ spec:
|
|
|
6640
6652
|
- -c
|
|
6641
6653
|
name: gitops-mongo
|
|
6642
6654
|
imagePullPolicy: IfNotPresent
|
|
6643
|
-
image: quay.io/ibmmas/cli:13.
|
|
6655
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
6644
6656
|
workspaces:
|
|
6645
6657
|
- name: configs
|
|
6646
6658
|
|
|
@@ -6762,7 +6774,7 @@ spec:
|
|
|
6762
6774
|
- -c
|
|
6763
6775
|
name: gitops-nvidia-gpu
|
|
6764
6776
|
imagePullPolicy: IfNotPresent
|
|
6765
|
-
image: quay.io/ibmmas/cli:13.
|
|
6777
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
6766
6778
|
workspaces:
|
|
6767
6779
|
- name: configs
|
|
6768
6780
|
# --------------------------------------------------------------------------------
|
|
@@ -6880,7 +6892,7 @@ spec:
|
|
|
6880
6892
|
- -c
|
|
6881
6893
|
name: gitops-process-mongo-user
|
|
6882
6894
|
imagePullPolicy: IfNotPresent
|
|
6883
|
-
image: quay.io/ibmmas/cli:13.
|
|
6895
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
6884
6896
|
workspaces:
|
|
6885
6897
|
- name: configs
|
|
6886
6898
|
# --------------------------------------------------------------------------------
|
|
@@ -6936,7 +6948,7 @@ spec:
|
|
|
6936
6948
|
- -c
|
|
6937
6949
|
name: gitops-rosa
|
|
6938
6950
|
imagePullPolicy: IfNotPresent
|
|
6939
|
-
image: quay.io/ibmmas/cli:13.
|
|
6951
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
6940
6952
|
workspaces:
|
|
6941
6953
|
- name: configs
|
|
6942
6954
|
# --------------------------------------------------------------------------------
|
|
@@ -7123,7 +7135,7 @@ spec:
|
|
|
7123
7135
|
- -c
|
|
7124
7136
|
name: gitops-suite-app-config
|
|
7125
7137
|
imagePullPolicy: IfNotPresent
|
|
7126
|
-
image: quay.io/ibmmas/cli:13.
|
|
7138
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
7127
7139
|
workspaces:
|
|
7128
7140
|
- name: configs
|
|
7129
7141
|
- name: shared-gitops-configs
|
|
@@ -7281,7 +7293,7 @@ spec:
|
|
|
7281
7293
|
- -c
|
|
7282
7294
|
name: gitops-suite-app-install
|
|
7283
7295
|
imagePullPolicy: Always
|
|
7284
|
-
image: quay.io/ibmmas/cli:13.
|
|
7296
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
7285
7297
|
workspaces:
|
|
7286
7298
|
- name: configs
|
|
7287
7299
|
- name: shared-gitops-configs
|
|
@@ -7387,7 +7399,7 @@ spec:
|
|
|
7387
7399
|
- -c
|
|
7388
7400
|
name: gitops-suite-certs
|
|
7389
7401
|
imagePullPolicy: IfNotPresent
|
|
7390
|
-
image: quay.io/ibmmas/cli:13.
|
|
7402
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
7391
7403
|
workspaces:
|
|
7392
7404
|
- name: configs
|
|
7393
7405
|
- name: certificates
|
|
@@ -7557,7 +7569,7 @@ spec:
|
|
|
7557
7569
|
- -c
|
|
7558
7570
|
name: gitops-suite-config
|
|
7559
7571
|
imagePullPolicy: IfNotPresent
|
|
7560
|
-
image: quay.io/ibmmas/cli:13.
|
|
7572
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
7561
7573
|
workspaces:
|
|
7562
7574
|
- name: configs
|
|
7563
7575
|
- name: shared-additional-configs
|
|
@@ -7657,7 +7669,7 @@ spec:
|
|
|
7657
7669
|
- -c
|
|
7658
7670
|
name: gitops-suite-dns
|
|
7659
7671
|
imagePullPolicy: IfNotPresent
|
|
7660
|
-
image: quay.io/ibmmas/cli:13.
|
|
7672
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
7661
7673
|
workspaces:
|
|
7662
7674
|
- name: configs
|
|
7663
7675
|
|
|
@@ -7781,7 +7793,7 @@ spec:
|
|
|
7781
7793
|
- -c
|
|
7782
7794
|
name: gitops-suite-idp-config
|
|
7783
7795
|
imagePullPolicy: IfNotPresent
|
|
7784
|
-
image: quay.io/ibmmas/cli:13.
|
|
7796
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
7785
7797
|
workspaces:
|
|
7786
7798
|
- name: configs
|
|
7787
7799
|
- name: shared-additional-configs
|
|
@@ -7882,7 +7894,7 @@ spec:
|
|
|
7882
7894
|
- -c
|
|
7883
7895
|
name: gitops-suite-objectstorage-config
|
|
7884
7896
|
imagePullPolicy: IfNotPresent
|
|
7885
|
-
image: quay.io/ibmmas/cli:13.
|
|
7897
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
7886
7898
|
workspaces:
|
|
7887
7899
|
- name: configs
|
|
7888
7900
|
- name: shared-gitops-configs
|
|
@@ -8281,7 +8293,7 @@ spec:
|
|
|
8281
8293
|
- -c
|
|
8282
8294
|
name: gitops-suite-smtp-config
|
|
8283
8295
|
imagePullPolicy: IfNotPresent
|
|
8284
|
-
image: quay.io/ibmmas/cli:13.
|
|
8296
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
8285
8297
|
workspaces:
|
|
8286
8298
|
- name: configs
|
|
8287
8299
|
|
|
@@ -8390,7 +8402,7 @@ spec:
|
|
|
8390
8402
|
- -c
|
|
8391
8403
|
name: gitops-suite-watson-studio-config
|
|
8392
8404
|
imagePullPolicy: IfNotPresent
|
|
8393
|
-
image: quay.io/ibmmas/cli:13.
|
|
8405
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
8394
8406
|
workspaces:
|
|
8395
8407
|
- name: configs
|
|
8396
8408
|
- name: shared-gitops-configs
|
|
@@ -8487,7 +8499,7 @@ spec:
|
|
|
8487
8499
|
- -c
|
|
8488
8500
|
name: gitops-suite-workspace
|
|
8489
8501
|
imagePullPolicy: IfNotPresent
|
|
8490
|
-
image: quay.io/ibmmas/cli:13.
|
|
8502
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
8491
8503
|
workspaces:
|
|
8492
8504
|
- name: configs
|
|
8493
8505
|
# --------------------------------------------------------------------------------
|
|
@@ -8772,7 +8784,7 @@ spec:
|
|
|
8772
8784
|
- -c
|
|
8773
8785
|
name: gitops-suite
|
|
8774
8786
|
imagePullPolicy: IfNotPresent
|
|
8775
|
-
image: quay.io/ibmmas/cli:13.
|
|
8787
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
8776
8788
|
workspaces:
|
|
8777
8789
|
- name: configs
|
|
8778
8790
|
- name: shared-gitops-configs
|
|
@@ -8822,7 +8834,7 @@ spec:
|
|
|
8822
8834
|
|
|
8823
8835
|
steps:
|
|
8824
8836
|
- name: grafana
|
|
8825
|
-
image: quay.io/ibmmas/cli:13.
|
|
8837
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
8826
8838
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8827
8839
|
command:
|
|
8828
8840
|
- /opt/app-root/src/run-role.sh
|
|
@@ -8956,7 +8968,7 @@ spec:
|
|
|
8956
8968
|
command:
|
|
8957
8969
|
- /opt/app-root/src/run-role.sh
|
|
8958
8970
|
- ibm_catalogs
|
|
8959
|
-
image: quay.io/ibmmas/cli:13.
|
|
8971
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
8960
8972
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8961
8973
|
workingDir: /workspace/configs
|
|
8962
8974
|
# --------------------------------------------------------------------------------
|
|
@@ -9198,7 +9210,7 @@ spec:
|
|
|
9198
9210
|
command:
|
|
9199
9211
|
- /opt/app-root/src/run-role.sh
|
|
9200
9212
|
- kafka
|
|
9201
|
-
image: quay.io/ibmmas/cli:13.
|
|
9213
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
9202
9214
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9203
9215
|
workingDir: /workspace/configs
|
|
9204
9216
|
|
|
@@ -9414,7 +9426,7 @@ spec:
|
|
|
9414
9426
|
command:
|
|
9415
9427
|
- /opt/app-root/src/run-role.sh
|
|
9416
9428
|
- kmodels
|
|
9417
|
-
image: quay.io/ibmmas/cli:13.
|
|
9429
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
9418
9430
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9419
9431
|
# --------------------------------------------------------------------------------
|
|
9420
9432
|
# /home/runner/work/cli/cli/tekton/target/tasks/mongodb.yaml
|
|
@@ -9592,7 +9604,7 @@ spec:
|
|
|
9592
9604
|
command:
|
|
9593
9605
|
- /opt/app-root/src/run-role.sh
|
|
9594
9606
|
- mongodb
|
|
9595
|
-
image: quay.io/ibmmas/cli:13.
|
|
9607
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
9596
9608
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9597
9609
|
workingDir: /workspace/configs
|
|
9598
9610
|
|
|
@@ -9635,7 +9647,7 @@ spec:
|
|
|
9635
9647
|
- $(params.base_output_dir)
|
|
9636
9648
|
- --extra-namespaces
|
|
9637
9649
|
- selenium
|
|
9638
|
-
image: quay.io/ibmmas/cli:13.
|
|
9650
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
9639
9651
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9640
9652
|
env:
|
|
9641
9653
|
- name: DEVOPS_MONGO_URI
|
|
@@ -9752,7 +9764,7 @@ spec:
|
|
|
9752
9764
|
command:
|
|
9753
9765
|
- /opt/app-root/src/run-role.sh
|
|
9754
9766
|
- nvidia_gpu
|
|
9755
|
-
image: quay.io/ibmmas/cli:13.
|
|
9767
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
9756
9768
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9757
9769
|
workingDir: /workspace/configs
|
|
9758
9770
|
|
|
@@ -9788,7 +9800,7 @@ spec:
|
|
|
9788
9800
|
# Verify Cluster
|
|
9789
9801
|
# -------------------------------------------------------------------------
|
|
9790
9802
|
- name: ocp-verify-cluster
|
|
9791
|
-
image: quay.io/ibmmas/cli:13.
|
|
9803
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
9792
9804
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9793
9805
|
command:
|
|
9794
9806
|
- /opt/app-root/src/run-role.sh
|
|
@@ -9830,7 +9842,7 @@ spec:
|
|
|
9830
9842
|
# Verify Catalogs
|
|
9831
9843
|
# -------------------------------------------------------------------------
|
|
9832
9844
|
- name: ocp-verify-catalogs
|
|
9833
|
-
image: quay.io/ibmmas/cli:13.
|
|
9845
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
9834
9846
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9835
9847
|
command:
|
|
9836
9848
|
- /opt/app-root/src/run-role.sh
|
|
@@ -9872,7 +9884,7 @@ spec:
|
|
|
9872
9884
|
# Verify Subscriptions
|
|
9873
9885
|
# -------------------------------------------------------------------------
|
|
9874
9886
|
- name: ocp-verify-subscriptions
|
|
9875
|
-
image: quay.io/ibmmas/cli:13.
|
|
9887
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
9876
9888
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9877
9889
|
command:
|
|
9878
9890
|
- /opt/app-root/src/run-role.sh
|
|
@@ -9914,7 +9926,7 @@ spec:
|
|
|
9914
9926
|
# Verify Workloads
|
|
9915
9927
|
# -------------------------------------------------------------------------
|
|
9916
9928
|
- name: ocp-verify-workloads
|
|
9917
|
-
image: quay.io/ibmmas/cli:13.
|
|
9929
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
9918
9930
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9919
9931
|
command:
|
|
9920
9932
|
- /opt/app-root/src/run-role.sh
|
|
@@ -9956,7 +9968,7 @@ spec:
|
|
|
9956
9968
|
# Verify Catalogs - Ingress TLS
|
|
9957
9969
|
# -------------------------------------------------------------------------
|
|
9958
9970
|
- name: ocp-verify-ingress
|
|
9959
|
-
image: quay.io/ibmmas/cli:13.
|
|
9971
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
9960
9972
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9961
9973
|
command:
|
|
9962
9974
|
- /opt/app-root/src/run-role.sh
|
|
@@ -10082,7 +10094,7 @@ spec:
|
|
|
10082
10094
|
command:
|
|
10083
10095
|
- /opt/app-root/src/run-role.sh
|
|
10084
10096
|
- ocp_verify
|
|
10085
|
-
image: quay.io/ibmmas/cli:13.
|
|
10097
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
10086
10098
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10087
10099
|
workingDir: /workspace/configs
|
|
10088
10100
|
# --------------------------------------------------------------------------------
|
|
@@ -10150,7 +10162,7 @@ spec:
|
|
|
10150
10162
|
command:
|
|
10151
10163
|
- /opt/app-root/src/run-role.sh
|
|
10152
10164
|
- ocs
|
|
10153
|
-
image: quay.io/ibmmas/cli:13.
|
|
10165
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
10154
10166
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10155
10167
|
workingDir: /workspace/configs
|
|
10156
10168
|
|
|
@@ -10386,7 +10398,7 @@ spec:
|
|
|
10386
10398
|
command:
|
|
10387
10399
|
- /opt/app-root/src/run-role.sh
|
|
10388
10400
|
- odh
|
|
10389
|
-
image: quay.io/ibmmas/cli:13.
|
|
10401
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
10390
10402
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10391
10403
|
# --------------------------------------------------------------------------------
|
|
10392
10404
|
# /home/runner/work/cli/cli/tekton/target/tasks/sls-registry-update.yaml
|
|
@@ -10562,7 +10574,7 @@ spec:
|
|
|
10562
10574
|
command:
|
|
10563
10575
|
- /opt/app-root/src/run-role.sh
|
|
10564
10576
|
- sls
|
|
10565
|
-
image: quay.io/ibmmas/cli:13.
|
|
10577
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
10566
10578
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10567
10579
|
workingDir: /workspace/configs
|
|
10568
10580
|
|
|
@@ -10951,12 +10963,12 @@ spec:
|
|
|
10951
10963
|
command:
|
|
10952
10964
|
- /opt/app-root/src/run-role.sh
|
|
10953
10965
|
- suite_app_config
|
|
10954
|
-
image: quay.io/ibmmas/cli:13.
|
|
10966
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
10955
10967
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10956
10968
|
|
|
10957
10969
|
# If configmap/approval-app-cfg-$(params.mas_app_id) exists then set STATUS=pending and wait for it to be changed to "approved"
|
|
10958
10970
|
- name: app-cfg-post-verify
|
|
10959
|
-
image: quay.io/ibmmas/cli:13.
|
|
10971
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
10960
10972
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10961
10973
|
command:
|
|
10962
10974
|
- /opt/app-root/src/wait-for-configmap.sh
|
|
@@ -11151,7 +11163,7 @@ spec:
|
|
|
11151
11163
|
command:
|
|
11152
11164
|
- /opt/app-root/src/run-role.sh
|
|
11153
11165
|
- suite_app_install
|
|
11154
|
-
image: quay.io/ibmmas/cli:13.
|
|
11166
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
11155
11167
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11156
11168
|
|
|
11157
11169
|
workspaces:
|
|
@@ -11240,7 +11252,7 @@ spec:
|
|
|
11240
11252
|
command:
|
|
11241
11253
|
- /opt/app-root/src/run-role.sh
|
|
11242
11254
|
- suite_app_rollback
|
|
11243
|
-
image: quay.io/ibmmas/cli:13.
|
|
11255
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
11244
11256
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11245
11257
|
# --------------------------------------------------------------------------------
|
|
11246
11258
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-app-uninstall.yaml
|
|
@@ -11303,7 +11315,7 @@ spec:
|
|
|
11303
11315
|
command:
|
|
11304
11316
|
- /opt/app-root/src/run-role.sh
|
|
11305
11317
|
- suite_app_uninstall
|
|
11306
|
-
image: quay.io/ibmmas/cli:13.
|
|
11318
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
11307
11319
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11308
11320
|
# --------------------------------------------------------------------------------
|
|
11309
11321
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-app-upgrade.yaml
|
|
@@ -11378,7 +11390,7 @@ spec:
|
|
|
11378
11390
|
command:
|
|
11379
11391
|
- /opt/app-root/src/run-role.sh
|
|
11380
11392
|
- suite_app_upgrade
|
|
11381
|
-
image: quay.io/ibmmas/cli:13.
|
|
11393
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
11382
11394
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11383
11395
|
# --------------------------------------------------------------------------------
|
|
11384
11396
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-app-verify.yaml
|
|
@@ -11479,7 +11491,7 @@ spec:
|
|
|
11479
11491
|
command:
|
|
11480
11492
|
- /opt/app-root/src/run-role.sh
|
|
11481
11493
|
- suite_app_verify
|
|
11482
|
-
image: quay.io/ibmmas/cli:13.
|
|
11494
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
11483
11495
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11484
11496
|
# --------------------------------------------------------------------------------
|
|
11485
11497
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-certs.yaml
|
|
@@ -11622,7 +11634,7 @@ spec:
|
|
|
11622
11634
|
command:
|
|
11623
11635
|
- /opt/app-root/src/run-role.sh
|
|
11624
11636
|
- suite_certs
|
|
11625
|
-
image: quay.io/ibmmas/cli:13.
|
|
11637
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
11626
11638
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11627
11639
|
|
|
11628
11640
|
workspaces:
|
|
@@ -11689,7 +11701,7 @@ spec:
|
|
|
11689
11701
|
command:
|
|
11690
11702
|
- /opt/app-root/src/run-role.sh
|
|
11691
11703
|
- suite_config
|
|
11692
|
-
image: quay.io/ibmmas/cli:13.
|
|
11704
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
11693
11705
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11694
11706
|
workingDir: /workspace/configs
|
|
11695
11707
|
|
|
@@ -11760,7 +11772,7 @@ spec:
|
|
|
11760
11772
|
command:
|
|
11761
11773
|
- /opt/app-root/src/run-role.sh
|
|
11762
11774
|
- suite_db2_setup_for_manage
|
|
11763
|
-
image: quay.io/ibmmas/cli:13.
|
|
11775
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
11764
11776
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11765
11777
|
# --------------------------------------------------------------------------------
|
|
11766
11778
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-dns.yaml
|
|
@@ -11950,7 +11962,7 @@ spec:
|
|
|
11950
11962
|
command:
|
|
11951
11963
|
- /opt/app-root/src/run-role.sh
|
|
11952
11964
|
- suite_dns
|
|
11953
|
-
image: quay.io/ibmmas/cli:13.
|
|
11965
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
11954
11966
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11955
11967
|
# --------------------------------------------------------------------------------
|
|
11956
11968
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-install.yaml
|
|
@@ -12199,7 +12211,7 @@ spec:
|
|
|
12199
12211
|
command:
|
|
12200
12212
|
- /opt/app-root/src/run-role.sh
|
|
12201
12213
|
- suite_install
|
|
12202
|
-
image: quay.io/ibmmas/cli:13.
|
|
12214
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
12203
12215
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12204
12216
|
workingDir: /workspace/configs
|
|
12205
12217
|
|
|
@@ -12287,7 +12299,7 @@ spec:
|
|
|
12287
12299
|
command:
|
|
12288
12300
|
- /opt/app-root/src/run-role.sh
|
|
12289
12301
|
- suite_rollback
|
|
12290
|
-
image: quay.io/ibmmas/cli:13.
|
|
12302
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
12291
12303
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12292
12304
|
# --------------------------------------------------------------------------------
|
|
12293
12305
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-uninstall.yaml
|
|
@@ -12352,7 +12364,7 @@ spec:
|
|
|
12352
12364
|
command:
|
|
12353
12365
|
- /opt/app-root/src/run-role.sh
|
|
12354
12366
|
- suite_uninstall
|
|
12355
|
-
image: quay.io/ibmmas/cli:13.
|
|
12367
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
12356
12368
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12357
12369
|
# --------------------------------------------------------------------------------
|
|
12358
12370
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-upgrade.yaml
|
|
@@ -12422,7 +12434,7 @@ spec:
|
|
|
12422
12434
|
command:
|
|
12423
12435
|
- /opt/app-root/src/run-role.sh
|
|
12424
12436
|
- suite_upgrade
|
|
12425
|
-
image: quay.io/ibmmas/cli:13.
|
|
12437
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
12426
12438
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12427
12439
|
# --------------------------------------------------------------------------------
|
|
12428
12440
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-verify.yaml
|
|
@@ -12489,12 +12501,12 @@ spec:
|
|
|
12489
12501
|
command:
|
|
12490
12502
|
- /opt/app-root/src/run-role.sh
|
|
12491
12503
|
- suite_verify
|
|
12492
|
-
image: quay.io/ibmmas/cli:13.
|
|
12504
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
12493
12505
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12494
12506
|
|
|
12495
12507
|
# If configmap/approval-suite-verify exists then set STATUS=pending and wait for it to be changed to "approved"
|
|
12496
12508
|
- name: suite-post-verify
|
|
12497
|
-
image: quay.io/ibmmas/cli:13.
|
|
12509
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
12498
12510
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12499
12511
|
script: |
|
|
12500
12512
|
#!/usr/bin/env bash
|
|
@@ -12622,7 +12634,7 @@ spec:
|
|
|
12622
12634
|
command:
|
|
12623
12635
|
- /opt/app-root/src/run-role.sh
|
|
12624
12636
|
- turbonomic
|
|
12625
|
-
image: quay.io/ibmmas/cli:13.
|
|
12637
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
12626
12638
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12627
12639
|
# --------------------------------------------------------------------------------
|
|
12628
12640
|
# /home/runner/work/cli/cli/tekton/target/tasks/uds.yaml
|
|
@@ -12703,7 +12715,7 @@ spec:
|
|
|
12703
12715
|
# IBM User Data Services (UDS)
|
|
12704
12716
|
# -------------------------------------------------------------------------
|
|
12705
12717
|
- name: uds
|
|
12706
|
-
image: quay.io/ibmmas/cli:13.
|
|
12718
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
12707
12719
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12708
12720
|
workingDir: /workspace/configs
|
|
12709
12721
|
command:
|
|
@@ -12766,7 +12778,7 @@ spec:
|
|
|
12766
12778
|
# IBM Data Reporter Operator (DRO)
|
|
12767
12779
|
# -------------------------------------------------------------------------
|
|
12768
12780
|
- name: dro
|
|
12769
|
-
image: quay.io/ibmmas/cli:13.
|
|
12781
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
12770
12782
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12771
12783
|
workingDir: /workspace/configs
|
|
12772
12784
|
command:
|
|
@@ -12852,7 +12864,7 @@ spec:
|
|
|
12852
12864
|
description: "The value to set"
|
|
12853
12865
|
steps:
|
|
12854
12866
|
- name: update-configmap
|
|
12855
|
-
image: quay.io/ibmmas/cli:13.
|
|
12867
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
12856
12868
|
command:
|
|
12857
12869
|
- /opt/app-root/src/update-configmap.sh
|
|
12858
12870
|
env:
|
|
@@ -12899,7 +12911,7 @@ spec:
|
|
|
12899
12911
|
|
|
12900
12912
|
steps:
|
|
12901
12913
|
- name: wait-for-configmap
|
|
12902
|
-
image: quay.io/ibmmas/cli:13.
|
|
12914
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
12903
12915
|
command:
|
|
12904
12916
|
- /opt/app-root/src/wait-for-configmap.sh
|
|
12905
12917
|
env:
|
|
@@ -12980,7 +12992,7 @@ spec:
|
|
|
12980
12992
|
|
|
12981
12993
|
steps:
|
|
12982
12994
|
- name: wait-for-configmap
|
|
12983
|
-
image: quay.io/ibmmas/cli:13.
|
|
12995
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
12984
12996
|
command:
|
|
12985
12997
|
- /opt/app-root/src/wait-for-configmap.sh
|
|
12986
12998
|
env:
|
|
@@ -13040,7 +13052,7 @@ spec:
|
|
|
13040
13052
|
|
|
13041
13053
|
steps:
|
|
13042
13054
|
- name: wait
|
|
13043
|
-
image: quay.io/ibmmas/cli:13.
|
|
13055
|
+
image: quay.io/ibmmas/cli:13.2.0
|
|
13044
13056
|
command:
|
|
13045
13057
|
- /opt/app-root/src/wait-for-tekton.sh
|
|
13046
13058
|
env:
|
|
@@ -18218,6 +18230,14 @@ spec:
|
|
|
18218
18230
|
- name: falcon_operator_node_sensor
|
|
18219
18231
|
type: string
|
|
18220
18232
|
default: ''
|
|
18233
|
+
|
|
18234
|
+
- name: cluster_logging_operator_install
|
|
18235
|
+
type: string
|
|
18236
|
+
default: 'false'
|
|
18237
|
+
- name: cluster_logging_operator_use_syslog_forwarder
|
|
18238
|
+
type: string
|
|
18239
|
+
default: 'true'
|
|
18240
|
+
|
|
18221
18241
|
tasks:
|
|
18222
18242
|
- name: gitops-cluster
|
|
18223
18243
|
params:
|
|
@@ -18305,6 +18325,12 @@ spec:
|
|
|
18305
18325
|
value: $(params.falcon_operator_cloud_region)
|
|
18306
18326
|
- name: falcon_operator_node_sensor
|
|
18307
18327
|
value: $(params.falcon_operator_node_sensor)
|
|
18328
|
+
|
|
18329
|
+
- name: cluster_logging_operator_install
|
|
18330
|
+
value: $(params.cluster_logging_operator_install)
|
|
18331
|
+
- name: cluster_logging_operator_use_syslog_forwarder
|
|
18332
|
+
value: $(params.cluster_logging_operator_use_syslog_forwarder)
|
|
18333
|
+
|
|
18308
18334
|
taskRef:
|
|
18309
18335
|
kind: Task
|
|
18310
18336
|
name: gitops-cluster
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
mas/cli/__init__.py,sha256=
|
|
2
|
-
mas/cli/cli.py,sha256=
|
|
1
|
+
mas/cli/__init__.py,sha256=6qdmf-lwr9MyifcY5Gy-q3ZSgbGIcbz7RbQsHWKJV9U,526
|
|
2
|
+
mas/cli/cli.py,sha256=tnpoQrLUBG7qVbY0Byv5sVjc8D5AbyDqsrLq_zzKTwc,18115
|
|
3
3
|
mas/cli/displayMixins.py,sha256=e3lAx1DIOwsriDcNI0M2JyP1jeLOZKvId6sPrvWLyqs,5984
|
|
4
4
|
mas/cli/gencfg.py,sha256=p38Ss_ooiNHOZTJT8l0YxDaEaPwD4ZXgxEbW-S9YLNY,3311
|
|
5
5
|
mas/cli/validators.py,sha256=vi1pFA8QtqMhqtGk1NlkkNDUrlFCi53kS5wJqFGDgOU,5108
|
|
6
6
|
mas/cli/install/__init__.py,sha256=v0WJlcdrSycWGT5ofFjRDV3jTZ8AqVCz1AGxok4Khtc,508
|
|
7
|
-
mas/cli/install/app.py,sha256=
|
|
7
|
+
mas/cli/install/app.py,sha256=hynKU8Tuao3X7IxMTZjWxAHDOAE_ibka08yt9ekxOLs,56903
|
|
8
8
|
mas/cli/install/argBuilder.py,sha256=GYPHvkRrJo4xHeLvNrbq90qTh1c6FCE7MP9w_tbHGO8,23977
|
|
9
9
|
mas/cli/install/argParser.py,sha256=ltMCOYjn7Zr2d5I62LN46qBFX67miVb-asJFIsuasyc,34363
|
|
10
10
|
mas/cli/install/catalogs.py,sha256=vzn94BIDfrpk98YRjxqDgooUEr0jFMLINhu-8EsoF-k,724
|
|
@@ -17,7 +17,7 @@ mas/cli/install/settings/kafkaSettings.py,sha256=oJxFhWQkqPi7Do53tu4oxskGbEL4hro
|
|
|
17
17
|
mas/cli/install/settings/manageSettings.py,sha256=rBBq3r9AaDS5fLeKbItgLBnsguuZwyNKo80oYBBEB-0,16241
|
|
18
18
|
mas/cli/install/settings/mongodbSettings.py,sha256=UVt8vMLNpgyewlcymSystIhICnHsd0uoM9qpgezVjGg,2567
|
|
19
19
|
mas/cli/install/settings/turbonomicSettings.py,sha256=ul4eWf53b1NCzJTFsEPX6DWM23YUlWILYBygplqXYlU,1631
|
|
20
|
-
mas/cli/templates/ibm-mas-tekton.yaml,sha256=
|
|
20
|
+
mas/cli/templates/ibm-mas-tekton.yaml,sha256=5Lji5Oc7Ggzn-z2V8IJ2rgatOS1ZCbdiiE4SpyLlAto,824407
|
|
21
21
|
mas/cli/templates/jdbccfg.yml.j2,sha256=cANbwkUkKEPQp-P3_BB_Llbt94457Ciagah2hOdySIM,1644
|
|
22
22
|
mas/cli/templates/suite_mongocfg.yml.j2,sha256=WrgJUfGyvfaRIHjY5VR_zLZ5irTpV5khKNq76ejIxKU,1606
|
|
23
23
|
mas/cli/templates/pod-templates/best-effort/ibm-data-dictionary-assetdatadictionary.yml,sha256=8VG_FDFcEjWNaAOZTcS58Pe0tWOXC10SJLloNqzEMC8,757
|
|
@@ -99,8 +99,8 @@ mas/cli/update/argParser.py,sha256=oOIXzB_rsI2p3og_5X5SFt_g7LURyEdLxZeiGCKq1nU,4
|
|
|
99
99
|
mas/cli/upgrade/__init__.py,sha256=v0WJlcdrSycWGT5ofFjRDV3jTZ8AqVCz1AGxok4Khtc,508
|
|
100
100
|
mas/cli/upgrade/app.py,sha256=EuEZayc0nw9kA6Hz8M9Mv7uk0hgmspJSZCYhNEfCECk,6428
|
|
101
101
|
mas/cli/upgrade/argParser.py,sha256=pqzNDSHy6l13JunHWQLyOI-NFnDGDoVJ_HM07FLYJSc,2033
|
|
102
|
-
mas_cli-13.
|
|
103
|
-
mas_cli-13.
|
|
104
|
-
mas_cli-13.
|
|
105
|
-
mas_cli-13.
|
|
106
|
-
mas_cli-13.
|
|
102
|
+
mas_cli-13.2.0.data/scripts/mas-cli,sha256=Es-wSefTBcR3Vs5_kIUHQLfWHxTXVrmIPMFY0hbrxt8,3493
|
|
103
|
+
mas_cli-13.2.0.dist-info/METADATA,sha256=gx4yiTkySGCrDrjQkTep68q7hmS0CHFwYNDh61ppFcI,2258
|
|
104
|
+
mas_cli-13.2.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
105
|
+
mas_cli-13.2.0.dist-info/top_level.txt,sha256=_Hlsp7pvMvyV14LFg-vk1hULq30j61EILnnxMFIhhc8,4
|
|
106
|
+
mas_cli-13.2.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|