mas-cli 13.27.2__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 +143 -112
- {mas_cli-13.27.2.dist-info → mas_cli-13.29.0.dist-info}/METADATA +1 -1
- {mas_cli-13.27.2.dist-info → mas_cli-13.29.0.dist-info}/RECORD +14 -14
- {mas_cli-13.27.2.data → mas_cli-13.29.0.data}/scripts/mas-cli +0 -0
- {mas_cli-13.27.2.dist-info → mas_cli-13.29.0.dist-info}/WHEEL +0 -0
- {mas_cli-13.27.2.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
|
# --------------------------------------------------------------------------------
|
|
@@ -2528,6 +2528,9 @@ spec:
|
|
|
2528
2528
|
- name: ingress
|
|
2529
2529
|
type: string
|
|
2530
2530
|
default: "false"
|
|
2531
|
+
- name: cluster_nonshared
|
|
2532
|
+
type: string
|
|
2533
|
+
default: "false"
|
|
2531
2534
|
|
|
2532
2535
|
- name: redhat_cert_manager_install_plan
|
|
2533
2536
|
type: string
|
|
@@ -2658,6 +2661,8 @@ spec:
|
|
|
2658
2661
|
value: $(params.ocp_cluster_domain)
|
|
2659
2662
|
- name: INGRESS
|
|
2660
2663
|
value: $(params.ingress)
|
|
2664
|
+
- name: NONSHARED
|
|
2665
|
+
value: $(params.cluster_nonshared)
|
|
2661
2666
|
|
|
2662
2667
|
- name: REDHAT_CERT_MANAGER_INSTALL_PLAN
|
|
2663
2668
|
value: $(params.redhat_cert_manager_install_plan)
|
|
@@ -2766,7 +2771,7 @@ spec:
|
|
|
2766
2771
|
- -c
|
|
2767
2772
|
name: gitops-cluster
|
|
2768
2773
|
imagePullPolicy: Always
|
|
2769
|
-
image: quay.io/ibmmas/cli:13.
|
|
2774
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
2770
2775
|
workspaces:
|
|
2771
2776
|
- name: configs
|
|
2772
2777
|
# --------------------------------------------------------------------------------
|
|
@@ -2874,7 +2879,7 @@ spec:
|
|
|
2874
2879
|
- -c
|
|
2875
2880
|
name: gitops-cos
|
|
2876
2881
|
imagePullPolicy: IfNotPresent
|
|
2877
|
-
image: quay.io/ibmmas/cli:13.
|
|
2882
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
2878
2883
|
workspaces:
|
|
2879
2884
|
- name: configs
|
|
2880
2885
|
# --------------------------------------------------------------------------------
|
|
@@ -3022,7 +3027,7 @@ spec:
|
|
|
3022
3027
|
- -c
|
|
3023
3028
|
name: gitops-cp4d-service
|
|
3024
3029
|
imagePullPolicy: IfNotPresent
|
|
3025
|
-
image: quay.io/ibmmas/cli:13.
|
|
3030
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
3026
3031
|
workspaces:
|
|
3027
3032
|
- name: configs
|
|
3028
3033
|
- name: shared-gitops-configs
|
|
@@ -3151,7 +3156,7 @@ spec:
|
|
|
3151
3156
|
- -c
|
|
3152
3157
|
name: gitops-cp4d
|
|
3153
3158
|
imagePullPolicy: IfNotPresent
|
|
3154
|
-
image: quay.io/ibmmas/cli:13.
|
|
3159
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
3155
3160
|
workspaces:
|
|
3156
3161
|
- name: configs
|
|
3157
3162
|
- name: shared-gitops-configs
|
|
@@ -3442,7 +3447,7 @@ spec:
|
|
|
3442
3447
|
- -c
|
|
3443
3448
|
name: gitops-db2u-database
|
|
3444
3449
|
imagePullPolicy: Always
|
|
3445
|
-
image: quay.io/ibmmas/cli:13.
|
|
3450
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
3446
3451
|
workspaces:
|
|
3447
3452
|
- name: configs
|
|
3448
3453
|
- name: shared-gitops-configs
|
|
@@ -3540,7 +3545,7 @@ spec:
|
|
|
3540
3545
|
- -c
|
|
3541
3546
|
name: gitops-db2u
|
|
3542
3547
|
imagePullPolicy: IfNotPresent
|
|
3543
|
-
image: quay.io/ibmmas/cli:13.
|
|
3548
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
3544
3549
|
workspaces:
|
|
3545
3550
|
- name: configs
|
|
3546
3551
|
# --------------------------------------------------------------------------------
|
|
@@ -3667,7 +3672,7 @@ spec:
|
|
|
3667
3672
|
- -c
|
|
3668
3673
|
name: gitops-delete-jdbc-config
|
|
3669
3674
|
imagePullPolicy: IfNotPresent
|
|
3670
|
-
image: quay.io/ibmmas/cli:13.
|
|
3675
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
3671
3676
|
workspaces:
|
|
3672
3677
|
- name: configs
|
|
3673
3678
|
# --------------------------------------------------------------------------------
|
|
@@ -3765,7 +3770,7 @@ spec:
|
|
|
3765
3770
|
- -c
|
|
3766
3771
|
name: gitops-delete-kafka-config
|
|
3767
3772
|
imagePullPolicy: Always
|
|
3768
|
-
image: quay.io/ibmmas/cli:13.
|
|
3773
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
3769
3774
|
workspaces:
|
|
3770
3775
|
- name: configs
|
|
3771
3776
|
|
|
@@ -3857,7 +3862,7 @@ spec:
|
|
|
3857
3862
|
- -c
|
|
3858
3863
|
name: gitops-deprovision-app-config
|
|
3859
3864
|
imagePullPolicy: IfNotPresent
|
|
3860
|
-
image: quay.io/ibmmas/cli:13.
|
|
3865
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
3861
3866
|
workspaces:
|
|
3862
3867
|
- name: configs
|
|
3863
3868
|
# --------------------------------------------------------------------------------
|
|
@@ -3942,7 +3947,7 @@ spec:
|
|
|
3942
3947
|
- -c
|
|
3943
3948
|
name: gitops-deprovision-app-install
|
|
3944
3949
|
imagePullPolicy: IfNotPresent
|
|
3945
|
-
image: quay.io/ibmmas/cli:13.
|
|
3950
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
3946
3951
|
workspaces:
|
|
3947
3952
|
- name: configs
|
|
3948
3953
|
# --------------------------------------------------------------------------------
|
|
@@ -4027,7 +4032,7 @@ spec:
|
|
|
4027
4032
|
- -c
|
|
4028
4033
|
name: gitops-deprovision-cluster
|
|
4029
4034
|
imagePullPolicy: IfNotPresent
|
|
4030
|
-
image: quay.io/ibmmas/cli:13.
|
|
4035
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
4031
4036
|
workspaces:
|
|
4032
4037
|
- name: configs
|
|
4033
4038
|
# --------------------------------------------------------------------------------
|
|
@@ -4146,7 +4151,7 @@ spec:
|
|
|
4146
4151
|
- -c
|
|
4147
4152
|
name: gitops-deprovision-cos
|
|
4148
4153
|
imagePullPolicy: IfNotPresent
|
|
4149
|
-
image: quay.io/ibmmas/cli:13.
|
|
4154
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
4150
4155
|
workspaces:
|
|
4151
4156
|
- name: configs
|
|
4152
4157
|
# --------------------------------------------------------------------------------
|
|
@@ -4251,7 +4256,7 @@ spec:
|
|
|
4251
4256
|
- -c
|
|
4252
4257
|
name: gitops-deprovision-cp4d-service
|
|
4253
4258
|
imagePullPolicy: IfNotPresent
|
|
4254
|
-
image: quay.io/ibmmas/cli:13.
|
|
4259
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
4255
4260
|
workspaces:
|
|
4256
4261
|
- name: configs
|
|
4257
4262
|
# --------------------------------------------------------------------------------
|
|
@@ -4339,7 +4344,7 @@ spec:
|
|
|
4339
4344
|
- -c
|
|
4340
4345
|
name: gitops-deprovision-cp4d
|
|
4341
4346
|
imagePullPolicy: IfNotPresent
|
|
4342
|
-
image: quay.io/ibmmas/cli:13.
|
|
4347
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
4343
4348
|
workspaces:
|
|
4344
4349
|
- name: configs
|
|
4345
4350
|
# --------------------------------------------------------------------------------
|
|
@@ -4432,7 +4437,7 @@ spec:
|
|
|
4432
4437
|
- -c
|
|
4433
4438
|
name: gitops-deprovision-db2u-database
|
|
4434
4439
|
imagePullPolicy: IfNotPresent
|
|
4435
|
-
image: quay.io/ibmmas/cli:13.
|
|
4440
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
4436
4441
|
workspaces:
|
|
4437
4442
|
- name: configs
|
|
4438
4443
|
|
|
@@ -4515,7 +4520,7 @@ spec:
|
|
|
4515
4520
|
- -c
|
|
4516
4521
|
name: gitops-deprovision-db2u
|
|
4517
4522
|
imagePullPolicy: IfNotPresent
|
|
4518
|
-
image: quay.io/ibmmas/cli:13.
|
|
4523
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
4519
4524
|
workspaces:
|
|
4520
4525
|
- name: configs
|
|
4521
4526
|
|
|
@@ -4632,7 +4637,7 @@ spec:
|
|
|
4632
4637
|
- -c
|
|
4633
4638
|
name: gitops-deprovision-efs
|
|
4634
4639
|
imagePullPolicy: IfNotPresent
|
|
4635
|
-
image: quay.io/ibmmas/cli:13.
|
|
4640
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
4636
4641
|
workspaces:
|
|
4637
4642
|
- name: configs
|
|
4638
4643
|
|
|
@@ -4742,7 +4747,7 @@ spec:
|
|
|
4742
4747
|
- -c
|
|
4743
4748
|
name: gitops-deprovision-kafka
|
|
4744
4749
|
imagePullPolicy: IfNotPresent
|
|
4745
|
-
image: quay.io/ibmmas/cli:13.
|
|
4750
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
4746
4751
|
workspaces:
|
|
4747
4752
|
- name: configs
|
|
4748
4753
|
# --------------------------------------------------------------------------------
|
|
@@ -4845,7 +4850,7 @@ spec:
|
|
|
4845
4850
|
- -c
|
|
4846
4851
|
name: gitops-deprovision-mongo
|
|
4847
4852
|
imagePullPolicy: IfNotPresent
|
|
4848
|
-
image: quay.io/ibmmas/cli:13.
|
|
4853
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
4849
4854
|
workspaces:
|
|
4850
4855
|
- name: configs
|
|
4851
4856
|
|
|
@@ -4902,7 +4907,7 @@ spec:
|
|
|
4902
4907
|
- -c
|
|
4903
4908
|
name: gitops-deprovision-rosa
|
|
4904
4909
|
imagePullPolicy: IfNotPresent
|
|
4905
|
-
image: quay.io/ibmmas/cli:13.
|
|
4910
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
4906
4911
|
workspaces:
|
|
4907
4912
|
- name: configs
|
|
4908
4913
|
# --------------------------------------------------------------------------------
|
|
@@ -5107,7 +5112,7 @@ spec:
|
|
|
5107
5112
|
- -c
|
|
5108
5113
|
name: gitops-deprovision-suite-config
|
|
5109
5114
|
imagePullPolicy: IfNotPresent
|
|
5110
|
-
image: quay.io/ibmmas/cli:13.
|
|
5115
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
5111
5116
|
workspaces:
|
|
5112
5117
|
- name: configs
|
|
5113
5118
|
|
|
@@ -5205,7 +5210,7 @@ spec:
|
|
|
5205
5210
|
- -c
|
|
5206
5211
|
name: gitops-deprovision-suite-idp-config
|
|
5207
5212
|
imagePullPolicy: IfNotPresent
|
|
5208
|
-
image: quay.io/ibmmas/cli:13.
|
|
5213
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
5209
5214
|
workspaces:
|
|
5210
5215
|
- name: configs
|
|
5211
5216
|
# --------------------------------------------------------------------------------
|
|
@@ -5297,7 +5302,7 @@ spec:
|
|
|
5297
5302
|
- -c
|
|
5298
5303
|
name: gitops-deprovision-suite-objectstorage-config
|
|
5299
5304
|
imagePullPolicy: IfNotPresent
|
|
5300
|
-
image: quay.io/ibmmas/cli:13.
|
|
5305
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
5301
5306
|
workspaces:
|
|
5302
5307
|
- name: configs
|
|
5303
5308
|
# --------------------------------------------------------------------------------
|
|
@@ -5509,7 +5514,7 @@ spec:
|
|
|
5509
5514
|
- -c
|
|
5510
5515
|
name: gitops-deprovision-suite-smtp-config
|
|
5511
5516
|
imagePullPolicy: IfNotPresent
|
|
5512
|
-
image: quay.io/ibmmas/cli:13.
|
|
5517
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
5513
5518
|
workspaces:
|
|
5514
5519
|
- name: configs
|
|
5515
5520
|
# --------------------------------------------------------------------------------
|
|
@@ -5602,7 +5607,7 @@ spec:
|
|
|
5602
5607
|
- -c
|
|
5603
5608
|
name: gitops-deprovision-suite-watson-studio-config
|
|
5604
5609
|
imagePullPolicy: IfNotPresent
|
|
5605
|
-
image: quay.io/ibmmas/cli:13.
|
|
5610
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
5606
5611
|
workspaces:
|
|
5607
5612
|
- name: configs
|
|
5608
5613
|
# --------------------------------------------------------------------------------
|
|
@@ -5693,7 +5698,7 @@ spec:
|
|
|
5693
5698
|
- -c
|
|
5694
5699
|
name: gitops-deprovision-suite-workspace
|
|
5695
5700
|
imagePullPolicy: Always
|
|
5696
|
-
image: quay.io/ibmmas/cli:13.
|
|
5701
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
5697
5702
|
workspaces:
|
|
5698
5703
|
- name: configs
|
|
5699
5704
|
# --------------------------------------------------------------------------------
|
|
@@ -5786,7 +5791,7 @@ spec:
|
|
|
5786
5791
|
- -c
|
|
5787
5792
|
name: gitops-deprovision-suite
|
|
5788
5793
|
imagePullPolicy: IfNotPresent
|
|
5789
|
-
image: quay.io/ibmmas/cli:13.
|
|
5794
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
5790
5795
|
workspaces:
|
|
5791
5796
|
- name: configs
|
|
5792
5797
|
|
|
@@ -5899,7 +5904,7 @@ spec:
|
|
|
5899
5904
|
- -c
|
|
5900
5905
|
name: gitops-dro
|
|
5901
5906
|
imagePullPolicy: IfNotPresent
|
|
5902
|
-
image: quay.io/ibmmas/cli:13.
|
|
5907
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
5903
5908
|
workspaces:
|
|
5904
5909
|
- name: configs
|
|
5905
5910
|
# --------------------------------------------------------------------------------
|
|
@@ -6026,7 +6031,7 @@ spec:
|
|
|
6026
6031
|
- -c
|
|
6027
6032
|
name: gitops-efs
|
|
6028
6033
|
imagePullPolicy: IfNotPresent
|
|
6029
|
-
image: quay.io/ibmmas/cli:13.
|
|
6034
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
6030
6035
|
workspaces:
|
|
6031
6036
|
- name: configs
|
|
6032
6037
|
|
|
@@ -6161,7 +6166,7 @@ spec:
|
|
|
6161
6166
|
- -c
|
|
6162
6167
|
name: gitops-jdbc-config
|
|
6163
6168
|
imagePullPolicy: Always
|
|
6164
|
-
image: quay.io/ibmmas/cli:13.
|
|
6169
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
6165
6170
|
workspaces:
|
|
6166
6171
|
- name: configs
|
|
6167
6172
|
- name: shared-gitops-configs
|
|
@@ -6257,7 +6262,7 @@ spec:
|
|
|
6257
6262
|
- -c
|
|
6258
6263
|
name: gitops-kafka-config
|
|
6259
6264
|
imagePullPolicy: Always
|
|
6260
|
-
image: quay.io/ibmmas/cli:13.
|
|
6265
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
6261
6266
|
workspaces:
|
|
6262
6267
|
- name: configs
|
|
6263
6268
|
|
|
@@ -6379,7 +6384,7 @@ spec:
|
|
|
6379
6384
|
- -c
|
|
6380
6385
|
name: gitops-kafka
|
|
6381
6386
|
imagePullPolicy: IfNotPresent
|
|
6382
|
-
image: quay.io/ibmmas/cli:13.
|
|
6387
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
6383
6388
|
workspaces:
|
|
6384
6389
|
- name: configs
|
|
6385
6390
|
# --------------------------------------------------------------------------------
|
|
@@ -6505,7 +6510,7 @@ spec:
|
|
|
6505
6510
|
- -c
|
|
6506
6511
|
name: gitops-license
|
|
6507
6512
|
imagePullPolicy: Always
|
|
6508
|
-
image: quay.io/ibmmas/cli:13.
|
|
6513
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
6509
6514
|
workspaces:
|
|
6510
6515
|
- name: shared-entitlement
|
|
6511
6516
|
|
|
@@ -7224,7 +7229,7 @@ spec:
|
|
|
7224
7229
|
- -c
|
|
7225
7230
|
name: gitops-mas-fvt-preparer
|
|
7226
7231
|
imagePullPolicy: Always
|
|
7227
|
-
image: quay.io/ibmmas/cli:13.
|
|
7232
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
7228
7233
|
workspaces:
|
|
7229
7234
|
- name: configs
|
|
7230
7235
|
- name: shared-additional-configs
|
|
@@ -7724,7 +7729,7 @@ spec:
|
|
|
7724
7729
|
- -c
|
|
7725
7730
|
name: gitops-mas-initiator
|
|
7726
7731
|
imagePullPolicy: IfNotPresent
|
|
7727
|
-
image: quay.io/ibmmas/cli:13.
|
|
7732
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
7728
7733
|
workspaces:
|
|
7729
7734
|
- name: configs
|
|
7730
7735
|
# --------------------------------------------------------------------------------
|
|
@@ -7857,7 +7862,7 @@ spec:
|
|
|
7857
7862
|
- -c
|
|
7858
7863
|
name: gitops-mas-provisioner
|
|
7859
7864
|
imagePullPolicy: IfNotPresent
|
|
7860
|
-
image: quay.io/ibmmas/cli:13.
|
|
7865
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
7861
7866
|
workspaces:
|
|
7862
7867
|
- name: configs
|
|
7863
7868
|
# --------------------------------------------------------------------------------
|
|
@@ -7965,7 +7970,7 @@ spec:
|
|
|
7965
7970
|
- -c
|
|
7966
7971
|
name: gitops-mongo
|
|
7967
7972
|
imagePullPolicy: IfNotPresent
|
|
7968
|
-
image: quay.io/ibmmas/cli:13.
|
|
7973
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
7969
7974
|
workspaces:
|
|
7970
7975
|
- name: configs
|
|
7971
7976
|
|
|
@@ -8091,7 +8096,7 @@ spec:
|
|
|
8091
8096
|
- -c
|
|
8092
8097
|
name: gitops-nvidia-gpu
|
|
8093
8098
|
imagePullPolicy: IfNotPresent
|
|
8094
|
-
image: quay.io/ibmmas/cli:13.
|
|
8099
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
8095
8100
|
workspaces:
|
|
8096
8101
|
- name: configs
|
|
8097
8102
|
# --------------------------------------------------------------------------------
|
|
@@ -8209,7 +8214,7 @@ spec:
|
|
|
8209
8214
|
- -c
|
|
8210
8215
|
name: gitops-process-mongo-user
|
|
8211
8216
|
imagePullPolicy: IfNotPresent
|
|
8212
|
-
image: quay.io/ibmmas/cli:13.
|
|
8217
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
8213
8218
|
workspaces:
|
|
8214
8219
|
- name: configs
|
|
8215
8220
|
# --------------------------------------------------------------------------------
|
|
@@ -8265,7 +8270,7 @@ spec:
|
|
|
8265
8270
|
- -c
|
|
8266
8271
|
name: gitops-rosa
|
|
8267
8272
|
imagePullPolicy: IfNotPresent
|
|
8268
|
-
image: quay.io/ibmmas/cli:13.
|
|
8273
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
8269
8274
|
workspaces:
|
|
8270
8275
|
- name: configs
|
|
8271
8276
|
# --------------------------------------------------------------------------------
|
|
@@ -8452,7 +8457,7 @@ spec:
|
|
|
8452
8457
|
- -c
|
|
8453
8458
|
name: gitops-suite-app-config
|
|
8454
8459
|
imagePullPolicy: IfNotPresent
|
|
8455
|
-
image: quay.io/ibmmas/cli:13.
|
|
8460
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
8456
8461
|
workspaces:
|
|
8457
8462
|
- name: configs
|
|
8458
8463
|
- name: shared-gitops-configs
|
|
@@ -8610,7 +8615,7 @@ spec:
|
|
|
8610
8615
|
- -c
|
|
8611
8616
|
name: gitops-suite-app-install
|
|
8612
8617
|
imagePullPolicy: Always
|
|
8613
|
-
image: quay.io/ibmmas/cli:13.
|
|
8618
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
8614
8619
|
workspaces:
|
|
8615
8620
|
- name: configs
|
|
8616
8621
|
- name: shared-gitops-configs
|
|
@@ -8716,7 +8721,7 @@ spec:
|
|
|
8716
8721
|
- -c
|
|
8717
8722
|
name: gitops-suite-certs
|
|
8718
8723
|
imagePullPolicy: IfNotPresent
|
|
8719
|
-
image: quay.io/ibmmas/cli:13.
|
|
8724
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
8720
8725
|
workspaces:
|
|
8721
8726
|
- name: configs
|
|
8722
8727
|
- name: certificates
|
|
@@ -8891,7 +8896,7 @@ spec:
|
|
|
8891
8896
|
- -c
|
|
8892
8897
|
name: gitops-suite-config
|
|
8893
8898
|
imagePullPolicy: IfNotPresent
|
|
8894
|
-
image: quay.io/ibmmas/cli:13.
|
|
8899
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
8895
8900
|
workspaces:
|
|
8896
8901
|
- name: configs
|
|
8897
8902
|
- name: shared-additional-configs
|
|
@@ -8991,7 +8996,7 @@ spec:
|
|
|
8991
8996
|
- -c
|
|
8992
8997
|
name: gitops-suite-dns
|
|
8993
8998
|
imagePullPolicy: IfNotPresent
|
|
8994
|
-
image: quay.io/ibmmas/cli:13.
|
|
8999
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
8995
9000
|
workspaces:
|
|
8996
9001
|
- name: configs
|
|
8997
9002
|
|
|
@@ -9115,7 +9120,7 @@ spec:
|
|
|
9115
9120
|
- -c
|
|
9116
9121
|
name: gitops-suite-idp-config
|
|
9117
9122
|
imagePullPolicy: IfNotPresent
|
|
9118
|
-
image: quay.io/ibmmas/cli:13.
|
|
9123
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
9119
9124
|
workspaces:
|
|
9120
9125
|
- name: configs
|
|
9121
9126
|
- name: shared-additional-configs
|
|
@@ -9216,7 +9221,7 @@ spec:
|
|
|
9216
9221
|
- -c
|
|
9217
9222
|
name: gitops-suite-objectstorage-config
|
|
9218
9223
|
imagePullPolicy: IfNotPresent
|
|
9219
|
-
image: quay.io/ibmmas/cli:13.
|
|
9224
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
9220
9225
|
workspaces:
|
|
9221
9226
|
- name: configs
|
|
9222
9227
|
- name: shared-gitops-configs
|
|
@@ -9638,7 +9643,7 @@ spec:
|
|
|
9638
9643
|
- -c
|
|
9639
9644
|
name: gitops-suite-smtp-config
|
|
9640
9645
|
imagePullPolicy: IfNotPresent
|
|
9641
|
-
image: quay.io/ibmmas/cli:13.
|
|
9646
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
9642
9647
|
workspaces:
|
|
9643
9648
|
- name: configs
|
|
9644
9649
|
- name: shared-gitops-configs
|
|
@@ -9758,7 +9763,7 @@ spec:
|
|
|
9758
9763
|
- -c
|
|
9759
9764
|
name: gitops-suite-watson-studio-config
|
|
9760
9765
|
imagePullPolicy: IfNotPresent
|
|
9761
|
-
image: quay.io/ibmmas/cli:13.
|
|
9766
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
9762
9767
|
workspaces:
|
|
9763
9768
|
- name: configs
|
|
9764
9769
|
- name: shared-gitops-configs
|
|
@@ -9860,7 +9865,7 @@ spec:
|
|
|
9860
9865
|
- -c
|
|
9861
9866
|
name: gitops-suite-workspace
|
|
9862
9867
|
imagePullPolicy: IfNotPresent
|
|
9863
|
-
image: quay.io/ibmmas/cli:13.
|
|
9868
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
9864
9869
|
workspaces:
|
|
9865
9870
|
- name: configs
|
|
9866
9871
|
# --------------------------------------------------------------------------------
|
|
@@ -10203,7 +10208,7 @@ spec:
|
|
|
10203
10208
|
- -c
|
|
10204
10209
|
name: gitops-suite
|
|
10205
10210
|
imagePullPolicy: IfNotPresent
|
|
10206
|
-
image: quay.io/ibmmas/cli:13.
|
|
10211
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
10207
10212
|
workspaces:
|
|
10208
10213
|
- name: configs
|
|
10209
10214
|
- name: shared-gitops-configs
|
|
@@ -10253,7 +10258,7 @@ spec:
|
|
|
10253
10258
|
|
|
10254
10259
|
steps:
|
|
10255
10260
|
- name: grafana
|
|
10256
|
-
image: quay.io/ibmmas/cli:13.
|
|
10261
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
10257
10262
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10258
10263
|
command:
|
|
10259
10264
|
- /opt/app-root/src/run-role.sh
|
|
@@ -10387,7 +10392,7 @@ spec:
|
|
|
10387
10392
|
command:
|
|
10388
10393
|
- /opt/app-root/src/run-role.sh
|
|
10389
10394
|
- ibm_catalogs
|
|
10390
|
-
image: quay.io/ibmmas/cli:13.
|
|
10395
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
10391
10396
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10392
10397
|
workingDir: /workspace/configs
|
|
10393
10398
|
# --------------------------------------------------------------------------------
|
|
@@ -10629,7 +10634,7 @@ spec:
|
|
|
10629
10634
|
command:
|
|
10630
10635
|
- /opt/app-root/src/run-role.sh
|
|
10631
10636
|
- kafka
|
|
10632
|
-
image: quay.io/ibmmas/cli:13.
|
|
10637
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
10633
10638
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10634
10639
|
workingDir: /workspace/configs
|
|
10635
10640
|
|
|
@@ -10864,7 +10869,7 @@ spec:
|
|
|
10864
10869
|
command:
|
|
10865
10870
|
- /opt/app-root/src/run-role.sh
|
|
10866
10871
|
- kmodels
|
|
10867
|
-
image: quay.io/ibmmas/cli:13.
|
|
10872
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
10868
10873
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10869
10874
|
# --------------------------------------------------------------------------------
|
|
10870
10875
|
# /home/runner/work/cli/cli/tekton/target/tasks/mariadb.yaml
|
|
@@ -10985,7 +10990,7 @@ spec:
|
|
|
10985
10990
|
command:
|
|
10986
10991
|
- /opt/app-root/src/run-role.sh
|
|
10987
10992
|
- mariadb
|
|
10988
|
-
image: quay.io/ibmmas/cli:13.
|
|
10993
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
10989
10994
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10990
10995
|
# --------------------------------------------------------------------------------
|
|
10991
10996
|
# /home/runner/work/cli/cli/tekton/target/tasks/minio.yaml
|
|
@@ -11091,7 +11096,7 @@ spec:
|
|
|
11091
11096
|
command:
|
|
11092
11097
|
- /opt/app-root/src/run-role.sh
|
|
11093
11098
|
- minio
|
|
11094
|
-
image: quay.io/ibmmas/cli:13.
|
|
11099
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
11095
11100
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11096
11101
|
# --------------------------------------------------------------------------------
|
|
11097
11102
|
# /home/runner/work/cli/cli/tekton/target/tasks/mongodb.yaml
|
|
@@ -11269,7 +11274,7 @@ spec:
|
|
|
11269
11274
|
command:
|
|
11270
11275
|
- /opt/app-root/src/run-role.sh
|
|
11271
11276
|
- mongodb
|
|
11272
|
-
image: quay.io/ibmmas/cli:13.
|
|
11277
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
11273
11278
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11274
11279
|
workingDir: /workspace/configs
|
|
11275
11280
|
|
|
@@ -11312,7 +11317,7 @@ spec:
|
|
|
11312
11317
|
- $(params.base_output_dir)
|
|
11313
11318
|
- --extra-namespaces
|
|
11314
11319
|
- selenium
|
|
11315
|
-
image: quay.io/ibmmas/cli:13.
|
|
11320
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
11316
11321
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11317
11322
|
env:
|
|
11318
11323
|
- name: DEVOPS_MONGO_URI
|
|
@@ -11429,7 +11434,7 @@ spec:
|
|
|
11429
11434
|
command:
|
|
11430
11435
|
- /opt/app-root/src/run-role.sh
|
|
11431
11436
|
- nvidia_gpu
|
|
11432
|
-
image: quay.io/ibmmas/cli:13.
|
|
11437
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
11433
11438
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11434
11439
|
workingDir: /workspace/configs
|
|
11435
11440
|
|
|
@@ -11465,7 +11470,7 @@ spec:
|
|
|
11465
11470
|
# Verify Cluster
|
|
11466
11471
|
# -------------------------------------------------------------------------
|
|
11467
11472
|
- name: ocp-verify-cluster
|
|
11468
|
-
image: quay.io/ibmmas/cli:13.
|
|
11473
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
11469
11474
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11470
11475
|
command:
|
|
11471
11476
|
- /opt/app-root/src/run-role.sh
|
|
@@ -11507,7 +11512,7 @@ spec:
|
|
|
11507
11512
|
# Verify Catalogs
|
|
11508
11513
|
# -------------------------------------------------------------------------
|
|
11509
11514
|
- name: ocp-verify-catalogs
|
|
11510
|
-
image: quay.io/ibmmas/cli:13.
|
|
11515
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
11511
11516
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11512
11517
|
command:
|
|
11513
11518
|
- /opt/app-root/src/run-role.sh
|
|
@@ -11549,7 +11554,7 @@ spec:
|
|
|
11549
11554
|
# Verify Subscriptions
|
|
11550
11555
|
# -------------------------------------------------------------------------
|
|
11551
11556
|
- name: ocp-verify-subscriptions
|
|
11552
|
-
image: quay.io/ibmmas/cli:13.
|
|
11557
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
11553
11558
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11554
11559
|
command:
|
|
11555
11560
|
- /opt/app-root/src/run-role.sh
|
|
@@ -11591,7 +11596,7 @@ spec:
|
|
|
11591
11596
|
# Verify Workloads
|
|
11592
11597
|
# -------------------------------------------------------------------------
|
|
11593
11598
|
- name: ocp-verify-workloads
|
|
11594
|
-
image: quay.io/ibmmas/cli:13.
|
|
11599
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
11595
11600
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11596
11601
|
command:
|
|
11597
11602
|
- /opt/app-root/src/run-role.sh
|
|
@@ -11633,7 +11638,7 @@ spec:
|
|
|
11633
11638
|
# Verify Catalogs - Ingress TLS
|
|
11634
11639
|
# -------------------------------------------------------------------------
|
|
11635
11640
|
- name: ocp-verify-ingress
|
|
11636
|
-
image: quay.io/ibmmas/cli:13.
|
|
11641
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
11637
11642
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11638
11643
|
command:
|
|
11639
11644
|
- /opt/app-root/src/run-role.sh
|
|
@@ -11759,7 +11764,7 @@ spec:
|
|
|
11759
11764
|
command:
|
|
11760
11765
|
- /opt/app-root/src/run-role.sh
|
|
11761
11766
|
- ocp_verify
|
|
11762
|
-
image: quay.io/ibmmas/cli:13.
|
|
11767
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
11763
11768
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11764
11769
|
workingDir: /workspace/configs
|
|
11765
11770
|
# --------------------------------------------------------------------------------
|
|
@@ -11827,7 +11832,7 @@ spec:
|
|
|
11827
11832
|
command:
|
|
11828
11833
|
- /opt/app-root/src/run-role.sh
|
|
11829
11834
|
- ocs
|
|
11830
|
-
image: quay.io/ibmmas/cli:13.
|
|
11835
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
11831
11836
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11832
11837
|
workingDir: /workspace/configs
|
|
11833
11838
|
|
|
@@ -12063,7 +12068,7 @@ spec:
|
|
|
12063
12068
|
command:
|
|
12064
12069
|
- /opt/app-root/src/run-role.sh
|
|
12065
12070
|
- odh
|
|
12066
|
-
image: quay.io/ibmmas/cli:13.
|
|
12071
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
12067
12072
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12068
12073
|
# --------------------------------------------------------------------------------
|
|
12069
12074
|
# /home/runner/work/cli/cli/tekton/target/tasks/sls-registry-update.yaml
|
|
@@ -12239,7 +12244,7 @@ spec:
|
|
|
12239
12244
|
command:
|
|
12240
12245
|
- /opt/app-root/src/run-role.sh
|
|
12241
12246
|
- sls
|
|
12242
|
-
image: quay.io/ibmmas/cli:13.
|
|
12247
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
12243
12248
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12244
12249
|
workingDir: /workspace/configs
|
|
12245
12250
|
|
|
@@ -12452,6 +12457,10 @@ spec:
|
|
|
12452
12457
|
type: string
|
|
12453
12458
|
description: COS Bucket optionally used to hold attachments in Manage
|
|
12454
12459
|
default: ""
|
|
12460
|
+
- name: mas_appws_upgrade_type
|
|
12461
|
+
type: string
|
|
12462
|
+
description: Manage upgrade type
|
|
12463
|
+
default: ""
|
|
12455
12464
|
|
|
12456
12465
|
# Application Workspace - Operand (Predict)
|
|
12457
12466
|
- name: predict_deployment_size
|
|
@@ -12650,6 +12659,8 @@ spec:
|
|
|
12650
12659
|
value: $(params.cos_instance_name)
|
|
12651
12660
|
- name: COS_BUCKET_NAME
|
|
12652
12661
|
value: $(params.cos_bucket_name)
|
|
12662
|
+
- name: MAS_APPWS_UPGRADE_TYPE
|
|
12663
|
+
value: $(params.mas_appws_upgrade_type)
|
|
12653
12664
|
|
|
12654
12665
|
# Application Workspace - Operand (Predict)
|
|
12655
12666
|
- name: PREDICT_DEPLOYMENT_SIZE
|
|
@@ -12699,12 +12710,12 @@ spec:
|
|
|
12699
12710
|
command:
|
|
12700
12711
|
- /opt/app-root/src/run-role.sh
|
|
12701
12712
|
- suite_app_config
|
|
12702
|
-
image: quay.io/ibmmas/cli:13.
|
|
12713
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
12703
12714
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12704
12715
|
|
|
12705
12716
|
# If configmap/approval-app-cfg-$(params.mas_app_id) exists then set STATUS=pending and wait for it to be changed to "approved"
|
|
12706
12717
|
- name: app-cfg-post-verify
|
|
12707
|
-
image: quay.io/ibmmas/cli:13.
|
|
12718
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
12708
12719
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12709
12720
|
command:
|
|
12710
12721
|
- /opt/app-root/src/wait-for-configmap.sh
|
|
@@ -12899,7 +12910,7 @@ spec:
|
|
|
12899
12910
|
command:
|
|
12900
12911
|
- /opt/app-root/src/run-role.sh
|
|
12901
12912
|
- suite_app_install
|
|
12902
|
-
image: quay.io/ibmmas/cli:13.
|
|
12913
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
12903
12914
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12904
12915
|
|
|
12905
12916
|
workspaces:
|
|
@@ -12988,7 +12999,7 @@ spec:
|
|
|
12988
12999
|
command:
|
|
12989
13000
|
- /opt/app-root/src/run-role.sh
|
|
12990
13001
|
- suite_app_rollback
|
|
12991
|
-
image: quay.io/ibmmas/cli:13.
|
|
13002
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
12992
13003
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12993
13004
|
# --------------------------------------------------------------------------------
|
|
12994
13005
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-app-uninstall.yaml
|
|
@@ -13051,7 +13062,7 @@ spec:
|
|
|
13051
13062
|
command:
|
|
13052
13063
|
- /opt/app-root/src/run-role.sh
|
|
13053
13064
|
- suite_app_uninstall
|
|
13054
|
-
image: quay.io/ibmmas/cli:13.
|
|
13065
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
13055
13066
|
imagePullPolicy: $(params.image_pull_policy)
|
|
13056
13067
|
# --------------------------------------------------------------------------------
|
|
13057
13068
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-app-upgrade.yaml
|
|
@@ -13126,7 +13137,7 @@ spec:
|
|
|
13126
13137
|
command:
|
|
13127
13138
|
- /opt/app-root/src/run-role.sh
|
|
13128
13139
|
- suite_app_upgrade
|
|
13129
|
-
image: quay.io/ibmmas/cli:13.
|
|
13140
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
13130
13141
|
imagePullPolicy: $(params.image_pull_policy)
|
|
13131
13142
|
# --------------------------------------------------------------------------------
|
|
13132
13143
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-app-verify.yaml
|
|
@@ -13227,7 +13238,7 @@ spec:
|
|
|
13227
13238
|
command:
|
|
13228
13239
|
- /opt/app-root/src/run-role.sh
|
|
13229
13240
|
- suite_app_verify
|
|
13230
|
-
image: quay.io/ibmmas/cli:13.
|
|
13241
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
13231
13242
|
imagePullPolicy: $(params.image_pull_policy)
|
|
13232
13243
|
# --------------------------------------------------------------------------------
|
|
13233
13244
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-certs.yaml
|
|
@@ -13370,7 +13381,7 @@ spec:
|
|
|
13370
13381
|
command:
|
|
13371
13382
|
- /opt/app-root/src/run-role.sh
|
|
13372
13383
|
- suite_certs
|
|
13373
|
-
image: quay.io/ibmmas/cli:13.
|
|
13384
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
13374
13385
|
imagePullPolicy: $(params.image_pull_policy)
|
|
13375
13386
|
|
|
13376
13387
|
workspaces:
|
|
@@ -13437,7 +13448,7 @@ spec:
|
|
|
13437
13448
|
command:
|
|
13438
13449
|
- /opt/app-root/src/run-role.sh
|
|
13439
13450
|
- suite_config
|
|
13440
|
-
image: quay.io/ibmmas/cli:13.
|
|
13451
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
13441
13452
|
imagePullPolicy: $(params.image_pull_policy)
|
|
13442
13453
|
workingDir: /workspace/configs
|
|
13443
13454
|
|
|
@@ -13769,7 +13780,7 @@ spec:
|
|
|
13769
13780
|
command:
|
|
13770
13781
|
- /opt/app-root/src/run-role.sh
|
|
13771
13782
|
- suite_db2_setup_for_facilities
|
|
13772
|
-
image: quay.io/ibmmas/cli:13.
|
|
13783
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
13773
13784
|
imagePullPolicy: $(params.image_pull_policy)
|
|
13774
13785
|
workingDir: /workspace/configs
|
|
13775
13786
|
|
|
@@ -13841,7 +13852,7 @@ spec:
|
|
|
13841
13852
|
command:
|
|
13842
13853
|
- /opt/app-root/src/run-role.sh
|
|
13843
13854
|
- suite_db2_setup_for_manage
|
|
13844
|
-
image: quay.io/ibmmas/cli:13.
|
|
13855
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
13845
13856
|
imagePullPolicy: $(params.image_pull_policy)
|
|
13846
13857
|
# --------------------------------------------------------------------------------
|
|
13847
13858
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-dns.yaml
|
|
@@ -14031,7 +14042,7 @@ spec:
|
|
|
14031
14042
|
command:
|
|
14032
14043
|
- /opt/app-root/src/run-role.sh
|
|
14033
14044
|
- suite_dns
|
|
14034
|
-
image: quay.io/ibmmas/cli:13.
|
|
14045
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
14035
14046
|
imagePullPolicy: $(params.image_pull_policy)
|
|
14036
14047
|
# --------------------------------------------------------------------------------
|
|
14037
14048
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-install.yaml
|
|
@@ -14280,7 +14291,7 @@ spec:
|
|
|
14280
14291
|
command:
|
|
14281
14292
|
- /opt/app-root/src/run-role.sh
|
|
14282
14293
|
- suite_install
|
|
14283
|
-
image: quay.io/ibmmas/cli:13.
|
|
14294
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
14284
14295
|
imagePullPolicy: $(params.image_pull_policy)
|
|
14285
14296
|
workingDir: /workspace/configs
|
|
14286
14297
|
|
|
@@ -14368,7 +14379,7 @@ spec:
|
|
|
14368
14379
|
command:
|
|
14369
14380
|
- /opt/app-root/src/run-role.sh
|
|
14370
14381
|
- suite_rollback
|
|
14371
|
-
image: quay.io/ibmmas/cli:13.
|
|
14382
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
14372
14383
|
imagePullPolicy: $(params.image_pull_policy)
|
|
14373
14384
|
# --------------------------------------------------------------------------------
|
|
14374
14385
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-uninstall.yaml
|
|
@@ -14433,7 +14444,7 @@ spec:
|
|
|
14433
14444
|
command:
|
|
14434
14445
|
- /opt/app-root/src/run-role.sh
|
|
14435
14446
|
- suite_uninstall
|
|
14436
|
-
image: quay.io/ibmmas/cli:13.
|
|
14447
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
14437
14448
|
imagePullPolicy: $(params.image_pull_policy)
|
|
14438
14449
|
# --------------------------------------------------------------------------------
|
|
14439
14450
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-upgrade.yaml
|
|
@@ -14503,7 +14514,7 @@ spec:
|
|
|
14503
14514
|
command:
|
|
14504
14515
|
- /opt/app-root/src/run-role.sh
|
|
14505
14516
|
- suite_upgrade
|
|
14506
|
-
image: quay.io/ibmmas/cli:13.
|
|
14517
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
14507
14518
|
imagePullPolicy: $(params.image_pull_policy)
|
|
14508
14519
|
# --------------------------------------------------------------------------------
|
|
14509
14520
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-verify.yaml
|
|
@@ -14565,12 +14576,12 @@ spec:
|
|
|
14565
14576
|
command:
|
|
14566
14577
|
- /opt/app-root/src/run-role.sh
|
|
14567
14578
|
- suite_verify
|
|
14568
|
-
image: quay.io/ibmmas/cli:13.
|
|
14579
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
14569
14580
|
imagePullPolicy: $(params.image_pull_policy)
|
|
14570
14581
|
|
|
14571
14582
|
# If configmap/approval-suite-verify exists then set STATUS=pending and wait for it to be changed to "approved"
|
|
14572
14583
|
- name: suite-post-verify
|
|
14573
|
-
image: quay.io/ibmmas/cli:13.
|
|
14584
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
14574
14585
|
imagePullPolicy: $(params.image_pull_policy)
|
|
14575
14586
|
command:
|
|
14576
14587
|
- /opt/app-root/src/wait-for-configmap.sh
|
|
@@ -14693,7 +14704,7 @@ spec:
|
|
|
14693
14704
|
command:
|
|
14694
14705
|
- /opt/app-root/src/run-role.sh
|
|
14695
14706
|
- turbonomic
|
|
14696
|
-
image: quay.io/ibmmas/cli:13.
|
|
14707
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
14697
14708
|
imagePullPolicy: $(params.image_pull_policy)
|
|
14698
14709
|
# --------------------------------------------------------------------------------
|
|
14699
14710
|
# /home/runner/work/cli/cli/tekton/target/tasks/uds.yaml
|
|
@@ -14774,7 +14785,7 @@ spec:
|
|
|
14774
14785
|
# IBM User Data Services (UDS)
|
|
14775
14786
|
# -------------------------------------------------------------------------
|
|
14776
14787
|
- name: uds
|
|
14777
|
-
image: quay.io/ibmmas/cli:13.
|
|
14788
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
14778
14789
|
imagePullPolicy: $(params.image_pull_policy)
|
|
14779
14790
|
workingDir: /workspace/configs
|
|
14780
14791
|
command:
|
|
@@ -14837,7 +14848,7 @@ spec:
|
|
|
14837
14848
|
# IBM Data Reporter Operator (DRO)
|
|
14838
14849
|
# -------------------------------------------------------------------------
|
|
14839
14850
|
- name: dro
|
|
14840
|
-
image: quay.io/ibmmas/cli:13.
|
|
14851
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
14841
14852
|
imagePullPolicy: $(params.image_pull_policy)
|
|
14842
14853
|
workingDir: /workspace/configs
|
|
14843
14854
|
command:
|
|
@@ -14923,7 +14934,7 @@ spec:
|
|
|
14923
14934
|
description: "The value to set"
|
|
14924
14935
|
steps:
|
|
14925
14936
|
- name: update-configmap
|
|
14926
|
-
image: quay.io/ibmmas/cli:13.
|
|
14937
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
14927
14938
|
command:
|
|
14928
14939
|
- /opt/app-root/src/update-configmap.sh
|
|
14929
14940
|
env:
|
|
@@ -14970,7 +14981,7 @@ spec:
|
|
|
14970
14981
|
|
|
14971
14982
|
steps:
|
|
14972
14983
|
- name: wait-for-configmap
|
|
14973
|
-
image: quay.io/ibmmas/cli:13.
|
|
14984
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
14974
14985
|
command:
|
|
14975
14986
|
- /opt/app-root/src/wait-for-configmap.sh
|
|
14976
14987
|
env:
|
|
@@ -15051,7 +15062,7 @@ spec:
|
|
|
15051
15062
|
|
|
15052
15063
|
steps:
|
|
15053
15064
|
- name: wait-for-configmap
|
|
15054
|
-
image: quay.io/ibmmas/cli:13.
|
|
15065
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
15055
15066
|
command:
|
|
15056
15067
|
- /opt/app-root/src/wait-for-configmap.sh
|
|
15057
15068
|
env:
|
|
@@ -15111,7 +15122,7 @@ spec:
|
|
|
15111
15122
|
|
|
15112
15123
|
steps:
|
|
15113
15124
|
- name: wait
|
|
15114
|
-
image: quay.io/ibmmas/cli:13.
|
|
15125
|
+
image: quay.io/ibmmas/cli:13.29.0
|
|
15115
15126
|
command:
|
|
15116
15127
|
- /opt/app-root/src/wait-for-tekton.sh
|
|
15117
15128
|
env:
|
|
@@ -21836,6 +21847,9 @@ spec:
|
|
|
21836
21847
|
- name: ingress
|
|
21837
21848
|
type: string
|
|
21838
21849
|
default: "false"
|
|
21850
|
+
- name: cluster_nonshared
|
|
21851
|
+
type: string
|
|
21852
|
+
default: "false"
|
|
21839
21853
|
|
|
21840
21854
|
- name: group_sync_operator_cron_schedule
|
|
21841
21855
|
type: string
|
|
@@ -22005,6 +22019,8 @@ spec:
|
|
|
22005
22019
|
value: $(params.dns_provider)
|
|
22006
22020
|
- name: ingress
|
|
22007
22021
|
value: $(params.ingress)
|
|
22022
|
+
- name: cluster_nonshared
|
|
22023
|
+
value: $(params.cluster_nonshared)
|
|
22008
22024
|
|
|
22009
22025
|
- name: group_sync_operator_cron_schedule
|
|
22010
22026
|
value: $(params.group_sync_operator_cron_schedule)
|
|
@@ -25450,6 +25466,10 @@ spec:
|
|
|
25450
25466
|
type: string
|
|
25451
25467
|
description: COS Bucket optionally used to hold attachments in Manage
|
|
25452
25468
|
default: ""
|
|
25469
|
+
- name: mas_appws_upgrade_type
|
|
25470
|
+
type: string
|
|
25471
|
+
description: Manage upgrade type
|
|
25472
|
+
default: "regularUpgrade"
|
|
25453
25473
|
|
|
25454
25474
|
# MAS Application Configuration - IBM Maximo Location Services for ESRI
|
|
25455
25475
|
# -----------------------------------------------------------------------------
|
|
@@ -27799,6 +27819,10 @@ spec:
|
|
|
27799
27819
|
type: string
|
|
27800
27820
|
description: COS Bucket optionally used to hold attachments in Manage
|
|
27801
27821
|
default: ""
|
|
27822
|
+
- name: mas_appws_upgrade_type
|
|
27823
|
+
type: string
|
|
27824
|
+
description: Manage upgrade type
|
|
27825
|
+
default: "regularUpgrade"
|
|
27802
27826
|
|
|
27803
27827
|
# MAS Application Configuration - IBM Maximo Location Services for ESRI
|
|
27804
27828
|
# -----------------------------------------------------------------------------
|
|
@@ -29828,6 +29852,8 @@ spec:
|
|
|
29828
29852
|
value: $(params.cos_instance_name)
|
|
29829
29853
|
- name: cos_bucket_name
|
|
29830
29854
|
value: $(params.cos_bucket_name)
|
|
29855
|
+
- name: mas_appws_upgrade_type
|
|
29856
|
+
value: $(params.mas_appws_upgrade_type)
|
|
29831
29857
|
|
|
29832
29858
|
# Custom Label Support
|
|
29833
29859
|
- name: custom_labels
|
|
@@ -32659,8 +32685,7 @@ spec:
|
|
|
32659
32685
|
- name: configmap_value
|
|
32660
32686
|
# An aggregate status of all the pipelineTasks under the tasks section (excluding the finally section).
|
|
32661
32687
|
# This variable is only available in the finally tasks and can have any one of the values (Succeeded, Failed, Completed, or None)
|
|
32662
|
-
value: $(tasks.status)
|
|
32663
|
-
# --------------------------------------------------------------------------------
|
|
32688
|
+
value: $(tasks.status)# --------------------------------------------------------------------------------
|
|
32664
32689
|
# /home/runner/work/cli/cli/tekton/target/pipelines/upgrade.yaml
|
|
32665
32690
|
# --------------------------------------------------------------------------------
|
|
32666
32691
|
---
|
|
@@ -33686,6 +33711,10 @@ spec:
|
|
|
33686
33711
|
type: string
|
|
33687
33712
|
description: COS Bucket optionally used to hold attachments in Manage
|
|
33688
33713
|
default: ""
|
|
33714
|
+
- name: mas_appws_upgrade_type
|
|
33715
|
+
type: string
|
|
33716
|
+
description: Manage upgrade type
|
|
33717
|
+
default: "regularUpgrade"
|
|
33689
33718
|
|
|
33690
33719
|
# MAS Application Configuration - IBM Maximo Location Services for ESRI
|
|
33691
33720
|
# -----------------------------------------------------------------------------
|
|
@@ -34577,6 +34606,8 @@ spec:
|
|
|
34577
34606
|
value: $(params.cos_instance_name)
|
|
34578
34607
|
- name: cos_bucket_name
|
|
34579
34608
|
value: $(params.cos_bucket_name)
|
|
34609
|
+
- name: mas_appws_upgrade_type
|
|
34610
|
+
value: $(params.mas_appws_upgrade_type)
|
|
34580
34611
|
- name: custom_labels
|
|
34581
34612
|
value: $(params.custom_labels)
|
|
34582
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
|