mas-cli 13.13.0__py3-none-any.whl → 13.14.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of mas-cli might be problematic. Click here for more details.
- mas/cli/__init__.py +1 -1
- mas/cli/cli.py +1 -1
- mas/cli/install/app.py +5 -0
- mas/cli/install/settings/db2Settings.py +30 -27
- mas/cli/install/settings/manageSettings.py +10 -8
- mas/cli/templates/ibm-mas-tekton.yaml +126 -113
- {mas_cli-13.13.0.dist-info → mas_cli-13.14.0.dist-info}/METADATA +1 -1
- {mas_cli-13.13.0.dist-info → mas_cli-13.14.0.dist-info}/RECORD +11 -11
- {mas_cli-13.13.0.dist-info → mas_cli-13.14.0.dist-info}/WHEEL +1 -1
- {mas_cli-13.13.0.data → mas_cli-13.14.0.data}/scripts/mas-cli +0 -0
- {mas_cli-13.13.0.dist-info → mas_cli-13.14.0.dist-info}/top_level.txt +0 -0
mas/cli/__init__.py
CHANGED
mas/cli/cli.py
CHANGED
|
@@ -117,7 +117,7 @@ class BaseApp(PrintMixin, PromptMixin):
|
|
|
117
117
|
logging.getLogger('asyncio').setLevel(logging.INFO)
|
|
118
118
|
|
|
119
119
|
# Supports extended semver, unlike mas.cli.__version__
|
|
120
|
-
self.version = "13.
|
|
120
|
+
self.version = "13.14.0"
|
|
121
121
|
self.h1count = 0
|
|
122
122
|
self.h2count = 0
|
|
123
123
|
|
mas/cli/install/app.py
CHANGED
|
@@ -866,6 +866,8 @@ class InstallApp(BaseApp, InstallSettingsMixin, InstallSummarizerMixin, ConfigGe
|
|
|
866
866
|
}
|
|
867
867
|
|
|
868
868
|
self.configGrafana()
|
|
869
|
+
self.configSNO()
|
|
870
|
+
self.setDB2DefaultSettings()
|
|
869
871
|
|
|
870
872
|
for key, value in vars(self.args).items():
|
|
871
873
|
# These fields we just pass straight through to the parameters and fail if they are not set
|
|
@@ -1025,6 +1027,9 @@ class InstallApp(BaseApp, InstallSettingsMixin, InstallSummarizerMixin, ConfigGe
|
|
|
1025
1027
|
if self.getParam("is_full_manage") != "false":
|
|
1026
1028
|
self.setParam("is_full_manage", "true")
|
|
1027
1029
|
|
|
1030
|
+
# Configure Storage and Access mode
|
|
1031
|
+
self.manageStorageAndAccessMode()
|
|
1032
|
+
|
|
1028
1033
|
# Load the catalog information
|
|
1029
1034
|
self.chosenCatalog = getCatalog(self.getParam("mas_catalog_version"))
|
|
1030
1035
|
|
|
@@ -55,33 +55,7 @@ class Db2SettingsMixin():
|
|
|
55
55
|
f"The installer can setup one or more IBM Db2 instances in your OpenShift cluster for the use of applications that require a JDBC datasource (IoT, {self.manageAppName}, Monitor, & Predict) or you may choose to configure MAS to use an existing database"
|
|
56
56
|
])
|
|
57
57
|
|
|
58
|
-
self.
|
|
59
|
-
self.setParam("db2_cpu_limits", "6000m")
|
|
60
|
-
self.setParam("db2_memory_requests", "8Gi")
|
|
61
|
-
self.setParam("db2_memory_limits", "12Gi")
|
|
62
|
-
|
|
63
|
-
if self.isSNO():
|
|
64
|
-
# Set smaller defaults for SNO deployments
|
|
65
|
-
self.setParam("db2_meta_storage_size", "10Gi")
|
|
66
|
-
self.setParam("db2_backup_storage_size", "10Gi")
|
|
67
|
-
self.setParam("db2_logs_storage_size", "10Gi")
|
|
68
|
-
self.setParam("db2_temp_storage_size", "10Gi")
|
|
69
|
-
self.setParam("db2_data_storage_size", "20Gi")
|
|
70
|
-
|
|
71
|
-
# Configure the access mode to RWO
|
|
72
|
-
self.params["db2_meta_storage_accessmode"] = "ReadWriteOnce"
|
|
73
|
-
self.params["db2_backup_storage_accessmode"] = "ReadWriteOnce"
|
|
74
|
-
self.params["db2_logs_storage_accessmode"] = "ReadWriteOnce"
|
|
75
|
-
self.params["db2_data_storage_accessmode"] = "ReadWriteOnce"
|
|
76
|
-
|
|
77
|
-
# Also reduce the CPU requests
|
|
78
|
-
self.params["db2_cpu_requests"] = "300m"
|
|
79
|
-
else:
|
|
80
|
-
self.setParam("db2_meta_storage_size", "20Gi")
|
|
81
|
-
self.setParam("db2_backup_storage_size", "100Gi")
|
|
82
|
-
self.setParam("db2_logs_storage_size", "100Gi")
|
|
83
|
-
self.setParam("db2_temp_storage_size", "100Gi")
|
|
84
|
-
self.setParam("db2_data_storage_size", "100Gi")
|
|
58
|
+
self.setDB2DefaultSettings()
|
|
85
59
|
|
|
86
60
|
instanceId = self.getParam('mas_instance_id')
|
|
87
61
|
# Do we need to set up an IoT database?
|
|
@@ -201,3 +175,32 @@ class Db2SettingsMixin():
|
|
|
201
175
|
self.promptForString(" + Backup Volume", "db2_backup_storage_size", default=self.getParam("db2_backup_storage_size"))
|
|
202
176
|
else:
|
|
203
177
|
self.setParam("db2_namespace", "db2u")
|
|
178
|
+
|
|
179
|
+
def setDB2DefaultSettings(self) -> None:
|
|
180
|
+
|
|
181
|
+
self.setParam("db2_cpu_requests", "4000m")
|
|
182
|
+
self.setParam("db2_cpu_limits", "6000m")
|
|
183
|
+
self.setParam("db2_memory_requests", "8Gi")
|
|
184
|
+
self.setParam("db2_memory_limits", "12Gi")
|
|
185
|
+
|
|
186
|
+
if self.isSNO():
|
|
187
|
+
# Set smaller defaults for SNO deployments
|
|
188
|
+
self.setParam("db2_meta_storage_size", "10Gi")
|
|
189
|
+
self.setParam("db2_backup_storage_size", "10Gi")
|
|
190
|
+
self.setParam("db2_logs_storage_size", "10Gi")
|
|
191
|
+
self.setParam("db2_temp_storage_size", "10Gi")
|
|
192
|
+
self.setParam("db2_data_storage_size", "20Gi")
|
|
193
|
+
|
|
194
|
+
# Configure the access mode to RWO
|
|
195
|
+
self.params["db2_meta_storage_accessmode"] = "ReadWriteOnce"
|
|
196
|
+
self.params["db2_backup_storage_accessmode"] = "ReadWriteOnce"
|
|
197
|
+
self.params["db2_logs_storage_accessmode"] = "ReadWriteOnce"
|
|
198
|
+
self.params["db2_data_storage_accessmode"] = "ReadWriteOnce"
|
|
199
|
+
self.params["db2_cpu_requests"] = "300m"
|
|
200
|
+
|
|
201
|
+
else:
|
|
202
|
+
self.setParam("db2_meta_storage_size", "20Gi")
|
|
203
|
+
self.setParam("db2_backup_storage_size", "100Gi")
|
|
204
|
+
self.setParam("db2_logs_storage_size", "100Gi")
|
|
205
|
+
self.setParam("db2_temp_storage_size", "100Gi")
|
|
206
|
+
self.setParam("db2_data_storage_size", "100Gi")
|
|
@@ -52,14 +52,16 @@ class ManageSettingsMixin():
|
|
|
52
52
|
self.manageSettingsDatabase()
|
|
53
53
|
self.manageSettingsCustomizationArchive()
|
|
54
54
|
self.manageSettingsOther()
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
55
|
+
self.manageStorageAndAccessMode()
|
|
56
|
+
|
|
57
|
+
def manageStorageAndAccessMode(self) -> None:
|
|
58
|
+
# Default to RWX storage classes, but fall back to RWO in SNO or when user
|
|
59
|
+
# has chosen not to provide a RWX storage class
|
|
60
|
+
storageClass = self.getParam("storage_class_rwx")
|
|
61
|
+
accessMode = "ReadWriteMany"
|
|
62
|
+
if self.isSNO() or self.getParam("storage_class_rwx") == "none":
|
|
63
|
+
storageClass = self.getParam("storage_class_rwo")
|
|
64
|
+
accessMode = "ReadWriteOnce"
|
|
63
65
|
|
|
64
66
|
self.setParam("mas_app_settings_doclinks_pvc_storage_class", storageClass)
|
|
65
67
|
self.setParam("mas_app_settings_bim_pvc_storage_class", storageClass)
|
|
@@ -231,7 +231,7 @@ spec:
|
|
|
231
231
|
command:
|
|
232
232
|
- /opt/app-root/src/run-role.sh
|
|
233
233
|
- aibroker
|
|
234
|
-
image: quay.io/ibmmas/cli:13.
|
|
234
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
235
235
|
imagePullPolicy: $(params.image_pull_policy)
|
|
236
236
|
# --------------------------------------------------------------------------------
|
|
237
237
|
# /home/runner/work/cli/cli/tekton/target/tasks/appconnect.yaml
|
|
@@ -342,7 +342,7 @@ spec:
|
|
|
342
342
|
command:
|
|
343
343
|
- /opt/app-root/src/run-role.sh
|
|
344
344
|
- appconnect
|
|
345
|
-
image: quay.io/ibmmas/cli:13.
|
|
345
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
346
346
|
imagePullPolicy: $(params.image_pull_policy)
|
|
347
347
|
workingDir: /workspace/configs
|
|
348
348
|
|
|
@@ -460,7 +460,7 @@ spec:
|
|
|
460
460
|
command:
|
|
461
461
|
- /opt/app-root/src/run-role.sh
|
|
462
462
|
- arcgis
|
|
463
|
-
image: quay.io/ibmmas/cli:13.
|
|
463
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
464
464
|
imagePullPolicy: $(params.image_pull_policy)
|
|
465
465
|
# --------------------------------------------------------------------------------
|
|
466
466
|
# /home/runner/work/cli/cli/tekton/target/tasks/cert-manager.yaml
|
|
@@ -530,7 +530,7 @@ spec:
|
|
|
530
530
|
command:
|
|
531
531
|
- /opt/app-root/src/run-role.sh
|
|
532
532
|
- cert_manager
|
|
533
|
-
image: quay.io/ibmmas/cli:13.
|
|
533
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
534
534
|
imagePullPolicy: $(params.image_pull_policy)
|
|
535
535
|
workingDir: /workspace/configs
|
|
536
536
|
# --------------------------------------------------------------------------------
|
|
@@ -596,7 +596,7 @@ spec:
|
|
|
596
596
|
command:
|
|
597
597
|
- /opt/app-root/src/run-role.sh
|
|
598
598
|
- common_services
|
|
599
|
-
image: quay.io/ibmmas/cli:13.
|
|
599
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
600
600
|
imagePullPolicy: $(params.image_pull_policy)
|
|
601
601
|
workingDir: /workspace/configs
|
|
602
602
|
# --------------------------------------------------------------------------------
|
|
@@ -723,7 +723,7 @@ spec:
|
|
|
723
723
|
command:
|
|
724
724
|
- /opt/app-root/src/run-role.sh
|
|
725
725
|
- cos
|
|
726
|
-
image: quay.io/ibmmas/cli:13.
|
|
726
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
727
727
|
imagePullPolicy: $(params.image_pull_policy)
|
|
728
728
|
workingDir: /workspace/configs
|
|
729
729
|
|
|
@@ -843,7 +843,7 @@ spec:
|
|
|
843
843
|
command:
|
|
844
844
|
- /opt/app-root/src/run-role.sh
|
|
845
845
|
- cp4d_service
|
|
846
|
-
image: quay.io/ibmmas/cli:13.
|
|
846
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
847
847
|
imagePullPolicy: $(params.image_pull_policy)
|
|
848
848
|
workingDir: /workspace/configs
|
|
849
849
|
# --------------------------------------------------------------------------------
|
|
@@ -960,7 +960,7 @@ spec:
|
|
|
960
960
|
command:
|
|
961
961
|
- /opt/app-root/src/run-role.sh
|
|
962
962
|
- cp4d_service
|
|
963
|
-
image: quay.io/ibmmas/cli:13.
|
|
963
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
964
964
|
imagePullPolicy: $(params.image_pull_policy)
|
|
965
965
|
workingDir: /workspace/configs
|
|
966
966
|
|
|
@@ -1066,7 +1066,7 @@ spec:
|
|
|
1066
1066
|
command:
|
|
1067
1067
|
- /opt/app-root/src/run-role.sh
|
|
1068
1068
|
- cp4d
|
|
1069
|
-
image: quay.io/ibmmas/cli:13.
|
|
1069
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
1070
1070
|
imagePullPolicy: $(params.image_pull_policy)
|
|
1071
1071
|
# --------------------------------------------------------------------------------
|
|
1072
1072
|
# /home/runner/work/cli/cli/tekton/target/tasks/db2.yaml
|
|
@@ -1388,7 +1388,7 @@ spec:
|
|
|
1388
1388
|
command:
|
|
1389
1389
|
- /opt/app-root/src/run-role.sh
|
|
1390
1390
|
- db2
|
|
1391
|
-
image: quay.io/ibmmas/cli:13.
|
|
1391
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
1392
1392
|
imagePullPolicy: $(params.image_pull_policy)
|
|
1393
1393
|
workingDir: /workspace/configs
|
|
1394
1394
|
|
|
@@ -1498,7 +1498,7 @@ spec:
|
|
|
1498
1498
|
command:
|
|
1499
1499
|
- /opt/app-root/src/run-role.sh
|
|
1500
1500
|
- eck
|
|
1501
|
-
image: quay.io/ibmmas/cli:13.
|
|
1501
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
1502
1502
|
imagePullPolicy: $(params.image_pull_policy)
|
|
1503
1503
|
# --------------------------------------------------------------------------------
|
|
1504
1504
|
# /home/runner/work/cli/cli/tekton/target/tasks/gencfg-workspace.yaml
|
|
@@ -1587,7 +1587,7 @@ spec:
|
|
|
1587
1587
|
command:
|
|
1588
1588
|
- /opt/app-root/src/run-role.sh
|
|
1589
1589
|
- gencfg_workspace
|
|
1590
|
-
image: quay.io/ibmmas/cli:13.
|
|
1590
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
1591
1591
|
imagePullPolicy: $(params.image_pull_policy)
|
|
1592
1592
|
workingDir: /workspace/configs
|
|
1593
1593
|
|
|
@@ -1691,7 +1691,7 @@ spec:
|
|
|
1691
1691
|
- -c
|
|
1692
1692
|
name: gitops-bootstrap
|
|
1693
1693
|
imagePullPolicy: IfNotPresent
|
|
1694
|
-
image: quay.io/ibmmas/cli:13.
|
|
1694
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
1695
1695
|
workspaces:
|
|
1696
1696
|
- name: configs
|
|
1697
1697
|
# --------------------------------------------------------------------------------
|
|
@@ -1773,7 +1773,7 @@ spec:
|
|
|
1773
1773
|
- -c
|
|
1774
1774
|
name: gitops-cis-compliance
|
|
1775
1775
|
imagePullPolicy: IfNotPresent
|
|
1776
|
-
image: quay.io/ibmmas/cli:13.
|
|
1776
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
1777
1777
|
workspaces:
|
|
1778
1778
|
- name: configs
|
|
1779
1779
|
# --------------------------------------------------------------------------------
|
|
@@ -2078,7 +2078,7 @@ spec:
|
|
|
2078
2078
|
- -c
|
|
2079
2079
|
name: gitops-cluster
|
|
2080
2080
|
imagePullPolicy: Always
|
|
2081
|
-
image: quay.io/ibmmas/cli:13.
|
|
2081
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
2082
2082
|
workspaces:
|
|
2083
2083
|
- name: configs
|
|
2084
2084
|
# --------------------------------------------------------------------------------
|
|
@@ -2186,7 +2186,7 @@ spec:
|
|
|
2186
2186
|
- -c
|
|
2187
2187
|
name: gitops-cos
|
|
2188
2188
|
imagePullPolicy: IfNotPresent
|
|
2189
|
-
image: quay.io/ibmmas/cli:13.
|
|
2189
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
2190
2190
|
workspaces:
|
|
2191
2191
|
- name: configs
|
|
2192
2192
|
# --------------------------------------------------------------------------------
|
|
@@ -2334,7 +2334,7 @@ spec:
|
|
|
2334
2334
|
- -c
|
|
2335
2335
|
name: gitops-cp4d-service
|
|
2336
2336
|
imagePullPolicy: IfNotPresent
|
|
2337
|
-
image: quay.io/ibmmas/cli:13.
|
|
2337
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
2338
2338
|
workspaces:
|
|
2339
2339
|
- name: configs
|
|
2340
2340
|
- name: shared-gitops-configs
|
|
@@ -2463,7 +2463,7 @@ spec:
|
|
|
2463
2463
|
- -c
|
|
2464
2464
|
name: gitops-cp4d
|
|
2465
2465
|
imagePullPolicy: IfNotPresent
|
|
2466
|
-
image: quay.io/ibmmas/cli:13.
|
|
2466
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
2467
2467
|
workspaces:
|
|
2468
2468
|
- name: configs
|
|
2469
2469
|
- name: shared-gitops-configs
|
|
@@ -2754,7 +2754,7 @@ spec:
|
|
|
2754
2754
|
- -c
|
|
2755
2755
|
name: gitops-db2u-database
|
|
2756
2756
|
imagePullPolicy: Always
|
|
2757
|
-
image: quay.io/ibmmas/cli:13.
|
|
2757
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
2758
2758
|
workspaces:
|
|
2759
2759
|
- name: configs
|
|
2760
2760
|
- name: shared-gitops-configs
|
|
@@ -2852,7 +2852,7 @@ spec:
|
|
|
2852
2852
|
- -c
|
|
2853
2853
|
name: gitops-db2u
|
|
2854
2854
|
imagePullPolicy: IfNotPresent
|
|
2855
|
-
image: quay.io/ibmmas/cli:13.
|
|
2855
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
2856
2856
|
workspaces:
|
|
2857
2857
|
- name: configs
|
|
2858
2858
|
# --------------------------------------------------------------------------------
|
|
@@ -2979,7 +2979,7 @@ spec:
|
|
|
2979
2979
|
- -c
|
|
2980
2980
|
name: gitops-delete-jdbc-config
|
|
2981
2981
|
imagePullPolicy: IfNotPresent
|
|
2982
|
-
image: quay.io/ibmmas/cli:13.
|
|
2982
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
2983
2983
|
workspaces:
|
|
2984
2984
|
- name: configs
|
|
2985
2985
|
# --------------------------------------------------------------------------------
|
|
@@ -3077,7 +3077,7 @@ spec:
|
|
|
3077
3077
|
- -c
|
|
3078
3078
|
name: gitops-delete-kafka-config
|
|
3079
3079
|
imagePullPolicy: Always
|
|
3080
|
-
image: quay.io/ibmmas/cli:13.
|
|
3080
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
3081
3081
|
workspaces:
|
|
3082
3082
|
- name: configs
|
|
3083
3083
|
|
|
@@ -3169,7 +3169,7 @@ spec:
|
|
|
3169
3169
|
- -c
|
|
3170
3170
|
name: gitops-deprovision-app-config
|
|
3171
3171
|
imagePullPolicy: IfNotPresent
|
|
3172
|
-
image: quay.io/ibmmas/cli:13.
|
|
3172
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
3173
3173
|
workspaces:
|
|
3174
3174
|
- name: configs
|
|
3175
3175
|
# --------------------------------------------------------------------------------
|
|
@@ -3254,7 +3254,7 @@ spec:
|
|
|
3254
3254
|
- -c
|
|
3255
3255
|
name: gitops-deprovision-app-install
|
|
3256
3256
|
imagePullPolicy: IfNotPresent
|
|
3257
|
-
image: quay.io/ibmmas/cli:13.
|
|
3257
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
3258
3258
|
workspaces:
|
|
3259
3259
|
- name: configs
|
|
3260
3260
|
# --------------------------------------------------------------------------------
|
|
@@ -3339,7 +3339,7 @@ spec:
|
|
|
3339
3339
|
- -c
|
|
3340
3340
|
name: gitops-deprovision-cluster
|
|
3341
3341
|
imagePullPolicy: IfNotPresent
|
|
3342
|
-
image: quay.io/ibmmas/cli:13.
|
|
3342
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
3343
3343
|
workspaces:
|
|
3344
3344
|
- name: configs
|
|
3345
3345
|
# --------------------------------------------------------------------------------
|
|
@@ -3458,7 +3458,7 @@ spec:
|
|
|
3458
3458
|
- -c
|
|
3459
3459
|
name: gitops-deprovision-cos
|
|
3460
3460
|
imagePullPolicy: IfNotPresent
|
|
3461
|
-
image: quay.io/ibmmas/cli:13.
|
|
3461
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
3462
3462
|
workspaces:
|
|
3463
3463
|
- name: configs
|
|
3464
3464
|
# --------------------------------------------------------------------------------
|
|
@@ -3551,7 +3551,7 @@ spec:
|
|
|
3551
3551
|
- -c
|
|
3552
3552
|
name: gitops-deprovision-db2u-database
|
|
3553
3553
|
imagePullPolicy: IfNotPresent
|
|
3554
|
-
image: quay.io/ibmmas/cli:13.
|
|
3554
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
3555
3555
|
workspaces:
|
|
3556
3556
|
- name: configs
|
|
3557
3557
|
|
|
@@ -3634,7 +3634,7 @@ spec:
|
|
|
3634
3634
|
- -c
|
|
3635
3635
|
name: gitops-deprovision-db2u
|
|
3636
3636
|
imagePullPolicy: IfNotPresent
|
|
3637
|
-
image: quay.io/ibmmas/cli:13.
|
|
3637
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
3638
3638
|
workspaces:
|
|
3639
3639
|
- name: configs
|
|
3640
3640
|
|
|
@@ -3719,6 +3719,15 @@ spec:
|
|
|
3719
3719
|
--skip-delete-storage-class \
|
|
3720
3720
|
|| exit 1
|
|
3721
3721
|
|
|
3722
|
+
mas gitops-deprovision-efs -c $CLUSTER_NAME -m $MAS_INSTANCE_ID \
|
|
3723
|
+
--cloud-provider $CLOUD_PROVIDER \
|
|
3724
|
+
--aws-region $SM_AWS_REGION \
|
|
3725
|
+
--aws-secret-key $SM_AWS_SECRET_ACCESS_KEY \
|
|
3726
|
+
--aws-access-key $SM_AWS_ACCESS_KEY_ID \
|
|
3727
|
+
--efs-unique-id "efs-${CLUSTER_NAME}-${MAS_INSTANCE_ID}-facilities-db2" \
|
|
3728
|
+
--skip-delete-storage-class \
|
|
3729
|
+
|| exit 1
|
|
3730
|
+
|
|
3722
3731
|
mas gitops-deprovision-efs -c $CLUSTER_NAME -m $MAS_INSTANCE_ID \
|
|
3723
3732
|
--cloud-provider $CLOUD_PROVIDER \
|
|
3724
3733
|
--aws-region $SM_AWS_REGION \
|
|
@@ -3742,7 +3751,7 @@ spec:
|
|
|
3742
3751
|
- -c
|
|
3743
3752
|
name: gitops-deprovision-efs
|
|
3744
3753
|
imagePullPolicy: IfNotPresent
|
|
3745
|
-
image: quay.io/ibmmas/cli:13.
|
|
3754
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
3746
3755
|
workspaces:
|
|
3747
3756
|
- name: configs
|
|
3748
3757
|
|
|
@@ -3852,7 +3861,7 @@ spec:
|
|
|
3852
3861
|
- -c
|
|
3853
3862
|
name: gitops-deprovision-kafka
|
|
3854
3863
|
imagePullPolicy: IfNotPresent
|
|
3855
|
-
image: quay.io/ibmmas/cli:13.
|
|
3864
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
3856
3865
|
workspaces:
|
|
3857
3866
|
- name: configs
|
|
3858
3867
|
# --------------------------------------------------------------------------------
|
|
@@ -3955,7 +3964,7 @@ spec:
|
|
|
3955
3964
|
- -c
|
|
3956
3965
|
name: gitops-deprovision-mongo
|
|
3957
3966
|
imagePullPolicy: IfNotPresent
|
|
3958
|
-
image: quay.io/ibmmas/cli:13.
|
|
3967
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
3959
3968
|
workspaces:
|
|
3960
3969
|
- name: configs
|
|
3961
3970
|
|
|
@@ -4012,7 +4021,7 @@ spec:
|
|
|
4012
4021
|
- -c
|
|
4013
4022
|
name: gitops-deprovision-rosa
|
|
4014
4023
|
imagePullPolicy: IfNotPresent
|
|
4015
|
-
image: quay.io/ibmmas/cli:13.
|
|
4024
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
4016
4025
|
workspaces:
|
|
4017
4026
|
- name: configs
|
|
4018
4027
|
# --------------------------------------------------------------------------------
|
|
@@ -4217,7 +4226,7 @@ spec:
|
|
|
4217
4226
|
- -c
|
|
4218
4227
|
name: gitops-deprovision-suite-config
|
|
4219
4228
|
imagePullPolicy: IfNotPresent
|
|
4220
|
-
image: quay.io/ibmmas/cli:13.
|
|
4229
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
4221
4230
|
workspaces:
|
|
4222
4231
|
- name: configs
|
|
4223
4232
|
|
|
@@ -4315,7 +4324,7 @@ spec:
|
|
|
4315
4324
|
- -c
|
|
4316
4325
|
name: gitops-deprovision-suite-idp-config
|
|
4317
4326
|
imagePullPolicy: IfNotPresent
|
|
4318
|
-
image: quay.io/ibmmas/cli:13.
|
|
4327
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
4319
4328
|
workspaces:
|
|
4320
4329
|
- name: configs
|
|
4321
4330
|
# --------------------------------------------------------------------------------
|
|
@@ -4407,7 +4416,7 @@ spec:
|
|
|
4407
4416
|
- -c
|
|
4408
4417
|
name: gitops-deprovision-suite-objectstorage-config
|
|
4409
4418
|
imagePullPolicy: IfNotPresent
|
|
4410
|
-
image: quay.io/ibmmas/cli:13.
|
|
4419
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
4411
4420
|
workspaces:
|
|
4412
4421
|
- name: configs
|
|
4413
4422
|
# --------------------------------------------------------------------------------
|
|
@@ -4619,7 +4628,7 @@ spec:
|
|
|
4619
4628
|
- -c
|
|
4620
4629
|
name: gitops-deprovision-suite-smtp-config
|
|
4621
4630
|
imagePullPolicy: IfNotPresent
|
|
4622
|
-
image: quay.io/ibmmas/cli:13.
|
|
4631
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
4623
4632
|
workspaces:
|
|
4624
4633
|
- name: configs
|
|
4625
4634
|
# --------------------------------------------------------------------------------
|
|
@@ -4712,7 +4721,7 @@ spec:
|
|
|
4712
4721
|
- -c
|
|
4713
4722
|
name: gitops-deprovision-suite-watson-studio-config
|
|
4714
4723
|
imagePullPolicy: IfNotPresent
|
|
4715
|
-
image: quay.io/ibmmas/cli:13.
|
|
4724
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
4716
4725
|
workspaces:
|
|
4717
4726
|
- name: configs
|
|
4718
4727
|
# --------------------------------------------------------------------------------
|
|
@@ -4803,7 +4812,7 @@ spec:
|
|
|
4803
4812
|
- -c
|
|
4804
4813
|
name: gitops-deprovision-suite-workspace
|
|
4805
4814
|
imagePullPolicy: Always
|
|
4806
|
-
image: quay.io/ibmmas/cli:13.
|
|
4815
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
4807
4816
|
workspaces:
|
|
4808
4817
|
- name: configs
|
|
4809
4818
|
# --------------------------------------------------------------------------------
|
|
@@ -4896,7 +4905,7 @@ spec:
|
|
|
4896
4905
|
- -c
|
|
4897
4906
|
name: gitops-deprovision-suite
|
|
4898
4907
|
imagePullPolicy: IfNotPresent
|
|
4899
|
-
image: quay.io/ibmmas/cli:13.
|
|
4908
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
4900
4909
|
workspaces:
|
|
4901
4910
|
- name: configs
|
|
4902
4911
|
|
|
@@ -5009,7 +5018,7 @@ spec:
|
|
|
5009
5018
|
- -c
|
|
5010
5019
|
name: gitops-dro
|
|
5011
5020
|
imagePullPolicy: IfNotPresent
|
|
5012
|
-
image: quay.io/ibmmas/cli:13.
|
|
5021
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
5013
5022
|
workspaces:
|
|
5014
5023
|
- name: configs
|
|
5015
5024
|
# --------------------------------------------------------------------------------
|
|
@@ -5136,7 +5145,7 @@ spec:
|
|
|
5136
5145
|
- -c
|
|
5137
5146
|
name: gitops-efs
|
|
5138
5147
|
imagePullPolicy: IfNotPresent
|
|
5139
|
-
image: quay.io/ibmmas/cli:13.
|
|
5148
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
5140
5149
|
workspaces:
|
|
5141
5150
|
- name: configs
|
|
5142
5151
|
|
|
@@ -5271,7 +5280,7 @@ spec:
|
|
|
5271
5280
|
- -c
|
|
5272
5281
|
name: gitops-jdbc-config
|
|
5273
5282
|
imagePullPolicy: Always
|
|
5274
|
-
image: quay.io/ibmmas/cli:13.
|
|
5283
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
5275
5284
|
workspaces:
|
|
5276
5285
|
- name: configs
|
|
5277
5286
|
- name: shared-gitops-configs
|
|
@@ -5367,7 +5376,7 @@ spec:
|
|
|
5367
5376
|
- -c
|
|
5368
5377
|
name: gitops-kafka-config
|
|
5369
5378
|
imagePullPolicy: Always
|
|
5370
|
-
image: quay.io/ibmmas/cli:13.
|
|
5379
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
5371
5380
|
workspaces:
|
|
5372
5381
|
- name: configs
|
|
5373
5382
|
|
|
@@ -5489,7 +5498,7 @@ spec:
|
|
|
5489
5498
|
- -c
|
|
5490
5499
|
name: gitops-kafka
|
|
5491
5500
|
imagePullPolicy: IfNotPresent
|
|
5492
|
-
image: quay.io/ibmmas/cli:13.
|
|
5501
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
5493
5502
|
workspaces:
|
|
5494
5503
|
- name: configs
|
|
5495
5504
|
# --------------------------------------------------------------------------------
|
|
@@ -5615,7 +5624,7 @@ spec:
|
|
|
5615
5624
|
- -c
|
|
5616
5625
|
name: gitops-license
|
|
5617
5626
|
imagePullPolicy: Always
|
|
5618
|
-
image: quay.io/ibmmas/cli:13.
|
|
5627
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
5619
5628
|
workspaces:
|
|
5620
5629
|
- name: shared-entitlement
|
|
5621
5630
|
|
|
@@ -6179,7 +6188,7 @@ spec:
|
|
|
6179
6188
|
- -c
|
|
6180
6189
|
name: gitops-mas-fvt-preparer
|
|
6181
6190
|
imagePullPolicy: Always
|
|
6182
|
-
image: quay.io/ibmmas/cli:13.
|
|
6191
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
6183
6192
|
workspaces:
|
|
6184
6193
|
- name: configs
|
|
6185
6194
|
- name: shared-additional-configs
|
|
@@ -6626,7 +6635,7 @@ spec:
|
|
|
6626
6635
|
- -c
|
|
6627
6636
|
name: gitops-mas-initiator
|
|
6628
6637
|
imagePullPolicy: IfNotPresent
|
|
6629
|
-
image: quay.io/ibmmas/cli:13.
|
|
6638
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
6630
6639
|
workspaces:
|
|
6631
6640
|
- name: configs
|
|
6632
6641
|
# --------------------------------------------------------------------------------
|
|
@@ -6734,7 +6743,7 @@ spec:
|
|
|
6734
6743
|
- -c
|
|
6735
6744
|
name: gitops-mongo
|
|
6736
6745
|
imagePullPolicy: IfNotPresent
|
|
6737
|
-
image: quay.io/ibmmas/cli:13.
|
|
6746
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
6738
6747
|
workspaces:
|
|
6739
6748
|
- name: configs
|
|
6740
6749
|
|
|
@@ -6860,7 +6869,7 @@ spec:
|
|
|
6860
6869
|
- -c
|
|
6861
6870
|
name: gitops-nvidia-gpu
|
|
6862
6871
|
imagePullPolicy: IfNotPresent
|
|
6863
|
-
image: quay.io/ibmmas/cli:13.
|
|
6872
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
6864
6873
|
workspaces:
|
|
6865
6874
|
- name: configs
|
|
6866
6875
|
# --------------------------------------------------------------------------------
|
|
@@ -6978,7 +6987,7 @@ spec:
|
|
|
6978
6987
|
- -c
|
|
6979
6988
|
name: gitops-process-mongo-user
|
|
6980
6989
|
imagePullPolicy: IfNotPresent
|
|
6981
|
-
image: quay.io/ibmmas/cli:13.
|
|
6990
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
6982
6991
|
workspaces:
|
|
6983
6992
|
- name: configs
|
|
6984
6993
|
# --------------------------------------------------------------------------------
|
|
@@ -7034,7 +7043,7 @@ spec:
|
|
|
7034
7043
|
- -c
|
|
7035
7044
|
name: gitops-rosa
|
|
7036
7045
|
imagePullPolicy: IfNotPresent
|
|
7037
|
-
image: quay.io/ibmmas/cli:13.
|
|
7046
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
7038
7047
|
workspaces:
|
|
7039
7048
|
- name: configs
|
|
7040
7049
|
# --------------------------------------------------------------------------------
|
|
@@ -7221,7 +7230,7 @@ spec:
|
|
|
7221
7230
|
- -c
|
|
7222
7231
|
name: gitops-suite-app-config
|
|
7223
7232
|
imagePullPolicy: IfNotPresent
|
|
7224
|
-
image: quay.io/ibmmas/cli:13.
|
|
7233
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
7225
7234
|
workspaces:
|
|
7226
7235
|
- name: configs
|
|
7227
7236
|
- name: shared-gitops-configs
|
|
@@ -7379,7 +7388,7 @@ spec:
|
|
|
7379
7388
|
- -c
|
|
7380
7389
|
name: gitops-suite-app-install
|
|
7381
7390
|
imagePullPolicy: Always
|
|
7382
|
-
image: quay.io/ibmmas/cli:13.
|
|
7391
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
7383
7392
|
workspaces:
|
|
7384
7393
|
- name: configs
|
|
7385
7394
|
- name: shared-gitops-configs
|
|
@@ -7485,7 +7494,7 @@ spec:
|
|
|
7485
7494
|
- -c
|
|
7486
7495
|
name: gitops-suite-certs
|
|
7487
7496
|
imagePullPolicy: IfNotPresent
|
|
7488
|
-
image: quay.io/ibmmas/cli:13.
|
|
7497
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
7489
7498
|
workspaces:
|
|
7490
7499
|
- name: configs
|
|
7491
7500
|
- name: certificates
|
|
@@ -7655,7 +7664,7 @@ spec:
|
|
|
7655
7664
|
- -c
|
|
7656
7665
|
name: gitops-suite-config
|
|
7657
7666
|
imagePullPolicy: IfNotPresent
|
|
7658
|
-
image: quay.io/ibmmas/cli:13.
|
|
7667
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
7659
7668
|
workspaces:
|
|
7660
7669
|
- name: configs
|
|
7661
7670
|
- name: shared-additional-configs
|
|
@@ -7755,7 +7764,7 @@ spec:
|
|
|
7755
7764
|
- -c
|
|
7756
7765
|
name: gitops-suite-dns
|
|
7757
7766
|
imagePullPolicy: IfNotPresent
|
|
7758
|
-
image: quay.io/ibmmas/cli:13.
|
|
7767
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
7759
7768
|
workspaces:
|
|
7760
7769
|
- name: configs
|
|
7761
7770
|
|
|
@@ -7879,7 +7888,7 @@ spec:
|
|
|
7879
7888
|
- -c
|
|
7880
7889
|
name: gitops-suite-idp-config
|
|
7881
7890
|
imagePullPolicy: IfNotPresent
|
|
7882
|
-
image: quay.io/ibmmas/cli:13.
|
|
7891
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
7883
7892
|
workspaces:
|
|
7884
7893
|
- name: configs
|
|
7885
7894
|
- name: shared-additional-configs
|
|
@@ -7980,7 +7989,7 @@ spec:
|
|
|
7980
7989
|
- -c
|
|
7981
7990
|
name: gitops-suite-objectstorage-config
|
|
7982
7991
|
imagePullPolicy: IfNotPresent
|
|
7983
|
-
image: quay.io/ibmmas/cli:13.
|
|
7992
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
7984
7993
|
workspaces:
|
|
7985
7994
|
- name: configs
|
|
7986
7995
|
- name: shared-gitops-configs
|
|
@@ -8391,7 +8400,7 @@ spec:
|
|
|
8391
8400
|
- -c
|
|
8392
8401
|
name: gitops-suite-smtp-config
|
|
8393
8402
|
imagePullPolicy: IfNotPresent
|
|
8394
|
-
image: quay.io/ibmmas/cli:13.
|
|
8403
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
8395
8404
|
workspaces:
|
|
8396
8405
|
- name: configs
|
|
8397
8406
|
|
|
@@ -8511,7 +8520,7 @@ spec:
|
|
|
8511
8520
|
- -c
|
|
8512
8521
|
name: gitops-suite-watson-studio-config
|
|
8513
8522
|
imagePullPolicy: IfNotPresent
|
|
8514
|
-
image: quay.io/ibmmas/cli:13.
|
|
8523
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
8515
8524
|
workspaces:
|
|
8516
8525
|
- name: configs
|
|
8517
8526
|
- name: shared-gitops-configs
|
|
@@ -8613,7 +8622,7 @@ spec:
|
|
|
8613
8622
|
- -c
|
|
8614
8623
|
name: gitops-suite-workspace
|
|
8615
8624
|
imagePullPolicy: IfNotPresent
|
|
8616
|
-
image: quay.io/ibmmas/cli:13.
|
|
8625
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
8617
8626
|
workspaces:
|
|
8618
8627
|
- name: configs
|
|
8619
8628
|
# --------------------------------------------------------------------------------
|
|
@@ -8904,7 +8913,7 @@ spec:
|
|
|
8904
8913
|
- -c
|
|
8905
8914
|
name: gitops-suite
|
|
8906
8915
|
imagePullPolicy: IfNotPresent
|
|
8907
|
-
image: quay.io/ibmmas/cli:13.
|
|
8916
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
8908
8917
|
workspaces:
|
|
8909
8918
|
- name: configs
|
|
8910
8919
|
- name: shared-gitops-configs
|
|
@@ -8954,7 +8963,7 @@ spec:
|
|
|
8954
8963
|
|
|
8955
8964
|
steps:
|
|
8956
8965
|
- name: grafana
|
|
8957
|
-
image: quay.io/ibmmas/cli:13.
|
|
8966
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
8958
8967
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8959
8968
|
command:
|
|
8960
8969
|
- /opt/app-root/src/run-role.sh
|
|
@@ -9088,7 +9097,7 @@ spec:
|
|
|
9088
9097
|
command:
|
|
9089
9098
|
- /opt/app-root/src/run-role.sh
|
|
9090
9099
|
- ibm_catalogs
|
|
9091
|
-
image: quay.io/ibmmas/cli:13.
|
|
9100
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
9092
9101
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9093
9102
|
workingDir: /workspace/configs
|
|
9094
9103
|
# --------------------------------------------------------------------------------
|
|
@@ -9330,7 +9339,7 @@ spec:
|
|
|
9330
9339
|
command:
|
|
9331
9340
|
- /opt/app-root/src/run-role.sh
|
|
9332
9341
|
- kafka
|
|
9333
|
-
image: quay.io/ibmmas/cli:13.
|
|
9342
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
9334
9343
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9335
9344
|
workingDir: /workspace/configs
|
|
9336
9345
|
|
|
@@ -9546,7 +9555,7 @@ spec:
|
|
|
9546
9555
|
command:
|
|
9547
9556
|
- /opt/app-root/src/run-role.sh
|
|
9548
9557
|
- kmodels
|
|
9549
|
-
image: quay.io/ibmmas/cli:13.
|
|
9558
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
9550
9559
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9551
9560
|
# --------------------------------------------------------------------------------
|
|
9552
9561
|
# /home/runner/work/cli/cli/tekton/target/tasks/mongodb.yaml
|
|
@@ -9724,7 +9733,7 @@ spec:
|
|
|
9724
9733
|
command:
|
|
9725
9734
|
- /opt/app-root/src/run-role.sh
|
|
9726
9735
|
- mongodb
|
|
9727
|
-
image: quay.io/ibmmas/cli:13.
|
|
9736
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
9728
9737
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9729
9738
|
workingDir: /workspace/configs
|
|
9730
9739
|
|
|
@@ -9767,7 +9776,7 @@ spec:
|
|
|
9767
9776
|
- $(params.base_output_dir)
|
|
9768
9777
|
- --extra-namespaces
|
|
9769
9778
|
- selenium
|
|
9770
|
-
image: quay.io/ibmmas/cli:13.
|
|
9779
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
9771
9780
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9772
9781
|
env:
|
|
9773
9782
|
- name: DEVOPS_MONGO_URI
|
|
@@ -9884,7 +9893,7 @@ spec:
|
|
|
9884
9893
|
command:
|
|
9885
9894
|
- /opt/app-root/src/run-role.sh
|
|
9886
9895
|
- nvidia_gpu
|
|
9887
|
-
image: quay.io/ibmmas/cli:13.
|
|
9896
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
9888
9897
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9889
9898
|
workingDir: /workspace/configs
|
|
9890
9899
|
|
|
@@ -9920,7 +9929,7 @@ spec:
|
|
|
9920
9929
|
# Verify Cluster
|
|
9921
9930
|
# -------------------------------------------------------------------------
|
|
9922
9931
|
- name: ocp-verify-cluster
|
|
9923
|
-
image: quay.io/ibmmas/cli:13.
|
|
9932
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
9924
9933
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9925
9934
|
command:
|
|
9926
9935
|
- /opt/app-root/src/run-role.sh
|
|
@@ -9962,7 +9971,7 @@ spec:
|
|
|
9962
9971
|
# Verify Catalogs
|
|
9963
9972
|
# -------------------------------------------------------------------------
|
|
9964
9973
|
- name: ocp-verify-catalogs
|
|
9965
|
-
image: quay.io/ibmmas/cli:13.
|
|
9974
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
9966
9975
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9967
9976
|
command:
|
|
9968
9977
|
- /opt/app-root/src/run-role.sh
|
|
@@ -10004,7 +10013,7 @@ spec:
|
|
|
10004
10013
|
# Verify Subscriptions
|
|
10005
10014
|
# -------------------------------------------------------------------------
|
|
10006
10015
|
- name: ocp-verify-subscriptions
|
|
10007
|
-
image: quay.io/ibmmas/cli:13.
|
|
10016
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
10008
10017
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10009
10018
|
command:
|
|
10010
10019
|
- /opt/app-root/src/run-role.sh
|
|
@@ -10046,7 +10055,7 @@ spec:
|
|
|
10046
10055
|
# Verify Workloads
|
|
10047
10056
|
# -------------------------------------------------------------------------
|
|
10048
10057
|
- name: ocp-verify-workloads
|
|
10049
|
-
image: quay.io/ibmmas/cli:13.
|
|
10058
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
10050
10059
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10051
10060
|
command:
|
|
10052
10061
|
- /opt/app-root/src/run-role.sh
|
|
@@ -10088,7 +10097,7 @@ spec:
|
|
|
10088
10097
|
# Verify Catalogs - Ingress TLS
|
|
10089
10098
|
# -------------------------------------------------------------------------
|
|
10090
10099
|
- name: ocp-verify-ingress
|
|
10091
|
-
image: quay.io/ibmmas/cli:13.
|
|
10100
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
10092
10101
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10093
10102
|
command:
|
|
10094
10103
|
- /opt/app-root/src/run-role.sh
|
|
@@ -10214,7 +10223,7 @@ spec:
|
|
|
10214
10223
|
command:
|
|
10215
10224
|
- /opt/app-root/src/run-role.sh
|
|
10216
10225
|
- ocp_verify
|
|
10217
|
-
image: quay.io/ibmmas/cli:13.
|
|
10226
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
10218
10227
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10219
10228
|
workingDir: /workspace/configs
|
|
10220
10229
|
# --------------------------------------------------------------------------------
|
|
@@ -10282,7 +10291,7 @@ spec:
|
|
|
10282
10291
|
command:
|
|
10283
10292
|
- /opt/app-root/src/run-role.sh
|
|
10284
10293
|
- ocs
|
|
10285
|
-
image: quay.io/ibmmas/cli:13.
|
|
10294
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
10286
10295
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10287
10296
|
workingDir: /workspace/configs
|
|
10288
10297
|
|
|
@@ -10518,7 +10527,7 @@ spec:
|
|
|
10518
10527
|
command:
|
|
10519
10528
|
- /opt/app-root/src/run-role.sh
|
|
10520
10529
|
- odh
|
|
10521
|
-
image: quay.io/ibmmas/cli:13.
|
|
10530
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
10522
10531
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10523
10532
|
# --------------------------------------------------------------------------------
|
|
10524
10533
|
# /home/runner/work/cli/cli/tekton/target/tasks/sls-registry-update.yaml
|
|
@@ -10694,7 +10703,7 @@ spec:
|
|
|
10694
10703
|
command:
|
|
10695
10704
|
- /opt/app-root/src/run-role.sh
|
|
10696
10705
|
- sls
|
|
10697
|
-
image: quay.io/ibmmas/cli:13.
|
|
10706
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
10698
10707
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10699
10708
|
workingDir: /workspace/configs
|
|
10700
10709
|
|
|
@@ -11089,12 +11098,12 @@ spec:
|
|
|
11089
11098
|
command:
|
|
11090
11099
|
- /opt/app-root/src/run-role.sh
|
|
11091
11100
|
- suite_app_config
|
|
11092
|
-
image: quay.io/ibmmas/cli:13.
|
|
11101
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
11093
11102
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11094
11103
|
|
|
11095
11104
|
# If configmap/approval-app-cfg-$(params.mas_app_id) exists then set STATUS=pending and wait for it to be changed to "approved"
|
|
11096
11105
|
- name: app-cfg-post-verify
|
|
11097
|
-
image: quay.io/ibmmas/cli:13.
|
|
11106
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
11098
11107
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11099
11108
|
command:
|
|
11100
11109
|
- /opt/app-root/src/wait-for-configmap.sh
|
|
@@ -11289,7 +11298,7 @@ spec:
|
|
|
11289
11298
|
command:
|
|
11290
11299
|
- /opt/app-root/src/run-role.sh
|
|
11291
11300
|
- suite_app_install
|
|
11292
|
-
image: quay.io/ibmmas/cli:13.
|
|
11301
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
11293
11302
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11294
11303
|
|
|
11295
11304
|
workspaces:
|
|
@@ -11378,7 +11387,7 @@ spec:
|
|
|
11378
11387
|
command:
|
|
11379
11388
|
- /opt/app-root/src/run-role.sh
|
|
11380
11389
|
- suite_app_rollback
|
|
11381
|
-
image: quay.io/ibmmas/cli:13.
|
|
11390
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
11382
11391
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11383
11392
|
# --------------------------------------------------------------------------------
|
|
11384
11393
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-app-uninstall.yaml
|
|
@@ -11441,7 +11450,7 @@ spec:
|
|
|
11441
11450
|
command:
|
|
11442
11451
|
- /opt/app-root/src/run-role.sh
|
|
11443
11452
|
- suite_app_uninstall
|
|
11444
|
-
image: quay.io/ibmmas/cli:13.
|
|
11453
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
11445
11454
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11446
11455
|
# --------------------------------------------------------------------------------
|
|
11447
11456
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-app-upgrade.yaml
|
|
@@ -11516,7 +11525,7 @@ spec:
|
|
|
11516
11525
|
command:
|
|
11517
11526
|
- /opt/app-root/src/run-role.sh
|
|
11518
11527
|
- suite_app_upgrade
|
|
11519
|
-
image: quay.io/ibmmas/cli:13.
|
|
11528
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
11520
11529
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11521
11530
|
# --------------------------------------------------------------------------------
|
|
11522
11531
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-app-verify.yaml
|
|
@@ -11617,7 +11626,7 @@ spec:
|
|
|
11617
11626
|
command:
|
|
11618
11627
|
- /opt/app-root/src/run-role.sh
|
|
11619
11628
|
- suite_app_verify
|
|
11620
|
-
image: quay.io/ibmmas/cli:13.
|
|
11629
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
11621
11630
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11622
11631
|
# --------------------------------------------------------------------------------
|
|
11623
11632
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-certs.yaml
|
|
@@ -11760,7 +11769,7 @@ spec:
|
|
|
11760
11769
|
command:
|
|
11761
11770
|
- /opt/app-root/src/run-role.sh
|
|
11762
11771
|
- suite_certs
|
|
11763
|
-
image: quay.io/ibmmas/cli:13.
|
|
11772
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
11764
11773
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11765
11774
|
|
|
11766
11775
|
workspaces:
|
|
@@ -11827,7 +11836,7 @@ spec:
|
|
|
11827
11836
|
command:
|
|
11828
11837
|
- /opt/app-root/src/run-role.sh
|
|
11829
11838
|
- suite_config
|
|
11830
|
-
image: quay.io/ibmmas/cli:13.
|
|
11839
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
11831
11840
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11832
11841
|
workingDir: /workspace/configs
|
|
11833
11842
|
|
|
@@ -11898,7 +11907,7 @@ spec:
|
|
|
11898
11907
|
command:
|
|
11899
11908
|
- /opt/app-root/src/run-role.sh
|
|
11900
11909
|
- suite_db2_setup_for_manage
|
|
11901
|
-
image: quay.io/ibmmas/cli:13.
|
|
11910
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
11902
11911
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11903
11912
|
# --------------------------------------------------------------------------------
|
|
11904
11913
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-dns.yaml
|
|
@@ -12088,7 +12097,7 @@ spec:
|
|
|
12088
12097
|
command:
|
|
12089
12098
|
- /opt/app-root/src/run-role.sh
|
|
12090
12099
|
- suite_dns
|
|
12091
|
-
image: quay.io/ibmmas/cli:13.
|
|
12100
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
12092
12101
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12093
12102
|
# --------------------------------------------------------------------------------
|
|
12094
12103
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-install.yaml
|
|
@@ -12337,7 +12346,7 @@ spec:
|
|
|
12337
12346
|
command:
|
|
12338
12347
|
- /opt/app-root/src/run-role.sh
|
|
12339
12348
|
- suite_install
|
|
12340
|
-
image: quay.io/ibmmas/cli:13.
|
|
12349
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
12341
12350
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12342
12351
|
workingDir: /workspace/configs
|
|
12343
12352
|
|
|
@@ -12425,7 +12434,7 @@ spec:
|
|
|
12425
12434
|
command:
|
|
12426
12435
|
- /opt/app-root/src/run-role.sh
|
|
12427
12436
|
- suite_rollback
|
|
12428
|
-
image: quay.io/ibmmas/cli:13.
|
|
12437
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
12429
12438
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12430
12439
|
# --------------------------------------------------------------------------------
|
|
12431
12440
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-uninstall.yaml
|
|
@@ -12490,7 +12499,7 @@ spec:
|
|
|
12490
12499
|
command:
|
|
12491
12500
|
- /opt/app-root/src/run-role.sh
|
|
12492
12501
|
- suite_uninstall
|
|
12493
|
-
image: quay.io/ibmmas/cli:13.
|
|
12502
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
12494
12503
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12495
12504
|
# --------------------------------------------------------------------------------
|
|
12496
12505
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-upgrade.yaml
|
|
@@ -12560,7 +12569,7 @@ spec:
|
|
|
12560
12569
|
command:
|
|
12561
12570
|
- /opt/app-root/src/run-role.sh
|
|
12562
12571
|
- suite_upgrade
|
|
12563
|
-
image: quay.io/ibmmas/cli:13.
|
|
12572
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
12564
12573
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12565
12574
|
# --------------------------------------------------------------------------------
|
|
12566
12575
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-verify.yaml
|
|
@@ -12627,12 +12636,12 @@ spec:
|
|
|
12627
12636
|
command:
|
|
12628
12637
|
- /opt/app-root/src/run-role.sh
|
|
12629
12638
|
- suite_verify
|
|
12630
|
-
image: quay.io/ibmmas/cli:13.
|
|
12639
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
12631
12640
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12632
12641
|
|
|
12633
12642
|
# If configmap/approval-suite-verify exists then set STATUS=pending and wait for it to be changed to "approved"
|
|
12634
12643
|
- name: suite-post-verify
|
|
12635
|
-
image: quay.io/ibmmas/cli:13.
|
|
12644
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
12636
12645
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12637
12646
|
script: |
|
|
12638
12647
|
#!/usr/bin/env bash
|
|
@@ -12760,7 +12769,7 @@ spec:
|
|
|
12760
12769
|
command:
|
|
12761
12770
|
- /opt/app-root/src/run-role.sh
|
|
12762
12771
|
- turbonomic
|
|
12763
|
-
image: quay.io/ibmmas/cli:13.
|
|
12772
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
12764
12773
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12765
12774
|
# --------------------------------------------------------------------------------
|
|
12766
12775
|
# /home/runner/work/cli/cli/tekton/target/tasks/uds.yaml
|
|
@@ -12841,7 +12850,7 @@ spec:
|
|
|
12841
12850
|
# IBM User Data Services (UDS)
|
|
12842
12851
|
# -------------------------------------------------------------------------
|
|
12843
12852
|
- name: uds
|
|
12844
|
-
image: quay.io/ibmmas/cli:13.
|
|
12853
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
12845
12854
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12846
12855
|
workingDir: /workspace/configs
|
|
12847
12856
|
command:
|
|
@@ -12904,7 +12913,7 @@ spec:
|
|
|
12904
12913
|
# IBM Data Reporter Operator (DRO)
|
|
12905
12914
|
# -------------------------------------------------------------------------
|
|
12906
12915
|
- name: dro
|
|
12907
|
-
image: quay.io/ibmmas/cli:13.
|
|
12916
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
12908
12917
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12909
12918
|
workingDir: /workspace/configs
|
|
12910
12919
|
command:
|
|
@@ -12990,7 +12999,7 @@ spec:
|
|
|
12990
12999
|
description: "The value to set"
|
|
12991
13000
|
steps:
|
|
12992
13001
|
- name: update-configmap
|
|
12993
|
-
image: quay.io/ibmmas/cli:13.
|
|
13002
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
12994
13003
|
command:
|
|
12995
13004
|
- /opt/app-root/src/update-configmap.sh
|
|
12996
13005
|
env:
|
|
@@ -13037,7 +13046,7 @@ spec:
|
|
|
13037
13046
|
|
|
13038
13047
|
steps:
|
|
13039
13048
|
- name: wait-for-configmap
|
|
13040
|
-
image: quay.io/ibmmas/cli:13.
|
|
13049
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
13041
13050
|
command:
|
|
13042
13051
|
- /opt/app-root/src/wait-for-configmap.sh
|
|
13043
13052
|
env:
|
|
@@ -13118,7 +13127,7 @@ spec:
|
|
|
13118
13127
|
|
|
13119
13128
|
steps:
|
|
13120
13129
|
- name: wait-for-configmap
|
|
13121
|
-
image: quay.io/ibmmas/cli:13.
|
|
13130
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
13122
13131
|
command:
|
|
13123
13132
|
- /opt/app-root/src/wait-for-configmap.sh
|
|
13124
13133
|
env:
|
|
@@ -13178,7 +13187,7 @@ spec:
|
|
|
13178
13187
|
|
|
13179
13188
|
steps:
|
|
13180
13189
|
- name: wait
|
|
13181
|
-
image: quay.io/ibmmas/cli:13.
|
|
13190
|
+
image: quay.io/ibmmas/cli:13.14.0
|
|
13182
13191
|
command:
|
|
13183
13192
|
- /opt/app-root/src/wait-for-tekton.sh
|
|
13184
13193
|
env:
|
|
@@ -19495,16 +19504,6 @@ spec:
|
|
|
19495
19504
|
type: string
|
|
19496
19505
|
default: "Automatic"
|
|
19497
19506
|
|
|
19498
|
-
- name: db2_channel
|
|
19499
|
-
type: string
|
|
19500
|
-
default: ""
|
|
19501
|
-
- name: db2_action
|
|
19502
|
-
type: string
|
|
19503
|
-
default: ""
|
|
19504
|
-
- name: db2_subscription_install_plan
|
|
19505
|
-
type: string
|
|
19506
|
-
default: "Automatic"
|
|
19507
|
-
|
|
19508
19507
|
- name: nvidia_gpu_action
|
|
19509
19508
|
type: string
|
|
19510
19509
|
default: ""
|
|
@@ -21203,6 +21202,12 @@ spec:
|
|
|
21203
21202
|
type: string
|
|
21204
21203
|
- name: mas_workspace_name
|
|
21205
21204
|
type: string
|
|
21205
|
+
- name: mas_install_plan
|
|
21206
|
+
type: string
|
|
21207
|
+
default: "Automatic"
|
|
21208
|
+
- name: sls_install_plan
|
|
21209
|
+
type: string
|
|
21210
|
+
default: "Automatic"
|
|
21206
21211
|
- name: docdb_user_action
|
|
21207
21212
|
type: string
|
|
21208
21213
|
default: add
|
|
@@ -21329,9 +21334,11 @@ spec:
|
|
|
21329
21334
|
- name: db2_channel
|
|
21330
21335
|
type: string
|
|
21331
21336
|
default: ""
|
|
21332
|
-
|
|
21333
21337
|
- name: db2_action
|
|
21334
21338
|
type: string
|
|
21339
|
+
- name: db2_subscription_install_plan
|
|
21340
|
+
type: string
|
|
21341
|
+
default: "Automatic"
|
|
21335
21342
|
|
|
21336
21343
|
# gitops-license-generator parameters
|
|
21337
21344
|
# -------------------------------------------------------------------------
|
|
@@ -21384,6 +21391,8 @@ spec:
|
|
|
21384
21391
|
value: $(params.db2_channel)
|
|
21385
21392
|
- name: avp_aws_secret_region
|
|
21386
21393
|
value: $(params.avp_aws_secret_region)
|
|
21394
|
+
- name: db2_subscription_install_plan
|
|
21395
|
+
value: $(params.db2_subscription_install_plan)
|
|
21387
21396
|
workspaces:
|
|
21388
21397
|
- name: configs
|
|
21389
21398
|
workspace: configs
|
|
@@ -21490,6 +21499,10 @@ spec:
|
|
|
21490
21499
|
value: $(params.custom_labels)
|
|
21491
21500
|
- name: mas_domain
|
|
21492
21501
|
value: $(params.mas_domain)
|
|
21502
|
+
- name: mas_install_plan
|
|
21503
|
+
value: $(params.mas_install_plan)
|
|
21504
|
+
- name: sls_install_plan
|
|
21505
|
+
value: $(params.sls_install_plan)
|
|
21493
21506
|
- name: github_pat
|
|
21494
21507
|
value: $(params.github_pat)
|
|
21495
21508
|
- name: avp_aws_secret_region
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
mas/cli/__init__.py,sha256=
|
|
2
|
-
mas/cli/cli.py,sha256=
|
|
1
|
+
mas/cli/__init__.py,sha256=lMQ_pE7blp4xafVQ_MAValyi4h1JXClvCjlqzMMJ5c8,527
|
|
2
|
+
mas/cli/cli.py,sha256=dprKl3A3wlY1anSxzgxtnWSuKHx9PHCHKpxUY5fdgTo,18175
|
|
3
3
|
mas/cli/displayMixins.py,sha256=e3lAx1DIOwsriDcNI0M2JyP1jeLOZKvId6sPrvWLyqs,5984
|
|
4
4
|
mas/cli/gencfg.py,sha256=p38Ss_ooiNHOZTJT8l0YxDaEaPwD4ZXgxEbW-S9YLNY,3311
|
|
5
5
|
mas/cli/validators.py,sha256=vi1pFA8QtqMhqtGk1NlkkNDUrlFCi53kS5wJqFGDgOU,5108
|
|
6
6
|
mas/cli/install/__init__.py,sha256=v0WJlcdrSycWGT5ofFjRDV3jTZ8AqVCz1AGxok4Khtc,508
|
|
7
|
-
mas/cli/install/app.py,sha256=
|
|
7
|
+
mas/cli/install/app.py,sha256=cKS1AbzOB-d1yDAsv_ypMaQDOMTE81TaCTCgjWEyRYo,61315
|
|
8
8
|
mas/cli/install/argBuilder.py,sha256=NKVk7ADbN7SRzJVvLlRKUiJQfDc0xWbhFIwOfAdYRSs,24977
|
|
9
9
|
mas/cli/install/argParser.py,sha256=59Wa3ch2IsuwcJiibgkttCX_0WTtFOl30l0nznbL9dQ,35632
|
|
10
10
|
mas/cli/install/catalogs.py,sha256=Du4zPwBnhX7L8tz5JyTjSBiOxJcC0kvEFW8AWhI_JqE,751
|
|
@@ -12,12 +12,12 @@ mas/cli/install/params.py,sha256=i4btI6qDQ9QBjojsZcJj4A5k1qsguMvdfDBerj52YWc,505
|
|
|
12
12
|
mas/cli/install/summarizer.py,sha256=XUrhivOBNNb_rqbdhIofTaBznKgfkH--7i-GPQlx-fU,21777
|
|
13
13
|
mas/cli/install/settings/__init__.py,sha256=RdyBSh-rM0wkuvILVzJ1gxjOtLuQ1mF6QbEL0MyiKIY,1034
|
|
14
14
|
mas/cli/install/settings/additionalConfigs.py,sha256=u9DTwGZkPLIGfbNrz6yXsBi39EZgk2bwJuDUrNm_Nio,10008
|
|
15
|
-
mas/cli/install/settings/db2Settings.py,sha256
|
|
15
|
+
mas/cli/install/settings/db2Settings.py,sha256=-RTejDTgvnA-bbEnPWXO4imjy0IMfAlW6J71UyNUsZc,13278
|
|
16
16
|
mas/cli/install/settings/kafkaSettings.py,sha256=r1uK-IApqB9IQiSNt_8sP0wa4FPJcXU_qnadhElEOuI,7241
|
|
17
|
-
mas/cli/install/settings/manageSettings.py,sha256=
|
|
17
|
+
mas/cli/install/settings/manageSettings.py,sha256=whoAT3B-qQjLD6SaS_9OEmmIvbSXbcI9m-wCDyu4alI,17853
|
|
18
18
|
mas/cli/install/settings/mongodbSettings.py,sha256=UVt8vMLNpgyewlcymSystIhICnHsd0uoM9qpgezVjGg,2567
|
|
19
19
|
mas/cli/install/settings/turbonomicSettings.py,sha256=ul4eWf53b1NCzJTFsEPX6DWM23YUlWILYBygplqXYlU,1631
|
|
20
|
-
mas/cli/templates/ibm-mas-tekton.yaml,sha256=
|
|
20
|
+
mas/cli/templates/ibm-mas-tekton.yaml,sha256=aFtuk8FEhsoBm0vrIdSbt_7Elrttm0gHYBk9-LB46j4,872265
|
|
21
21
|
mas/cli/templates/jdbccfg.yml.j2,sha256=cANbwkUkKEPQp-P3_BB_Llbt94457Ciagah2hOdySIM,1644
|
|
22
22
|
mas/cli/templates/suite_mongocfg.yml.j2,sha256=WrgJUfGyvfaRIHjY5VR_zLZ5irTpV5khKNq76ejIxKU,1606
|
|
23
23
|
mas/cli/templates/pod-templates/best-effort/ibm-data-dictionary-assetdatadictionary.yml,sha256=8VG_FDFcEjWNaAOZTcS58Pe0tWOXC10SJLloNqzEMC8,757
|
|
@@ -99,8 +99,8 @@ mas/cli/update/argParser.py,sha256=oOIXzB_rsI2p3og_5X5SFt_g7LURyEdLxZeiGCKq1nU,4
|
|
|
99
99
|
mas/cli/upgrade/__init__.py,sha256=v0WJlcdrSycWGT5ofFjRDV3jTZ8AqVCz1AGxok4Khtc,508
|
|
100
100
|
mas/cli/upgrade/app.py,sha256=EuEZayc0nw9kA6Hz8M9Mv7uk0hgmspJSZCYhNEfCECk,6428
|
|
101
101
|
mas/cli/upgrade/argParser.py,sha256=pqzNDSHy6l13JunHWQLyOI-NFnDGDoVJ_HM07FLYJSc,2033
|
|
102
|
-
mas_cli-13.
|
|
103
|
-
mas_cli-13.
|
|
104
|
-
mas_cli-13.
|
|
105
|
-
mas_cli-13.
|
|
106
|
-
mas_cli-13.
|
|
102
|
+
mas_cli-13.14.0.data/scripts/mas-cli,sha256=BbibIX0psLEOZdcNaFcO4mJvStD0pKLAe-p-NwVTrBs,3439
|
|
103
|
+
mas_cli-13.14.0.dist-info/METADATA,sha256=fVWw9Uh78iq3oe3PC_kKbUmA0JFsmwgiihTfBJ_pDqw,2259
|
|
104
|
+
mas_cli-13.14.0.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
105
|
+
mas_cli-13.14.0.dist-info/top_level.txt,sha256=_Hlsp7pvMvyV14LFg-vk1hULq30j61EILnnxMFIhhc8,4
|
|
106
|
+
mas_cli-13.14.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|