mas-cli 13.28.0__py3-none-any.whl → 13.29.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/aiservice/install/argBuilder.py +22 -8
- mas/cli/aiservice/install/summarizer.py +0 -1
- mas/cli/cli.py +1 -1
- mas/cli/install/argBuilder.py +3 -0
- mas/cli/install/argParser.py +9 -0
- mas/cli/install/params.py +1 -0
- mas/cli/install/summarizer.py +2 -0
- mas/cli/templates/ibm-mas-tekton.yaml +133 -112
- {mas_cli-13.28.0.dist-info → mas_cli-13.29.0.dist-info}/METADATA +1 -1
- {mas_cli-13.28.0.dist-info → mas_cli-13.29.0.dist-info}/RECORD +14 -14
- {mas_cli-13.28.0.data → mas_cli-13.29.0.data}/scripts/mas-cli +0 -0
- {mas_cli-13.28.0.dist-info → mas_cli-13.29.0.dist-info}/WHEEL +0 -0
- {mas_cli-13.28.0.dist-info → mas_cli-13.29.0.dist-info}/top_level.txt +0 -0
mas/cli/__init__.py
CHANGED
|
@@ -30,6 +30,14 @@ class aiServiceInstallArgBuilderMixin():
|
|
|
30
30
|
|
|
31
31
|
command += f"mas aiservice-install --mas-catalog-version {self.getParam('mas_catalog_version')}"
|
|
32
32
|
|
|
33
|
+
if self.getParam('mas_catalog_digest') != "":
|
|
34
|
+
command += f" --mas-catalog-digest {self.getParam('mas_catalog_digest')}"
|
|
35
|
+
|
|
36
|
+
command += f" --ibm-entitlement-key $IBM_ENTITLEMENT_KEY{newline}"
|
|
37
|
+
|
|
38
|
+
# Aibroker Instance Id
|
|
39
|
+
command += f" --aibroker-instance-id \"{self.getParam('aibroker_instance_id')}\"{newline}"
|
|
40
|
+
|
|
33
41
|
# MAS Advanced Configuration
|
|
34
42
|
# -----------------------------------------------------------------------------
|
|
35
43
|
|
|
@@ -211,22 +219,28 @@ class aiServiceInstallArgBuilderMixin():
|
|
|
211
219
|
command += f" --tenant-entitlement-start-date \"{self.getParam('tenant_entitlement_start_date')}\"{newline}"
|
|
212
220
|
if self.getParam('tenant_entitlement_end_date') != "":
|
|
213
221
|
command += f" --tenant-entitlement-end-date \"{self.getParam('tenant_entitlement_end_date')}\"{newline}"
|
|
214
|
-
if self.getParam('
|
|
222
|
+
if self.getParam('mas_aibroker_s3_bucket_prefix') != "":
|
|
215
223
|
command += f" --mas-aibroker-s3-bucket-prefix \"{self.getParam('mas_aibroker_s3_bucket_prefix')}\"{newline}"
|
|
216
|
-
if self.getParam('
|
|
224
|
+
if self.getParam('mas_aibroker_s3_endpoint_url') != "":
|
|
217
225
|
command += f" --mas-aibroker-s3-endpoint-url \"{self.getParam('mas_aibroker_s3_endpoint_url')}\"{newline}"
|
|
218
|
-
if self.getParam('
|
|
226
|
+
if self.getParam('mas_aibroker_s3_region') != "":
|
|
219
227
|
command += f" --mas-aibroker-s3-region \"{self.getParam('mas_aibroker_s3_region')}\"{newline}"
|
|
220
|
-
if self.getParam('
|
|
228
|
+
if self.getParam('mas_aibroker_tenant_s3_bucket_prefix') != "":
|
|
221
229
|
command += f" --mas-aibroker-tenant-s3-bucket-prefix \"{self.getParam('mas_aibroker_tenant_s3_bucket_prefix')}\"{newline}"
|
|
222
|
-
if self.getParam('
|
|
230
|
+
if self.getParam('mas_aibroker_tenant_s3_region') != "":
|
|
223
231
|
command += f" --mas-aibroker-tenant-s3-region \"{self.getParam('mas_aibroker_tenant_s3_region')}\"{newline}"
|
|
224
|
-
if self.getParam('
|
|
232
|
+
if self.getParam('mas_aibroker_tenant_s3_endpoint_url') != "":
|
|
225
233
|
command += f" --mas-aibroker-tenant-s3-endpoint-url \"{self.getParam('mas_aibroker_tenant_s3_endpoint_url')}\"{newline}"
|
|
226
|
-
if self.getParam('
|
|
234
|
+
if self.getParam('mas_aibroker_tenant_s3_access_key') != "":
|
|
227
235
|
command += f" --mas-aibroker-tenant-s3-access-key \"{self.getParam('mas_aibroker_tenant_s3_access_key')}\"{newline}"
|
|
228
|
-
if self.getParam('
|
|
236
|
+
if self.getParam('mas_aibroker_tenant_s3_secret_key') != "":
|
|
229
237
|
command += f" --mas-aibroker-tenant-s3-secret-key \"{self.getParam('mas_aibroker_tenant_s3_secret_key')}\"{newline}"
|
|
238
|
+
if self.getParam('rsl_url') != "":
|
|
239
|
+
command += f" --rsl-url \"{self.getParam('rsl_url')}\"{newline}"
|
|
240
|
+
if self.getParam('rsl_org_id') != "":
|
|
241
|
+
command += f" --rsl-org-id \"{self.getParam('rsl_org_id')}\"{newline}"
|
|
242
|
+
if self.getParam('rsl_token') != "":
|
|
243
|
+
command += f" --rsl-token \"{self.getParam('rsl_token')}\"{newline}"
|
|
230
244
|
|
|
231
245
|
command += " --accept-license --no-confirm"
|
|
232
246
|
return command
|
|
@@ -82,7 +82,6 @@ class aiServiceInstallSummarizerMixin():
|
|
|
82
82
|
self.printParamSummary(" + Tenant entitlement type", "tenant_entitlement_type")
|
|
83
83
|
self.printParamSummary(" + Tenant start date", "tenant_entitlement_start_date")
|
|
84
84
|
self.printParamSummary(" + Tenant end date", "tenant_entitlement_end_date")
|
|
85
|
-
self.printParamSummary(" + Tenant end date", "tenant_entitlement_end_date")
|
|
86
85
|
self.printParamSummary(" + S3 bucket prefix", "mas_aibroker_s3_bucket_prefix")
|
|
87
86
|
self.printParamSummary(" + S3 endpoint url", "mas_aibroker_s3_endpoint_url")
|
|
88
87
|
self.printParamSummary(" + S3 bucket prefix (tenant level)", "mas_aibroker_tenant_s3_bucket_prefix")
|
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.29.0"
|
|
121
121
|
self.h1count = 0
|
|
122
122
|
self.h2count = 0
|
|
123
123
|
|
mas/cli/install/argBuilder.py
CHANGED
|
@@ -237,6 +237,9 @@ class installArgBuilderMixin():
|
|
|
237
237
|
if self.getParam('mas_appws_bindings_health_wsl_flag') == "true":
|
|
238
238
|
command += f" --manage-health-wsl{newline}"
|
|
239
239
|
|
|
240
|
+
if self.getParam('mas_appws_upgrade_type') == "true":
|
|
241
|
+
command += f" --manage-upgrade-type \"{self.getParam('mas_appws_upgrade_type')}\"{newline}"
|
|
242
|
+
|
|
240
243
|
# Facilities Advanced Settings
|
|
241
244
|
# -----------------------------------------------------------------------------
|
|
242
245
|
# TODO: Fix type for storage sizes and max conn pool size
|
mas/cli/install/argParser.py
CHANGED
|
@@ -550,6 +550,15 @@ manageArgGroup.add_argument(
|
|
|
550
550
|
help="Manage server timezone. Default is `GMT`"
|
|
551
551
|
)
|
|
552
552
|
|
|
553
|
+
manageArgGroup.add_argument(
|
|
554
|
+
"--manage-upgrade-type",
|
|
555
|
+
dest="mas_appws_upgrade_type",
|
|
556
|
+
required=False,
|
|
557
|
+
help="Set Manage upgrade type. Default is `regularUpgrade`",
|
|
558
|
+
default="regularUpgrade",
|
|
559
|
+
choices=["regularUpgrade", "onlineUpgrade"]
|
|
560
|
+
)
|
|
561
|
+
|
|
553
562
|
# Manage Attachments
|
|
554
563
|
# -----------------------------------------------------------------------------
|
|
555
564
|
manageArgGroup.add_argument(
|
mas/cli/install/params.py
CHANGED
mas/cli/install/summarizer.py
CHANGED
|
@@ -178,6 +178,8 @@ class InstallSummarizerMixin():
|
|
|
178
178
|
self.printSummary(" + Workday Applications", "Enabled" if "workday=" in self.getParam("mas_appws_components") else "Disabled")
|
|
179
179
|
self.printSummary(" + AIP", "Enabled" if "aip=" in self.getParam("mas_appws_components") else "Disabled")
|
|
180
180
|
|
|
181
|
+
self.printParamSummary("+ Upgrade Type", "mas_appws_upgrade_type")
|
|
182
|
+
|
|
181
183
|
self.printParamSummary("+ Server bundle size", "mas_app_settings_server_bundles_size")
|
|
182
184
|
self.printParamSummary("+ Enable JMS queues", "mas_app_settings_default_jms")
|
|
183
185
|
self.printParamSummary("+ Server Timezone", "mas_app_settings_server_timezone")
|
|
@@ -74,7 +74,7 @@ spec:
|
|
|
74
74
|
|
|
75
75
|
# If configmap/approval-app-cfg-$(params.mas_app_id) exists then set STATUS=pending and wait for it to be changed to "approved"
|
|
76
76
|
- name: app-cfg-post-verify
|
|
77
|
-
image: quay.io/ibmmas/cli:13.
|
|
77
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
78
78
|
imagePullPolicy: $(params.image_pull_policy)
|
|
79
79
|
command:
|
|
80
80
|
- /opt/app-root/src/wait-for-configmap.sh
|
|
@@ -497,7 +497,7 @@ spec:
|
|
|
497
497
|
command:
|
|
498
498
|
- /opt/app-root/src/run-role.sh
|
|
499
499
|
- aibroker_tenant
|
|
500
|
-
image: quay.io/ibmmas/cli:13.
|
|
500
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
501
501
|
imagePullPolicy: $(params.image_pull_policy)
|
|
502
502
|
workingDir: /workspace/configs
|
|
503
503
|
|
|
@@ -889,7 +889,7 @@ spec:
|
|
|
889
889
|
command:
|
|
890
890
|
- /opt/app-root/src/run-role.sh
|
|
891
891
|
- aibroker
|
|
892
|
-
image: quay.io/ibmmas/cli:13.
|
|
892
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
893
893
|
imagePullPolicy: $(params.image_pull_policy)
|
|
894
894
|
workingDir: /workspace/configs
|
|
895
895
|
|
|
@@ -1005,7 +1005,7 @@ spec:
|
|
|
1005
1005
|
command:
|
|
1006
1006
|
- /opt/app-root/src/run-role.sh
|
|
1007
1007
|
- appconnect
|
|
1008
|
-
image: quay.io/ibmmas/cli:13.
|
|
1008
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
1009
1009
|
imagePullPolicy: $(params.image_pull_policy)
|
|
1010
1010
|
workingDir: /workspace/configs
|
|
1011
1011
|
|
|
@@ -1123,7 +1123,7 @@ spec:
|
|
|
1123
1123
|
command:
|
|
1124
1124
|
- /opt/app-root/src/run-role.sh
|
|
1125
1125
|
- arcgis
|
|
1126
|
-
image: quay.io/ibmmas/cli:13.
|
|
1126
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
1127
1127
|
imagePullPolicy: $(params.image_pull_policy)
|
|
1128
1128
|
# --------------------------------------------------------------------------------
|
|
1129
1129
|
# /home/runner/work/cli/cli/tekton/target/tasks/cert-manager.yaml
|
|
@@ -1193,7 +1193,7 @@ spec:
|
|
|
1193
1193
|
command:
|
|
1194
1194
|
- /opt/app-root/src/run-role.sh
|
|
1195
1195
|
- cert_manager
|
|
1196
|
-
image: quay.io/ibmmas/cli:13.
|
|
1196
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
1197
1197
|
imagePullPolicy: $(params.image_pull_policy)
|
|
1198
1198
|
workingDir: /workspace/configs
|
|
1199
1199
|
# --------------------------------------------------------------------------------
|
|
@@ -1259,7 +1259,7 @@ spec:
|
|
|
1259
1259
|
command:
|
|
1260
1260
|
- /opt/app-root/src/run-role.sh
|
|
1261
1261
|
- common_services
|
|
1262
|
-
image: quay.io/ibmmas/cli:13.
|
|
1262
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
1263
1263
|
imagePullPolicy: $(params.image_pull_policy)
|
|
1264
1264
|
workingDir: /workspace/configs
|
|
1265
1265
|
# --------------------------------------------------------------------------------
|
|
@@ -1386,7 +1386,7 @@ spec:
|
|
|
1386
1386
|
command:
|
|
1387
1387
|
- /opt/app-root/src/run-role.sh
|
|
1388
1388
|
- cos
|
|
1389
|
-
image: quay.io/ibmmas/cli:13.
|
|
1389
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
1390
1390
|
imagePullPolicy: $(params.image_pull_policy)
|
|
1391
1391
|
workingDir: /workspace/configs
|
|
1392
1392
|
|
|
@@ -1506,7 +1506,7 @@ spec:
|
|
|
1506
1506
|
command:
|
|
1507
1507
|
- /opt/app-root/src/run-role.sh
|
|
1508
1508
|
- cp4d_service
|
|
1509
|
-
image: quay.io/ibmmas/cli:13.
|
|
1509
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
1510
1510
|
imagePullPolicy: $(params.image_pull_policy)
|
|
1511
1511
|
workingDir: /workspace/configs
|
|
1512
1512
|
# --------------------------------------------------------------------------------
|
|
@@ -1623,7 +1623,7 @@ spec:
|
|
|
1623
1623
|
command:
|
|
1624
1624
|
- /opt/app-root/src/run-role.sh
|
|
1625
1625
|
- cp4d_service
|
|
1626
|
-
image: quay.io/ibmmas/cli:13.
|
|
1626
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
1627
1627
|
imagePullPolicy: $(params.image_pull_policy)
|
|
1628
1628
|
workingDir: /workspace/configs
|
|
1629
1629
|
|
|
@@ -1729,7 +1729,7 @@ spec:
|
|
|
1729
1729
|
command:
|
|
1730
1730
|
- /opt/app-root/src/run-role.sh
|
|
1731
1731
|
- cp4d
|
|
1732
|
-
image: quay.io/ibmmas/cli:13.
|
|
1732
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
1733
1733
|
imagePullPolicy: $(params.image_pull_policy)
|
|
1734
1734
|
# --------------------------------------------------------------------------------
|
|
1735
1735
|
# /home/runner/work/cli/cli/tekton/target/tasks/db2.yaml
|
|
@@ -2051,7 +2051,7 @@ spec:
|
|
|
2051
2051
|
command:
|
|
2052
2052
|
- /opt/app-root/src/run-role.sh
|
|
2053
2053
|
- db2
|
|
2054
|
-
image: quay.io/ibmmas/cli:13.
|
|
2054
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
2055
2055
|
imagePullPolicy: $(params.image_pull_policy)
|
|
2056
2056
|
workingDir: /workspace/configs
|
|
2057
2057
|
|
|
@@ -2161,7 +2161,7 @@ spec:
|
|
|
2161
2161
|
command:
|
|
2162
2162
|
- /opt/app-root/src/run-role.sh
|
|
2163
2163
|
- eck
|
|
2164
|
-
image: quay.io/ibmmas/cli:13.
|
|
2164
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
2165
2165
|
imagePullPolicy: $(params.image_pull_policy)
|
|
2166
2166
|
# --------------------------------------------------------------------------------
|
|
2167
2167
|
# /home/runner/work/cli/cli/tekton/target/tasks/gencfg-workspace.yaml
|
|
@@ -2250,7 +2250,7 @@ spec:
|
|
|
2250
2250
|
command:
|
|
2251
2251
|
- /opt/app-root/src/run-role.sh
|
|
2252
2252
|
- gencfg_workspace
|
|
2253
|
-
image: quay.io/ibmmas/cli:13.
|
|
2253
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
2254
2254
|
imagePullPolicy: $(params.image_pull_policy)
|
|
2255
2255
|
workingDir: /workspace/configs
|
|
2256
2256
|
|
|
@@ -2354,7 +2354,7 @@ spec:
|
|
|
2354
2354
|
- -c
|
|
2355
2355
|
name: gitops-bootstrap
|
|
2356
2356
|
imagePullPolicy: IfNotPresent
|
|
2357
|
-
image: quay.io/ibmmas/cli:13.
|
|
2357
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
2358
2358
|
workspaces:
|
|
2359
2359
|
- name: configs
|
|
2360
2360
|
# --------------------------------------------------------------------------------
|
|
@@ -2436,7 +2436,7 @@ spec:
|
|
|
2436
2436
|
- -c
|
|
2437
2437
|
name: gitops-cis-compliance
|
|
2438
2438
|
imagePullPolicy: IfNotPresent
|
|
2439
|
-
image: quay.io/ibmmas/cli:13.
|
|
2439
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
2440
2440
|
workspaces:
|
|
2441
2441
|
- name: configs
|
|
2442
2442
|
# --------------------------------------------------------------------------------
|
|
@@ -2771,7 +2771,7 @@ spec:
|
|
|
2771
2771
|
- -c
|
|
2772
2772
|
name: gitops-cluster
|
|
2773
2773
|
imagePullPolicy: Always
|
|
2774
|
-
image: quay.io/ibmmas/cli:13.
|
|
2774
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
2775
2775
|
workspaces:
|
|
2776
2776
|
- name: configs
|
|
2777
2777
|
# --------------------------------------------------------------------------------
|
|
@@ -2879,7 +2879,7 @@ spec:
|
|
|
2879
2879
|
- -c
|
|
2880
2880
|
name: gitops-cos
|
|
2881
2881
|
imagePullPolicy: IfNotPresent
|
|
2882
|
-
image: quay.io/ibmmas/cli:13.
|
|
2882
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
2883
2883
|
workspaces:
|
|
2884
2884
|
- name: configs
|
|
2885
2885
|
# --------------------------------------------------------------------------------
|
|
@@ -3027,7 +3027,7 @@ spec:
|
|
|
3027
3027
|
- -c
|
|
3028
3028
|
name: gitops-cp4d-service
|
|
3029
3029
|
imagePullPolicy: IfNotPresent
|
|
3030
|
-
image: quay.io/ibmmas/cli:13.
|
|
3030
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
3031
3031
|
workspaces:
|
|
3032
3032
|
- name: configs
|
|
3033
3033
|
- name: shared-gitops-configs
|
|
@@ -3156,7 +3156,7 @@ spec:
|
|
|
3156
3156
|
- -c
|
|
3157
3157
|
name: gitops-cp4d
|
|
3158
3158
|
imagePullPolicy: IfNotPresent
|
|
3159
|
-
image: quay.io/ibmmas/cli:13.
|
|
3159
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
3160
3160
|
workspaces:
|
|
3161
3161
|
- name: configs
|
|
3162
3162
|
- name: shared-gitops-configs
|
|
@@ -3447,7 +3447,7 @@ spec:
|
|
|
3447
3447
|
- -c
|
|
3448
3448
|
name: gitops-db2u-database
|
|
3449
3449
|
imagePullPolicy: Always
|
|
3450
|
-
image: quay.io/ibmmas/cli:13.
|
|
3450
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
3451
3451
|
workspaces:
|
|
3452
3452
|
- name: configs
|
|
3453
3453
|
- name: shared-gitops-configs
|
|
@@ -3545,7 +3545,7 @@ spec:
|
|
|
3545
3545
|
- -c
|
|
3546
3546
|
name: gitops-db2u
|
|
3547
3547
|
imagePullPolicy: IfNotPresent
|
|
3548
|
-
image: quay.io/ibmmas/cli:13.
|
|
3548
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
3549
3549
|
workspaces:
|
|
3550
3550
|
- name: configs
|
|
3551
3551
|
# --------------------------------------------------------------------------------
|
|
@@ -3672,7 +3672,7 @@ spec:
|
|
|
3672
3672
|
- -c
|
|
3673
3673
|
name: gitops-delete-jdbc-config
|
|
3674
3674
|
imagePullPolicy: IfNotPresent
|
|
3675
|
-
image: quay.io/ibmmas/cli:13.
|
|
3675
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
3676
3676
|
workspaces:
|
|
3677
3677
|
- name: configs
|
|
3678
3678
|
# --------------------------------------------------------------------------------
|
|
@@ -3770,7 +3770,7 @@ spec:
|
|
|
3770
3770
|
- -c
|
|
3771
3771
|
name: gitops-delete-kafka-config
|
|
3772
3772
|
imagePullPolicy: Always
|
|
3773
|
-
image: quay.io/ibmmas/cli:13.
|
|
3773
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
3774
3774
|
workspaces:
|
|
3775
3775
|
- name: configs
|
|
3776
3776
|
|
|
@@ -3862,7 +3862,7 @@ spec:
|
|
|
3862
3862
|
- -c
|
|
3863
3863
|
name: gitops-deprovision-app-config
|
|
3864
3864
|
imagePullPolicy: IfNotPresent
|
|
3865
|
-
image: quay.io/ibmmas/cli:13.
|
|
3865
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
3866
3866
|
workspaces:
|
|
3867
3867
|
- name: configs
|
|
3868
3868
|
# --------------------------------------------------------------------------------
|
|
@@ -3947,7 +3947,7 @@ spec:
|
|
|
3947
3947
|
- -c
|
|
3948
3948
|
name: gitops-deprovision-app-install
|
|
3949
3949
|
imagePullPolicy: IfNotPresent
|
|
3950
|
-
image: quay.io/ibmmas/cli:13.
|
|
3950
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
3951
3951
|
workspaces:
|
|
3952
3952
|
- name: configs
|
|
3953
3953
|
# --------------------------------------------------------------------------------
|
|
@@ -4032,7 +4032,7 @@ spec:
|
|
|
4032
4032
|
- -c
|
|
4033
4033
|
name: gitops-deprovision-cluster
|
|
4034
4034
|
imagePullPolicy: IfNotPresent
|
|
4035
|
-
image: quay.io/ibmmas/cli:13.
|
|
4035
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
4036
4036
|
workspaces:
|
|
4037
4037
|
- name: configs
|
|
4038
4038
|
# --------------------------------------------------------------------------------
|
|
@@ -4151,7 +4151,7 @@ spec:
|
|
|
4151
4151
|
- -c
|
|
4152
4152
|
name: gitops-deprovision-cos
|
|
4153
4153
|
imagePullPolicy: IfNotPresent
|
|
4154
|
-
image: quay.io/ibmmas/cli:13.
|
|
4154
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
4155
4155
|
workspaces:
|
|
4156
4156
|
- name: configs
|
|
4157
4157
|
# --------------------------------------------------------------------------------
|
|
@@ -4256,7 +4256,7 @@ spec:
|
|
|
4256
4256
|
- -c
|
|
4257
4257
|
name: gitops-deprovision-cp4d-service
|
|
4258
4258
|
imagePullPolicy: IfNotPresent
|
|
4259
|
-
image: quay.io/ibmmas/cli:13.
|
|
4259
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
4260
4260
|
workspaces:
|
|
4261
4261
|
- name: configs
|
|
4262
4262
|
# --------------------------------------------------------------------------------
|
|
@@ -4344,7 +4344,7 @@ spec:
|
|
|
4344
4344
|
- -c
|
|
4345
4345
|
name: gitops-deprovision-cp4d
|
|
4346
4346
|
imagePullPolicy: IfNotPresent
|
|
4347
|
-
image: quay.io/ibmmas/cli:13.
|
|
4347
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
4348
4348
|
workspaces:
|
|
4349
4349
|
- name: configs
|
|
4350
4350
|
# --------------------------------------------------------------------------------
|
|
@@ -4437,7 +4437,7 @@ spec:
|
|
|
4437
4437
|
- -c
|
|
4438
4438
|
name: gitops-deprovision-db2u-database
|
|
4439
4439
|
imagePullPolicy: IfNotPresent
|
|
4440
|
-
image: quay.io/ibmmas/cli:13.
|
|
4440
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
4441
4441
|
workspaces:
|
|
4442
4442
|
- name: configs
|
|
4443
4443
|
|
|
@@ -4520,7 +4520,7 @@ spec:
|
|
|
4520
4520
|
- -c
|
|
4521
4521
|
name: gitops-deprovision-db2u
|
|
4522
4522
|
imagePullPolicy: IfNotPresent
|
|
4523
|
-
image: quay.io/ibmmas/cli:13.
|
|
4523
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
4524
4524
|
workspaces:
|
|
4525
4525
|
- name: configs
|
|
4526
4526
|
|
|
@@ -4637,7 +4637,7 @@ spec:
|
|
|
4637
4637
|
- -c
|
|
4638
4638
|
name: gitops-deprovision-efs
|
|
4639
4639
|
imagePullPolicy: IfNotPresent
|
|
4640
|
-
image: quay.io/ibmmas/cli:13.
|
|
4640
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
4641
4641
|
workspaces:
|
|
4642
4642
|
- name: configs
|
|
4643
4643
|
|
|
@@ -4747,7 +4747,7 @@ spec:
|
|
|
4747
4747
|
- -c
|
|
4748
4748
|
name: gitops-deprovision-kafka
|
|
4749
4749
|
imagePullPolicy: IfNotPresent
|
|
4750
|
-
image: quay.io/ibmmas/cli:13.
|
|
4750
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
4751
4751
|
workspaces:
|
|
4752
4752
|
- name: configs
|
|
4753
4753
|
# --------------------------------------------------------------------------------
|
|
@@ -4850,7 +4850,7 @@ spec:
|
|
|
4850
4850
|
- -c
|
|
4851
4851
|
name: gitops-deprovision-mongo
|
|
4852
4852
|
imagePullPolicy: IfNotPresent
|
|
4853
|
-
image: quay.io/ibmmas/cli:13.
|
|
4853
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
4854
4854
|
workspaces:
|
|
4855
4855
|
- name: configs
|
|
4856
4856
|
|
|
@@ -4907,7 +4907,7 @@ spec:
|
|
|
4907
4907
|
- -c
|
|
4908
4908
|
name: gitops-deprovision-rosa
|
|
4909
4909
|
imagePullPolicy: IfNotPresent
|
|
4910
|
-
image: quay.io/ibmmas/cli:13.
|
|
4910
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
4911
4911
|
workspaces:
|
|
4912
4912
|
- name: configs
|
|
4913
4913
|
# --------------------------------------------------------------------------------
|
|
@@ -5112,7 +5112,7 @@ spec:
|
|
|
5112
5112
|
- -c
|
|
5113
5113
|
name: gitops-deprovision-suite-config
|
|
5114
5114
|
imagePullPolicy: IfNotPresent
|
|
5115
|
-
image: quay.io/ibmmas/cli:13.
|
|
5115
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
5116
5116
|
workspaces:
|
|
5117
5117
|
- name: configs
|
|
5118
5118
|
|
|
@@ -5210,7 +5210,7 @@ spec:
|
|
|
5210
5210
|
- -c
|
|
5211
5211
|
name: gitops-deprovision-suite-idp-config
|
|
5212
5212
|
imagePullPolicy: IfNotPresent
|
|
5213
|
-
image: quay.io/ibmmas/cli:13.
|
|
5213
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
5214
5214
|
workspaces:
|
|
5215
5215
|
- name: configs
|
|
5216
5216
|
# --------------------------------------------------------------------------------
|
|
@@ -5302,7 +5302,7 @@ spec:
|
|
|
5302
5302
|
- -c
|
|
5303
5303
|
name: gitops-deprovision-suite-objectstorage-config
|
|
5304
5304
|
imagePullPolicy: IfNotPresent
|
|
5305
|
-
image: quay.io/ibmmas/cli:13.
|
|
5305
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
5306
5306
|
workspaces:
|
|
5307
5307
|
- name: configs
|
|
5308
5308
|
# --------------------------------------------------------------------------------
|
|
@@ -5514,7 +5514,7 @@ spec:
|
|
|
5514
5514
|
- -c
|
|
5515
5515
|
name: gitops-deprovision-suite-smtp-config
|
|
5516
5516
|
imagePullPolicy: IfNotPresent
|
|
5517
|
-
image: quay.io/ibmmas/cli:13.
|
|
5517
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
5518
5518
|
workspaces:
|
|
5519
5519
|
- name: configs
|
|
5520
5520
|
# --------------------------------------------------------------------------------
|
|
@@ -5607,7 +5607,7 @@ spec:
|
|
|
5607
5607
|
- -c
|
|
5608
5608
|
name: gitops-deprovision-suite-watson-studio-config
|
|
5609
5609
|
imagePullPolicy: IfNotPresent
|
|
5610
|
-
image: quay.io/ibmmas/cli:13.
|
|
5610
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
5611
5611
|
workspaces:
|
|
5612
5612
|
- name: configs
|
|
5613
5613
|
# --------------------------------------------------------------------------------
|
|
@@ -5698,7 +5698,7 @@ spec:
|
|
|
5698
5698
|
- -c
|
|
5699
5699
|
name: gitops-deprovision-suite-workspace
|
|
5700
5700
|
imagePullPolicy: Always
|
|
5701
|
-
image: quay.io/ibmmas/cli:13.
|
|
5701
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
5702
5702
|
workspaces:
|
|
5703
5703
|
- name: configs
|
|
5704
5704
|
# --------------------------------------------------------------------------------
|
|
@@ -5791,7 +5791,7 @@ spec:
|
|
|
5791
5791
|
- -c
|
|
5792
5792
|
name: gitops-deprovision-suite
|
|
5793
5793
|
imagePullPolicy: IfNotPresent
|
|
5794
|
-
image: quay.io/ibmmas/cli:13.
|
|
5794
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
5795
5795
|
workspaces:
|
|
5796
5796
|
- name: configs
|
|
5797
5797
|
|
|
@@ -5904,7 +5904,7 @@ spec:
|
|
|
5904
5904
|
- -c
|
|
5905
5905
|
name: gitops-dro
|
|
5906
5906
|
imagePullPolicy: IfNotPresent
|
|
5907
|
-
image: quay.io/ibmmas/cli:13.
|
|
5907
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
5908
5908
|
workspaces:
|
|
5909
5909
|
- name: configs
|
|
5910
5910
|
# --------------------------------------------------------------------------------
|
|
@@ -6031,7 +6031,7 @@ spec:
|
|
|
6031
6031
|
- -c
|
|
6032
6032
|
name: gitops-efs
|
|
6033
6033
|
imagePullPolicy: IfNotPresent
|
|
6034
|
-
image: quay.io/ibmmas/cli:13.
|
|
6034
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
6035
6035
|
workspaces:
|
|
6036
6036
|
- name: configs
|
|
6037
6037
|
|
|
@@ -6166,7 +6166,7 @@ spec:
|
|
|
6166
6166
|
- -c
|
|
6167
6167
|
name: gitops-jdbc-config
|
|
6168
6168
|
imagePullPolicy: Always
|
|
6169
|
-
image: quay.io/ibmmas/cli:13.
|
|
6169
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
6170
6170
|
workspaces:
|
|
6171
6171
|
- name: configs
|
|
6172
6172
|
- name: shared-gitops-configs
|
|
@@ -6262,7 +6262,7 @@ spec:
|
|
|
6262
6262
|
- -c
|
|
6263
6263
|
name: gitops-kafka-config
|
|
6264
6264
|
imagePullPolicy: Always
|
|
6265
|
-
image: quay.io/ibmmas/cli:13.
|
|
6265
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
6266
6266
|
workspaces:
|
|
6267
6267
|
- name: configs
|
|
6268
6268
|
|
|
@@ -6384,7 +6384,7 @@ spec:
|
|
|
6384
6384
|
- -c
|
|
6385
6385
|
name: gitops-kafka
|
|
6386
6386
|
imagePullPolicy: IfNotPresent
|
|
6387
|
-
image: quay.io/ibmmas/cli:13.
|
|
6387
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
6388
6388
|
workspaces:
|
|
6389
6389
|
- name: configs
|
|
6390
6390
|
# --------------------------------------------------------------------------------
|
|
@@ -6510,7 +6510,7 @@ spec:
|
|
|
6510
6510
|
- -c
|
|
6511
6511
|
name: gitops-license
|
|
6512
6512
|
imagePullPolicy: Always
|
|
6513
|
-
image: quay.io/ibmmas/cli:13.
|
|
6513
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
6514
6514
|
workspaces:
|
|
6515
6515
|
- name: shared-entitlement
|
|
6516
6516
|
|
|
@@ -7229,7 +7229,7 @@ spec:
|
|
|
7229
7229
|
- -c
|
|
7230
7230
|
name: gitops-mas-fvt-preparer
|
|
7231
7231
|
imagePullPolicy: Always
|
|
7232
|
-
image: quay.io/ibmmas/cli:13.
|
|
7232
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
7233
7233
|
workspaces:
|
|
7234
7234
|
- name: configs
|
|
7235
7235
|
- name: shared-additional-configs
|
|
@@ -7729,7 +7729,7 @@ spec:
|
|
|
7729
7729
|
- -c
|
|
7730
7730
|
name: gitops-mas-initiator
|
|
7731
7731
|
imagePullPolicy: IfNotPresent
|
|
7732
|
-
image: quay.io/ibmmas/cli:13.
|
|
7732
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
7733
7733
|
workspaces:
|
|
7734
7734
|
- name: configs
|
|
7735
7735
|
# --------------------------------------------------------------------------------
|
|
@@ -7862,7 +7862,7 @@ spec:
|
|
|
7862
7862
|
- -c
|
|
7863
7863
|
name: gitops-mas-provisioner
|
|
7864
7864
|
imagePullPolicy: IfNotPresent
|
|
7865
|
-
image: quay.io/ibmmas/cli:13.
|
|
7865
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
7866
7866
|
workspaces:
|
|
7867
7867
|
- name: configs
|
|
7868
7868
|
# --------------------------------------------------------------------------------
|
|
@@ -7970,7 +7970,7 @@ spec:
|
|
|
7970
7970
|
- -c
|
|
7971
7971
|
name: gitops-mongo
|
|
7972
7972
|
imagePullPolicy: IfNotPresent
|
|
7973
|
-
image: quay.io/ibmmas/cli:13.
|
|
7973
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
7974
7974
|
workspaces:
|
|
7975
7975
|
- name: configs
|
|
7976
7976
|
|
|
@@ -8096,7 +8096,7 @@ spec:
|
|
|
8096
8096
|
- -c
|
|
8097
8097
|
name: gitops-nvidia-gpu
|
|
8098
8098
|
imagePullPolicy: IfNotPresent
|
|
8099
|
-
image: quay.io/ibmmas/cli:13.
|
|
8099
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
8100
8100
|
workspaces:
|
|
8101
8101
|
- name: configs
|
|
8102
8102
|
# --------------------------------------------------------------------------------
|
|
@@ -8214,7 +8214,7 @@ spec:
|
|
|
8214
8214
|
- -c
|
|
8215
8215
|
name: gitops-process-mongo-user
|
|
8216
8216
|
imagePullPolicy: IfNotPresent
|
|
8217
|
-
image: quay.io/ibmmas/cli:13.
|
|
8217
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
8218
8218
|
workspaces:
|
|
8219
8219
|
- name: configs
|
|
8220
8220
|
# --------------------------------------------------------------------------------
|
|
@@ -8270,7 +8270,7 @@ spec:
|
|
|
8270
8270
|
- -c
|
|
8271
8271
|
name: gitops-rosa
|
|
8272
8272
|
imagePullPolicy: IfNotPresent
|
|
8273
|
-
image: quay.io/ibmmas/cli:13.
|
|
8273
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
8274
8274
|
workspaces:
|
|
8275
8275
|
- name: configs
|
|
8276
8276
|
# --------------------------------------------------------------------------------
|
|
@@ -8457,7 +8457,7 @@ spec:
|
|
|
8457
8457
|
- -c
|
|
8458
8458
|
name: gitops-suite-app-config
|
|
8459
8459
|
imagePullPolicy: IfNotPresent
|
|
8460
|
-
image: quay.io/ibmmas/cli:13.
|
|
8460
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
8461
8461
|
workspaces:
|
|
8462
8462
|
- name: configs
|
|
8463
8463
|
- name: shared-gitops-configs
|
|
@@ -8615,7 +8615,7 @@ spec:
|
|
|
8615
8615
|
- -c
|
|
8616
8616
|
name: gitops-suite-app-install
|
|
8617
8617
|
imagePullPolicy: Always
|
|
8618
|
-
image: quay.io/ibmmas/cli:13.
|
|
8618
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
8619
8619
|
workspaces:
|
|
8620
8620
|
- name: configs
|
|
8621
8621
|
- name: shared-gitops-configs
|
|
@@ -8721,7 +8721,7 @@ spec:
|
|
|
8721
8721
|
- -c
|
|
8722
8722
|
name: gitops-suite-certs
|
|
8723
8723
|
imagePullPolicy: IfNotPresent
|
|
8724
|
-
image: quay.io/ibmmas/cli:13.
|
|
8724
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
8725
8725
|
workspaces:
|
|
8726
8726
|
- name: configs
|
|
8727
8727
|
- name: certificates
|
|
@@ -8896,7 +8896,7 @@ spec:
|
|
|
8896
8896
|
- -c
|
|
8897
8897
|
name: gitops-suite-config
|
|
8898
8898
|
imagePullPolicy: IfNotPresent
|
|
8899
|
-
image: quay.io/ibmmas/cli:13.
|
|
8899
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
8900
8900
|
workspaces:
|
|
8901
8901
|
- name: configs
|
|
8902
8902
|
- name: shared-additional-configs
|
|
@@ -8996,7 +8996,7 @@ spec:
|
|
|
8996
8996
|
- -c
|
|
8997
8997
|
name: gitops-suite-dns
|
|
8998
8998
|
imagePullPolicy: IfNotPresent
|
|
8999
|
-
image: quay.io/ibmmas/cli:13.
|
|
8999
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
9000
9000
|
workspaces:
|
|
9001
9001
|
- name: configs
|
|
9002
9002
|
|
|
@@ -9120,7 +9120,7 @@ spec:
|
|
|
9120
9120
|
- -c
|
|
9121
9121
|
name: gitops-suite-idp-config
|
|
9122
9122
|
imagePullPolicy: IfNotPresent
|
|
9123
|
-
image: quay.io/ibmmas/cli:13.
|
|
9123
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
9124
9124
|
workspaces:
|
|
9125
9125
|
- name: configs
|
|
9126
9126
|
- name: shared-additional-configs
|
|
@@ -9221,7 +9221,7 @@ spec:
|
|
|
9221
9221
|
- -c
|
|
9222
9222
|
name: gitops-suite-objectstorage-config
|
|
9223
9223
|
imagePullPolicy: IfNotPresent
|
|
9224
|
-
image: quay.io/ibmmas/cli:13.
|
|
9224
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
9225
9225
|
workspaces:
|
|
9226
9226
|
- name: configs
|
|
9227
9227
|
- name: shared-gitops-configs
|
|
@@ -9643,7 +9643,7 @@ spec:
|
|
|
9643
9643
|
- -c
|
|
9644
9644
|
name: gitops-suite-smtp-config
|
|
9645
9645
|
imagePullPolicy: IfNotPresent
|
|
9646
|
-
image: quay.io/ibmmas/cli:13.
|
|
9646
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
9647
9647
|
workspaces:
|
|
9648
9648
|
- name: configs
|
|
9649
9649
|
- name: shared-gitops-configs
|
|
@@ -9763,7 +9763,7 @@ spec:
|
|
|
9763
9763
|
- -c
|
|
9764
9764
|
name: gitops-suite-watson-studio-config
|
|
9765
9765
|
imagePullPolicy: IfNotPresent
|
|
9766
|
-
image: quay.io/ibmmas/cli:13.
|
|
9766
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
9767
9767
|
workspaces:
|
|
9768
9768
|
- name: configs
|
|
9769
9769
|
- name: shared-gitops-configs
|
|
@@ -9865,7 +9865,7 @@ spec:
|
|
|
9865
9865
|
- -c
|
|
9866
9866
|
name: gitops-suite-workspace
|
|
9867
9867
|
imagePullPolicy: IfNotPresent
|
|
9868
|
-
image: quay.io/ibmmas/cli:13.
|
|
9868
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
9869
9869
|
workspaces:
|
|
9870
9870
|
- name: configs
|
|
9871
9871
|
# --------------------------------------------------------------------------------
|
|
@@ -10208,7 +10208,7 @@ spec:
|
|
|
10208
10208
|
- -c
|
|
10209
10209
|
name: gitops-suite
|
|
10210
10210
|
imagePullPolicy: IfNotPresent
|
|
10211
|
-
image: quay.io/ibmmas/cli:13.
|
|
10211
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
10212
10212
|
workspaces:
|
|
10213
10213
|
- name: configs
|
|
10214
10214
|
- name: shared-gitops-configs
|
|
@@ -10258,7 +10258,7 @@ spec:
|
|
|
10258
10258
|
|
|
10259
10259
|
steps:
|
|
10260
10260
|
- name: grafana
|
|
10261
|
-
image: quay.io/ibmmas/cli:13.
|
|
10261
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
10262
10262
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10263
10263
|
command:
|
|
10264
10264
|
- /opt/app-root/src/run-role.sh
|
|
@@ -10392,7 +10392,7 @@ spec:
|
|
|
10392
10392
|
command:
|
|
10393
10393
|
- /opt/app-root/src/run-role.sh
|
|
10394
10394
|
- ibm_catalogs
|
|
10395
|
-
image: quay.io/ibmmas/cli:13.
|
|
10395
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
10396
10396
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10397
10397
|
workingDir: /workspace/configs
|
|
10398
10398
|
# --------------------------------------------------------------------------------
|
|
@@ -10634,7 +10634,7 @@ spec:
|
|
|
10634
10634
|
command:
|
|
10635
10635
|
- /opt/app-root/src/run-role.sh
|
|
10636
10636
|
- kafka
|
|
10637
|
-
image: quay.io/ibmmas/cli:13.
|
|
10637
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
10638
10638
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10639
10639
|
workingDir: /workspace/configs
|
|
10640
10640
|
|
|
@@ -10869,7 +10869,7 @@ spec:
|
|
|
10869
10869
|
command:
|
|
10870
10870
|
- /opt/app-root/src/run-role.sh
|
|
10871
10871
|
- kmodels
|
|
10872
|
-
image: quay.io/ibmmas/cli:13.
|
|
10872
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
10873
10873
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10874
10874
|
# --------------------------------------------------------------------------------
|
|
10875
10875
|
# /home/runner/work/cli/cli/tekton/target/tasks/mariadb.yaml
|
|
@@ -10990,7 +10990,7 @@ spec:
|
|
|
10990
10990
|
command:
|
|
10991
10991
|
- /opt/app-root/src/run-role.sh
|
|
10992
10992
|
- mariadb
|
|
10993
|
-
image: quay.io/ibmmas/cli:13.
|
|
10993
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
10994
10994
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10995
10995
|
# --------------------------------------------------------------------------------
|
|
10996
10996
|
# /home/runner/work/cli/cli/tekton/target/tasks/minio.yaml
|
|
@@ -11096,7 +11096,7 @@ spec:
|
|
|
11096
11096
|
command:
|
|
11097
11097
|
- /opt/app-root/src/run-role.sh
|
|
11098
11098
|
- minio
|
|
11099
|
-
image: quay.io/ibmmas/cli:13.
|
|
11099
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
11100
11100
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11101
11101
|
# --------------------------------------------------------------------------------
|
|
11102
11102
|
# /home/runner/work/cli/cli/tekton/target/tasks/mongodb.yaml
|
|
@@ -11274,7 +11274,7 @@ spec:
|
|
|
11274
11274
|
command:
|
|
11275
11275
|
- /opt/app-root/src/run-role.sh
|
|
11276
11276
|
- mongodb
|
|
11277
|
-
image: quay.io/ibmmas/cli:13.
|
|
11277
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
11278
11278
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11279
11279
|
workingDir: /workspace/configs
|
|
11280
11280
|
|
|
@@ -11317,7 +11317,7 @@ spec:
|
|
|
11317
11317
|
- $(params.base_output_dir)
|
|
11318
11318
|
- --extra-namespaces
|
|
11319
11319
|
- selenium
|
|
11320
|
-
image: quay.io/ibmmas/cli:13.
|
|
11320
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
11321
11321
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11322
11322
|
env:
|
|
11323
11323
|
- name: DEVOPS_MONGO_URI
|
|
@@ -11434,7 +11434,7 @@ spec:
|
|
|
11434
11434
|
command:
|
|
11435
11435
|
- /opt/app-root/src/run-role.sh
|
|
11436
11436
|
- nvidia_gpu
|
|
11437
|
-
image: quay.io/ibmmas/cli:13.
|
|
11437
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
11438
11438
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11439
11439
|
workingDir: /workspace/configs
|
|
11440
11440
|
|
|
@@ -11470,7 +11470,7 @@ spec:
|
|
|
11470
11470
|
# Verify Cluster
|
|
11471
11471
|
# -------------------------------------------------------------------------
|
|
11472
11472
|
- name: ocp-verify-cluster
|
|
11473
|
-
image: quay.io/ibmmas/cli:13.
|
|
11473
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
11474
11474
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11475
11475
|
command:
|
|
11476
11476
|
- /opt/app-root/src/run-role.sh
|
|
@@ -11512,7 +11512,7 @@ spec:
|
|
|
11512
11512
|
# Verify Catalogs
|
|
11513
11513
|
# -------------------------------------------------------------------------
|
|
11514
11514
|
- name: ocp-verify-catalogs
|
|
11515
|
-
image: quay.io/ibmmas/cli:13.
|
|
11515
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
11516
11516
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11517
11517
|
command:
|
|
11518
11518
|
- /opt/app-root/src/run-role.sh
|
|
@@ -11554,7 +11554,7 @@ spec:
|
|
|
11554
11554
|
# Verify Subscriptions
|
|
11555
11555
|
# -------------------------------------------------------------------------
|
|
11556
11556
|
- name: ocp-verify-subscriptions
|
|
11557
|
-
image: quay.io/ibmmas/cli:13.
|
|
11557
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
11558
11558
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11559
11559
|
command:
|
|
11560
11560
|
- /opt/app-root/src/run-role.sh
|
|
@@ -11596,7 +11596,7 @@ spec:
|
|
|
11596
11596
|
# Verify Workloads
|
|
11597
11597
|
# -------------------------------------------------------------------------
|
|
11598
11598
|
- name: ocp-verify-workloads
|
|
11599
|
-
image: quay.io/ibmmas/cli:13.
|
|
11599
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
11600
11600
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11601
11601
|
command:
|
|
11602
11602
|
- /opt/app-root/src/run-role.sh
|
|
@@ -11638,7 +11638,7 @@ spec:
|
|
|
11638
11638
|
# Verify Catalogs - Ingress TLS
|
|
11639
11639
|
# -------------------------------------------------------------------------
|
|
11640
11640
|
- name: ocp-verify-ingress
|
|
11641
|
-
image: quay.io/ibmmas/cli:13.
|
|
11641
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
11642
11642
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11643
11643
|
command:
|
|
11644
11644
|
- /opt/app-root/src/run-role.sh
|
|
@@ -11764,7 +11764,7 @@ spec:
|
|
|
11764
11764
|
command:
|
|
11765
11765
|
- /opt/app-root/src/run-role.sh
|
|
11766
11766
|
- ocp_verify
|
|
11767
|
-
image: quay.io/ibmmas/cli:13.
|
|
11767
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
11768
11768
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11769
11769
|
workingDir: /workspace/configs
|
|
11770
11770
|
# --------------------------------------------------------------------------------
|
|
@@ -11832,7 +11832,7 @@ spec:
|
|
|
11832
11832
|
command:
|
|
11833
11833
|
- /opt/app-root/src/run-role.sh
|
|
11834
11834
|
- ocs
|
|
11835
|
-
image: quay.io/ibmmas/cli:13.
|
|
11835
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
11836
11836
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11837
11837
|
workingDir: /workspace/configs
|
|
11838
11838
|
|
|
@@ -12068,7 +12068,7 @@ spec:
|
|
|
12068
12068
|
command:
|
|
12069
12069
|
- /opt/app-root/src/run-role.sh
|
|
12070
12070
|
- odh
|
|
12071
|
-
image: quay.io/ibmmas/cli:13.
|
|
12071
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
12072
12072
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12073
12073
|
# --------------------------------------------------------------------------------
|
|
12074
12074
|
# /home/runner/work/cli/cli/tekton/target/tasks/sls-registry-update.yaml
|
|
@@ -12244,7 +12244,7 @@ spec:
|
|
|
12244
12244
|
command:
|
|
12245
12245
|
- /opt/app-root/src/run-role.sh
|
|
12246
12246
|
- sls
|
|
12247
|
-
image: quay.io/ibmmas/cli:13.
|
|
12247
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
12248
12248
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12249
12249
|
workingDir: /workspace/configs
|
|
12250
12250
|
|
|
@@ -12457,6 +12457,10 @@ spec:
|
|
|
12457
12457
|
type: string
|
|
12458
12458
|
description: COS Bucket optionally used to hold attachments in Manage
|
|
12459
12459
|
default: ""
|
|
12460
|
+
- name: mas_appws_upgrade_type
|
|
12461
|
+
type: string
|
|
12462
|
+
description: Manage upgrade type
|
|
12463
|
+
default: ""
|
|
12460
12464
|
|
|
12461
12465
|
# Application Workspace - Operand (Predict)
|
|
12462
12466
|
- name: predict_deployment_size
|
|
@@ -12655,6 +12659,8 @@ spec:
|
|
|
12655
12659
|
value: $(params.cos_instance_name)
|
|
12656
12660
|
- name: COS_BUCKET_NAME
|
|
12657
12661
|
value: $(params.cos_bucket_name)
|
|
12662
|
+
- name: MAS_APPWS_UPGRADE_TYPE
|
|
12663
|
+
value: $(params.mas_appws_upgrade_type)
|
|
12658
12664
|
|
|
12659
12665
|
# Application Workspace - Operand (Predict)
|
|
12660
12666
|
- name: PREDICT_DEPLOYMENT_SIZE
|
|
@@ -12704,12 +12710,12 @@ spec:
|
|
|
12704
12710
|
command:
|
|
12705
12711
|
- /opt/app-root/src/run-role.sh
|
|
12706
12712
|
- suite_app_config
|
|
12707
|
-
image: quay.io/ibmmas/cli:13.
|
|
12713
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
12708
12714
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12709
12715
|
|
|
12710
12716
|
# If configmap/approval-app-cfg-$(params.mas_app_id) exists then set STATUS=pending and wait for it to be changed to "approved"
|
|
12711
12717
|
- name: app-cfg-post-verify
|
|
12712
|
-
image: quay.io/ibmmas/cli:13.
|
|
12718
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
12713
12719
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12714
12720
|
command:
|
|
12715
12721
|
- /opt/app-root/src/wait-for-configmap.sh
|
|
@@ -12904,7 +12910,7 @@ spec:
|
|
|
12904
12910
|
command:
|
|
12905
12911
|
- /opt/app-root/src/run-role.sh
|
|
12906
12912
|
- suite_app_install
|
|
12907
|
-
image: quay.io/ibmmas/cli:13.
|
|
12913
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
12908
12914
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12909
12915
|
|
|
12910
12916
|
workspaces:
|
|
@@ -12993,7 +12999,7 @@ spec:
|
|
|
12993
12999
|
command:
|
|
12994
13000
|
- /opt/app-root/src/run-role.sh
|
|
12995
13001
|
- suite_app_rollback
|
|
12996
|
-
image: quay.io/ibmmas/cli:13.
|
|
13002
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
12997
13003
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12998
13004
|
# --------------------------------------------------------------------------------
|
|
12999
13005
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-app-uninstall.yaml
|
|
@@ -13056,7 +13062,7 @@ spec:
|
|
|
13056
13062
|
command:
|
|
13057
13063
|
- /opt/app-root/src/run-role.sh
|
|
13058
13064
|
- suite_app_uninstall
|
|
13059
|
-
image: quay.io/ibmmas/cli:13.
|
|
13065
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
13060
13066
|
imagePullPolicy: $(params.image_pull_policy)
|
|
13061
13067
|
# --------------------------------------------------------------------------------
|
|
13062
13068
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-app-upgrade.yaml
|
|
@@ -13131,7 +13137,7 @@ spec:
|
|
|
13131
13137
|
command:
|
|
13132
13138
|
- /opt/app-root/src/run-role.sh
|
|
13133
13139
|
- suite_app_upgrade
|
|
13134
|
-
image: quay.io/ibmmas/cli:13.
|
|
13140
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
13135
13141
|
imagePullPolicy: $(params.image_pull_policy)
|
|
13136
13142
|
# --------------------------------------------------------------------------------
|
|
13137
13143
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-app-verify.yaml
|
|
@@ -13232,7 +13238,7 @@ spec:
|
|
|
13232
13238
|
command:
|
|
13233
13239
|
- /opt/app-root/src/run-role.sh
|
|
13234
13240
|
- suite_app_verify
|
|
13235
|
-
image: quay.io/ibmmas/cli:13.
|
|
13241
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
13236
13242
|
imagePullPolicy: $(params.image_pull_policy)
|
|
13237
13243
|
# --------------------------------------------------------------------------------
|
|
13238
13244
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-certs.yaml
|
|
@@ -13375,7 +13381,7 @@ spec:
|
|
|
13375
13381
|
command:
|
|
13376
13382
|
- /opt/app-root/src/run-role.sh
|
|
13377
13383
|
- suite_certs
|
|
13378
|
-
image: quay.io/ibmmas/cli:13.
|
|
13384
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
13379
13385
|
imagePullPolicy: $(params.image_pull_policy)
|
|
13380
13386
|
|
|
13381
13387
|
workspaces:
|
|
@@ -13442,7 +13448,7 @@ spec:
|
|
|
13442
13448
|
command:
|
|
13443
13449
|
- /opt/app-root/src/run-role.sh
|
|
13444
13450
|
- suite_config
|
|
13445
|
-
image: quay.io/ibmmas/cli:13.
|
|
13451
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
13446
13452
|
imagePullPolicy: $(params.image_pull_policy)
|
|
13447
13453
|
workingDir: /workspace/configs
|
|
13448
13454
|
|
|
@@ -13774,7 +13780,7 @@ spec:
|
|
|
13774
13780
|
command:
|
|
13775
13781
|
- /opt/app-root/src/run-role.sh
|
|
13776
13782
|
- suite_db2_setup_for_facilities
|
|
13777
|
-
image: quay.io/ibmmas/cli:13.
|
|
13783
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
13778
13784
|
imagePullPolicy: $(params.image_pull_policy)
|
|
13779
13785
|
workingDir: /workspace/configs
|
|
13780
13786
|
|
|
@@ -13846,7 +13852,7 @@ spec:
|
|
|
13846
13852
|
command:
|
|
13847
13853
|
- /opt/app-root/src/run-role.sh
|
|
13848
13854
|
- suite_db2_setup_for_manage
|
|
13849
|
-
image: quay.io/ibmmas/cli:13.
|
|
13855
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
13850
13856
|
imagePullPolicy: $(params.image_pull_policy)
|
|
13851
13857
|
# --------------------------------------------------------------------------------
|
|
13852
13858
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-dns.yaml
|
|
@@ -14036,7 +14042,7 @@ spec:
|
|
|
14036
14042
|
command:
|
|
14037
14043
|
- /opt/app-root/src/run-role.sh
|
|
14038
14044
|
- suite_dns
|
|
14039
|
-
image: quay.io/ibmmas/cli:13.
|
|
14045
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
14040
14046
|
imagePullPolicy: $(params.image_pull_policy)
|
|
14041
14047
|
# --------------------------------------------------------------------------------
|
|
14042
14048
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-install.yaml
|
|
@@ -14285,7 +14291,7 @@ spec:
|
|
|
14285
14291
|
command:
|
|
14286
14292
|
- /opt/app-root/src/run-role.sh
|
|
14287
14293
|
- suite_install
|
|
14288
|
-
image: quay.io/ibmmas/cli:13.
|
|
14294
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
14289
14295
|
imagePullPolicy: $(params.image_pull_policy)
|
|
14290
14296
|
workingDir: /workspace/configs
|
|
14291
14297
|
|
|
@@ -14373,7 +14379,7 @@ spec:
|
|
|
14373
14379
|
command:
|
|
14374
14380
|
- /opt/app-root/src/run-role.sh
|
|
14375
14381
|
- suite_rollback
|
|
14376
|
-
image: quay.io/ibmmas/cli:13.
|
|
14382
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
14377
14383
|
imagePullPolicy: $(params.image_pull_policy)
|
|
14378
14384
|
# --------------------------------------------------------------------------------
|
|
14379
14385
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-uninstall.yaml
|
|
@@ -14438,7 +14444,7 @@ spec:
|
|
|
14438
14444
|
command:
|
|
14439
14445
|
- /opt/app-root/src/run-role.sh
|
|
14440
14446
|
- suite_uninstall
|
|
14441
|
-
image: quay.io/ibmmas/cli:13.
|
|
14447
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
14442
14448
|
imagePullPolicy: $(params.image_pull_policy)
|
|
14443
14449
|
# --------------------------------------------------------------------------------
|
|
14444
14450
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-upgrade.yaml
|
|
@@ -14508,7 +14514,7 @@ spec:
|
|
|
14508
14514
|
command:
|
|
14509
14515
|
- /opt/app-root/src/run-role.sh
|
|
14510
14516
|
- suite_upgrade
|
|
14511
|
-
image: quay.io/ibmmas/cli:13.
|
|
14517
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
14512
14518
|
imagePullPolicy: $(params.image_pull_policy)
|
|
14513
14519
|
# --------------------------------------------------------------------------------
|
|
14514
14520
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-verify.yaml
|
|
@@ -14570,12 +14576,12 @@ spec:
|
|
|
14570
14576
|
command:
|
|
14571
14577
|
- /opt/app-root/src/run-role.sh
|
|
14572
14578
|
- suite_verify
|
|
14573
|
-
image: quay.io/ibmmas/cli:13.
|
|
14579
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
14574
14580
|
imagePullPolicy: $(params.image_pull_policy)
|
|
14575
14581
|
|
|
14576
14582
|
# If configmap/approval-suite-verify exists then set STATUS=pending and wait for it to be changed to "approved"
|
|
14577
14583
|
- name: suite-post-verify
|
|
14578
|
-
image: quay.io/ibmmas/cli:13.
|
|
14584
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
14579
14585
|
imagePullPolicy: $(params.image_pull_policy)
|
|
14580
14586
|
command:
|
|
14581
14587
|
- /opt/app-root/src/wait-for-configmap.sh
|
|
@@ -14698,7 +14704,7 @@ spec:
|
|
|
14698
14704
|
command:
|
|
14699
14705
|
- /opt/app-root/src/run-role.sh
|
|
14700
14706
|
- turbonomic
|
|
14701
|
-
image: quay.io/ibmmas/cli:13.
|
|
14707
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
14702
14708
|
imagePullPolicy: $(params.image_pull_policy)
|
|
14703
14709
|
# --------------------------------------------------------------------------------
|
|
14704
14710
|
# /home/runner/work/cli/cli/tekton/target/tasks/uds.yaml
|
|
@@ -14779,7 +14785,7 @@ spec:
|
|
|
14779
14785
|
# IBM User Data Services (UDS)
|
|
14780
14786
|
# -------------------------------------------------------------------------
|
|
14781
14787
|
- name: uds
|
|
14782
|
-
image: quay.io/ibmmas/cli:13.
|
|
14788
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
14783
14789
|
imagePullPolicy: $(params.image_pull_policy)
|
|
14784
14790
|
workingDir: /workspace/configs
|
|
14785
14791
|
command:
|
|
@@ -14842,7 +14848,7 @@ spec:
|
|
|
14842
14848
|
# IBM Data Reporter Operator (DRO)
|
|
14843
14849
|
# -------------------------------------------------------------------------
|
|
14844
14850
|
- name: dro
|
|
14845
|
-
image: quay.io/ibmmas/cli:13.
|
|
14851
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
14846
14852
|
imagePullPolicy: $(params.image_pull_policy)
|
|
14847
14853
|
workingDir: /workspace/configs
|
|
14848
14854
|
command:
|
|
@@ -14928,7 +14934,7 @@ spec:
|
|
|
14928
14934
|
description: "The value to set"
|
|
14929
14935
|
steps:
|
|
14930
14936
|
- name: update-configmap
|
|
14931
|
-
image: quay.io/ibmmas/cli:13.
|
|
14937
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
14932
14938
|
command:
|
|
14933
14939
|
- /opt/app-root/src/update-configmap.sh
|
|
14934
14940
|
env:
|
|
@@ -14975,7 +14981,7 @@ spec:
|
|
|
14975
14981
|
|
|
14976
14982
|
steps:
|
|
14977
14983
|
- name: wait-for-configmap
|
|
14978
|
-
image: quay.io/ibmmas/cli:13.
|
|
14984
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
14979
14985
|
command:
|
|
14980
14986
|
- /opt/app-root/src/wait-for-configmap.sh
|
|
14981
14987
|
env:
|
|
@@ -15056,7 +15062,7 @@ spec:
|
|
|
15056
15062
|
|
|
15057
15063
|
steps:
|
|
15058
15064
|
- name: wait-for-configmap
|
|
15059
|
-
image: quay.io/ibmmas/cli:13.
|
|
15065
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
15060
15066
|
command:
|
|
15061
15067
|
- /opt/app-root/src/wait-for-configmap.sh
|
|
15062
15068
|
env:
|
|
@@ -15116,7 +15122,7 @@ spec:
|
|
|
15116
15122
|
|
|
15117
15123
|
steps:
|
|
15118
15124
|
- name: wait
|
|
15119
|
-
image: quay.io/ibmmas/cli:13.
|
|
15125
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
15120
15126
|
command:
|
|
15121
15127
|
- /opt/app-root/src/wait-for-tekton.sh
|
|
15122
15128
|
env:
|
|
@@ -25460,6 +25466,10 @@ spec:
|
|
|
25460
25466
|
type: string
|
|
25461
25467
|
description: COS Bucket optionally used to hold attachments in Manage
|
|
25462
25468
|
default: ""
|
|
25469
|
+
- name: mas_appws_upgrade_type
|
|
25470
|
+
type: string
|
|
25471
|
+
description: Manage upgrade type
|
|
25472
|
+
default: "regularUpgrade"
|
|
25463
25473
|
|
|
25464
25474
|
# MAS Application Configuration - IBM Maximo Location Services for ESRI
|
|
25465
25475
|
# -----------------------------------------------------------------------------
|
|
@@ -27809,6 +27819,10 @@ spec:
|
|
|
27809
27819
|
type: string
|
|
27810
27820
|
description: COS Bucket optionally used to hold attachments in Manage
|
|
27811
27821
|
default: ""
|
|
27822
|
+
- name: mas_appws_upgrade_type
|
|
27823
|
+
type: string
|
|
27824
|
+
description: Manage upgrade type
|
|
27825
|
+
default: "regularUpgrade"
|
|
27812
27826
|
|
|
27813
27827
|
# MAS Application Configuration - IBM Maximo Location Services for ESRI
|
|
27814
27828
|
# -----------------------------------------------------------------------------
|
|
@@ -29838,6 +29852,8 @@ spec:
|
|
|
29838
29852
|
value: $(params.cos_instance_name)
|
|
29839
29853
|
- name: cos_bucket_name
|
|
29840
29854
|
value: $(params.cos_bucket_name)
|
|
29855
|
+
- name: mas_appws_upgrade_type
|
|
29856
|
+
value: $(params.mas_appws_upgrade_type)
|
|
29841
29857
|
|
|
29842
29858
|
# Custom Label Support
|
|
29843
29859
|
- name: custom_labels
|
|
@@ -32669,8 +32685,7 @@ spec:
|
|
|
32669
32685
|
- name: configmap_value
|
|
32670
32686
|
# An aggregate status of all the pipelineTasks under the tasks section (excluding the finally section).
|
|
32671
32687
|
# This variable is only available in the finally tasks and can have any one of the values (Succeeded, Failed, Completed, or None)
|
|
32672
|
-
value: $(tasks.status)
|
|
32673
|
-
# --------------------------------------------------------------------------------
|
|
32688
|
+
value: $(tasks.status)# --------------------------------------------------------------------------------
|
|
32674
32689
|
# /home/runner/work/cli/cli/tekton/target/pipelines/upgrade.yaml
|
|
32675
32690
|
# --------------------------------------------------------------------------------
|
|
32676
32691
|
---
|
|
@@ -33696,6 +33711,10 @@ spec:
|
|
|
33696
33711
|
type: string
|
|
33697
33712
|
description: COS Bucket optionally used to hold attachments in Manage
|
|
33698
33713
|
default: ""
|
|
33714
|
+
- name: mas_appws_upgrade_type
|
|
33715
|
+
type: string
|
|
33716
|
+
description: Manage upgrade type
|
|
33717
|
+
default: "regularUpgrade"
|
|
33699
33718
|
|
|
33700
33719
|
# MAS Application Configuration - IBM Maximo Location Services for ESRI
|
|
33701
33720
|
# -----------------------------------------------------------------------------
|
|
@@ -34587,6 +34606,8 @@ spec:
|
|
|
34587
34606
|
value: $(params.cos_instance_name)
|
|
34588
34607
|
- name: cos_bucket_name
|
|
34589
34608
|
value: $(params.cos_bucket_name)
|
|
34609
|
+
- name: mas_appws_upgrade_type
|
|
34610
|
+
value: $(params.mas_appws_upgrade_type)
|
|
34590
34611
|
- name: custom_labels
|
|
34591
34612
|
value: $(params.custom_labels)
|
|
34592
34613
|
runAfter:
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
mas/cli/__init__.py,sha256=
|
|
2
|
-
mas/cli/cli.py,sha256=
|
|
1
|
+
mas/cli/__init__.py,sha256=GU1ab9VE1CSUm-leWkI5CyI9oyOdPP2Y5nS-UHlM2bo,527
|
|
2
|
+
mas/cli/cli.py,sha256=7oTG_BGoEzhVo0FYL2BcZxK96tVvForEzrC4nBWmKXw,18933
|
|
3
3
|
mas/cli/displayMixins.py,sha256=e3lAx1DIOwsriDcNI0M2JyP1jeLOZKvId6sPrvWLyqs,5984
|
|
4
4
|
mas/cli/gencfg.py,sha256=kgbYihOcqGADK8XnrfcEoBawaY1qSGKuVNW1unACOnU,4433
|
|
5
5
|
mas/cli/validators.py,sha256=2mLqBfoFU4D3A84ma9namjpnPKR3a0XySSGXa_b7pWg,5495
|
|
6
6
|
mas/cli/aiservice/install/__init__.py,sha256=Af-TjB2oIy3bM-Rt3YNeJ_2ndsZZU7azqFkT5um7XQY,515
|
|
7
7
|
mas/cli/aiservice/install/app.py,sha256=zK9K4wx4kADrCQMeIVaDWDZ46_8h3o1-_hbEDH6rZt0,41423
|
|
8
|
-
mas/cli/aiservice/install/argBuilder.py,sha256=
|
|
8
|
+
mas/cli/aiservice/install/argBuilder.py,sha256=i6yGZ8oTgx42AmR7nTJp9te4Ofk17wXEG8i17vjZeTs,16341
|
|
9
9
|
mas/cli/aiservice/install/argParser.py,sha256=ilwn58CoZxUs54guscEiFD-loTB2iUgL4w18kz3MqA4,21441
|
|
10
10
|
mas/cli/aiservice/install/params.py,sha256=923Q-T-3VJqr7QZCvFUVu8syKVnMfy604al7xk9UtNY,3491
|
|
11
|
-
mas/cli/aiservice/install/summarizer.py,sha256=
|
|
11
|
+
mas/cli/aiservice/install/summarizer.py,sha256=SxJm5ofqTOyP6edOadOifsy6oxVcAb8XU6XrFW0lb0M,11312
|
|
12
12
|
mas/cli/install/__init__.py,sha256=v0WJlcdrSycWGT5ofFjRDV3jTZ8AqVCz1AGxok4Khtc,508
|
|
13
13
|
mas/cli/install/app.py,sha256=Op2reTxi9okJF0xUM04InADWtEg-d20mhc3sNY7zHtI,69019
|
|
14
|
-
mas/cli/install/argBuilder.py,sha256=
|
|
15
|
-
mas/cli/install/argParser.py,sha256=
|
|
14
|
+
mas/cli/install/argBuilder.py,sha256=Wk_XW7NJR3BiPHpVQGCqfk9L-D0blcyT3Jdywh0Mgz0,28556
|
|
15
|
+
mas/cli/install/argParser.py,sha256=Z1cUiJOd88wIJDPrOLvj2XSmPMf4dl1S5wmCI4Hbw74,35420
|
|
16
16
|
mas/cli/install/catalogs.py,sha256=p9WFQSA6vcQNiOrlAGCmr5e5IwHJTL0D9QU-e1wco6E,804
|
|
17
|
-
mas/cli/install/params.py,sha256=
|
|
18
|
-
mas/cli/install/summarizer.py,sha256=
|
|
17
|
+
mas/cli/install/params.py,sha256=apG9ZxZYzYJajiTvEQdLD5poiQfAQEfadlAM3PzaTR4,5680
|
|
18
|
+
mas/cli/install/summarizer.py,sha256=IfKn-rHYoTubM1Gn3J7zuc90yFfei1KFWVOwKMQrefk,22129
|
|
19
19
|
mas/cli/install/settings/__init__.py,sha256=RdyBSh-rM0wkuvILVzJ1gxjOtLuQ1mF6QbEL0MyiKIY,1034
|
|
20
20
|
mas/cli/install/settings/additionalConfigs.py,sha256=hFN7OIiPmmAoo8h_5JiMLtW9r30zK1mMKuPqPpFf1mc,10187
|
|
21
21
|
mas/cli/install/settings/db2Settings.py,sha256=zFw1wiZTGFLdUsQUKY0l5dWne4ZXQhKuksSO0Q_86AM,16825
|
|
@@ -24,7 +24,7 @@ mas/cli/install/settings/manageSettings.py,sha256=TZIdAY_xUc751i-Vs6cXhVI3ul4MCn
|
|
|
24
24
|
mas/cli/install/settings/mongodbSettings.py,sha256=aZdQHpeMwLVznrJWAkJsZu2Ok9t4Dkra2RGa_uKJHaY,2604
|
|
25
25
|
mas/cli/install/settings/turbonomicSettings.py,sha256=ul4eWf53b1NCzJTFsEPX6DWM23YUlWILYBygplqXYlU,1631
|
|
26
26
|
mas/cli/templates/facilities-configs.yml.j2,sha256=Er4UwxUl1Y3rtjIPMExVM8EXNcbesMusgLcRV050B1s,774
|
|
27
|
-
mas/cli/templates/ibm-mas-tekton.yaml,sha256=
|
|
27
|
+
mas/cli/templates/ibm-mas-tekton.yaml,sha256=xBQme92nzUx3jvW5UbW8uUkFvTzOWSqag8lI1ulxcIs,1109247
|
|
28
28
|
mas/cli/templates/jdbccfg.yml.j2,sha256=cANbwkUkKEPQp-P3_BB_Llbt94457Ciagah2hOdySIM,1644
|
|
29
29
|
mas/cli/templates/suite_mongocfg.yml.j2,sha256=WrgJUfGyvfaRIHjY5VR_zLZ5irTpV5khKNq76ejIxKU,1606
|
|
30
30
|
mas/cli/templates/pod-templates/best-effort/ibm-data-dictionary-assetdatadictionary.yml,sha256=8VG_FDFcEjWNaAOZTcS58Pe0tWOXC10SJLloNqzEMC8,757
|
|
@@ -107,8 +107,8 @@ mas/cli/upgrade/__init__.py,sha256=v0WJlcdrSycWGT5ofFjRDV3jTZ8AqVCz1AGxok4Khtc,5
|
|
|
107
107
|
mas/cli/upgrade/app.py,sha256=3Z7oVrQGJPrV5dZjXZuBGT78vODPDLXnHnfD27pxNDs,8926
|
|
108
108
|
mas/cli/upgrade/argParser.py,sha256=5JxAcbwKjFKCKnbucCxg7Xacdhjphb9nRORfsgB1h_0,2196
|
|
109
109
|
mas/cli/upgrade/settings/__init__.py,sha256=QI2CUsj-NXBU1qrPOsOk4MbeWnfNq0UOF3rYYc_1l2A,775
|
|
110
|
-
mas_cli-13.
|
|
111
|
-
mas_cli-13.
|
|
112
|
-
mas_cli-13.
|
|
113
|
-
mas_cli-13.
|
|
114
|
-
mas_cli-13.
|
|
110
|
+
mas_cli-13.29.0.data/scripts/mas-cli,sha256=ijL4Ecg_2fRtdrQ8Mk28qsi6o3O6KRIAUM8BUry5cPs,3621
|
|
111
|
+
mas_cli-13.29.0.dist-info/METADATA,sha256=G4WvFpj6a41MtCBncmlEwdD0oSBIafVj_FD8jiRrNNk,2259
|
|
112
|
+
mas_cli-13.29.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
113
|
+
mas_cli-13.29.0.dist-info/top_level.txt,sha256=_Hlsp7pvMvyV14LFg-vk1hULq30j61EILnnxMFIhhc8,4
|
|
114
|
+
mas_cli-13.29.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|