mas-cli 11.7.0__py3-none-any.whl → 11.8.1__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/settings/manageSettings.py +2 -2
- mas/cli/install/summarizer.py +1 -1
- mas/cli/templates/ibm-mas-tekton.yaml +235 -101
- mas/cli/update/app.py +1 -1
- {mas_cli-11.7.0.dist-info → mas_cli-11.8.1.dist-info}/METADATA +2 -2
- {mas_cli-11.7.0.dist-info → mas_cli-11.8.1.dist-info}/RECORD +11 -11
- {mas_cli-11.7.0.dist-info → mas_cli-11.8.1.dist-info}/WHEEL +1 -1
- {mas_cli-11.7.0.data → mas_cli-11.8.1.data}/scripts/mas-cli +0 -0
- {mas_cli-11.7.0.dist-info → mas_cli-11.8.1.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 = "11.
|
|
120
|
+
self.version = "11.8.1"
|
|
121
121
|
self.h1count = 0
|
|
122
122
|
self.h2count = 0
|
|
123
123
|
|
|
@@ -79,7 +79,7 @@ class ManageSettingsMixin():
|
|
|
79
79
|
if self.yesOrNo(" - Asset Configuration Manager"):
|
|
80
80
|
self.params["mas_appws_components"] += ",acm=latest"
|
|
81
81
|
if self.yesOrNo(" - Aviation"):
|
|
82
|
-
self.params["mas_appws_components"] += ",
|
|
82
|
+
self.params["mas_appws_components"] += ",aviation=latest"
|
|
83
83
|
if self.yesOrNo(" - Civil Infrastructure"):
|
|
84
84
|
self.params["mas_appws_components"] += ",civil=latest"
|
|
85
85
|
if self.yesOrNo(" - Envizi"):
|
|
@@ -223,7 +223,7 @@ class ManageSettingsMixin():
|
|
|
223
223
|
self.promptForString("Secondary languages", "mas_app_settings_secondary_langs")
|
|
224
224
|
|
|
225
225
|
def manageSettingsCP4D(self) -> None:
|
|
226
|
-
if self.getParam("mas_app_channel_manage") in ["8.7.x", "9.0.x"] and self.
|
|
226
|
+
if self.getParam("mas_app_channel_manage") in ["8.7.x", "9.0.x"] and self.showAdvancedOptions:
|
|
227
227
|
self.printDescription([
|
|
228
228
|
"Integration with Cognos Analytics provides additional support for reporting features in Maximo Manage, for more information refer to the documentation online: ",
|
|
229
229
|
" <u>https://ibm.biz/BdMuxs</u>"
|
mas/cli/install/summarizer.py
CHANGED
|
@@ -181,7 +181,7 @@ class InstallSummarizerMixin():
|
|
|
181
181
|
print_formatted_text(HTML(" <SkyBlue>+ Components</SkyBlue>"))
|
|
182
182
|
self.printSummary(" + ACM", "Enabled" if "acm=" in self.getParam("mas_appws_components") else "Disabled")
|
|
183
183
|
self.printSummary(" + Aviation", "Enabled" if "aviation=" in self.getParam("mas_appws_components") else "Disabled")
|
|
184
|
-
self.printSummary(" + Civil Infrastructure", "Enabled" if "
|
|
184
|
+
self.printSummary(" + Civil Infrastructure", "Enabled" if "civil=" in self.getParam("mas_appws_components") else "Disabled")
|
|
185
185
|
self.printSummary(" + Envizi", "Enabled" if "envizi=" in self.getParam("mas_appws_components") else "Disabled")
|
|
186
186
|
self.printSummary(" + Health", "Enabled" if "health=" in self.getParam("mas_appws_components") else "Disabled")
|
|
187
187
|
self.printSummary(" + HSE", "Enabled" if "hse=" in self.getParam("mas_appws_components") else "Disabled")
|
|
@@ -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:11.
|
|
234
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
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:11.
|
|
345
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
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:11.
|
|
463
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
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:11.
|
|
533
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
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:11.
|
|
599
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
600
600
|
imagePullPolicy: $(params.image_pull_policy)
|
|
601
601
|
workingDir: /workspace/configs
|
|
602
602
|
# --------------------------------------------------------------------------------
|
|
@@ -717,7 +717,7 @@ spec:
|
|
|
717
717
|
command:
|
|
718
718
|
- /opt/app-root/src/run-role.sh
|
|
719
719
|
- cos
|
|
720
|
-
image: quay.io/ibmmas/cli:11.
|
|
720
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
721
721
|
imagePullPolicy: $(params.image_pull_policy)
|
|
722
722
|
workingDir: /workspace/configs
|
|
723
723
|
|
|
@@ -837,7 +837,7 @@ spec:
|
|
|
837
837
|
command:
|
|
838
838
|
- /opt/app-root/src/run-role.sh
|
|
839
839
|
- cp4d_service
|
|
840
|
-
image: quay.io/ibmmas/cli:11.
|
|
840
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
841
841
|
imagePullPolicy: $(params.image_pull_policy)
|
|
842
842
|
workingDir: /workspace/configs
|
|
843
843
|
# --------------------------------------------------------------------------------
|
|
@@ -954,7 +954,7 @@ spec:
|
|
|
954
954
|
command:
|
|
955
955
|
- /opt/app-root/src/run-role.sh
|
|
956
956
|
- cp4d_service
|
|
957
|
-
image: quay.io/ibmmas/cli:11.
|
|
957
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
958
958
|
imagePullPolicy: $(params.image_pull_policy)
|
|
959
959
|
workingDir: /workspace/configs
|
|
960
960
|
|
|
@@ -1060,7 +1060,7 @@ spec:
|
|
|
1060
1060
|
command:
|
|
1061
1061
|
- /opt/app-root/src/run-role.sh
|
|
1062
1062
|
- cp4d
|
|
1063
|
-
image: quay.io/ibmmas/cli:11.
|
|
1063
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
1064
1064
|
imagePullPolicy: $(params.image_pull_policy)
|
|
1065
1065
|
# --------------------------------------------------------------------------------
|
|
1066
1066
|
# /home/runner/work/cli/cli/tekton/target/tasks/db2.yaml
|
|
@@ -1382,7 +1382,7 @@ spec:
|
|
|
1382
1382
|
command:
|
|
1383
1383
|
- /opt/app-root/src/run-role.sh
|
|
1384
1384
|
- db2
|
|
1385
|
-
image: quay.io/ibmmas/cli:11.
|
|
1385
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
1386
1386
|
imagePullPolicy: $(params.image_pull_policy)
|
|
1387
1387
|
workingDir: /workspace/configs
|
|
1388
1388
|
|
|
@@ -1492,7 +1492,7 @@ spec:
|
|
|
1492
1492
|
command:
|
|
1493
1493
|
- /opt/app-root/src/run-role.sh
|
|
1494
1494
|
- eck
|
|
1495
|
-
image: quay.io/ibmmas/cli:11.
|
|
1495
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
1496
1496
|
imagePullPolicy: $(params.image_pull_policy)
|
|
1497
1497
|
# --------------------------------------------------------------------------------
|
|
1498
1498
|
# /home/runner/work/cli/cli/tekton/target/tasks/gencfg-workspace.yaml
|
|
@@ -1581,7 +1581,7 @@ spec:
|
|
|
1581
1581
|
command:
|
|
1582
1582
|
- /opt/app-root/src/run-role.sh
|
|
1583
1583
|
- gencfg_workspace
|
|
1584
|
-
image: quay.io/ibmmas/cli:11.
|
|
1584
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
1585
1585
|
imagePullPolicy: $(params.image_pull_policy)
|
|
1586
1586
|
workingDir: /workspace/configs
|
|
1587
1587
|
|
|
@@ -1685,7 +1685,7 @@ spec:
|
|
|
1685
1685
|
- -c
|
|
1686
1686
|
name: gitops-bootstrap
|
|
1687
1687
|
imagePullPolicy: IfNotPresent
|
|
1688
|
-
image: quay.io/ibmmas/cli:11.
|
|
1688
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
1689
1689
|
workspaces:
|
|
1690
1690
|
- name: configs
|
|
1691
1691
|
# --------------------------------------------------------------------------------
|
|
@@ -1767,7 +1767,7 @@ spec:
|
|
|
1767
1767
|
- -c
|
|
1768
1768
|
name: gitops-cis-compliance
|
|
1769
1769
|
imagePullPolicy: IfNotPresent
|
|
1770
|
-
image: quay.io/ibmmas/cli:11.
|
|
1770
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
1771
1771
|
workspaces:
|
|
1772
1772
|
- name: configs
|
|
1773
1773
|
# --------------------------------------------------------------------------------
|
|
@@ -1838,6 +1838,10 @@ spec:
|
|
|
1838
1838
|
type: string
|
|
1839
1839
|
default: ''
|
|
1840
1840
|
|
|
1841
|
+
- name: install_selenium_grid
|
|
1842
|
+
type: string
|
|
1843
|
+
default: ''
|
|
1844
|
+
|
|
1841
1845
|
- name: devops_build_number
|
|
1842
1846
|
type: string
|
|
1843
1847
|
default: ''
|
|
@@ -1905,6 +1909,9 @@ spec:
|
|
|
1905
1909
|
- name: CLUSTER_PROMOTION_CLUSTER_VALUES
|
|
1906
1910
|
value: $(params.cluster_promotion_cluster_values)
|
|
1907
1911
|
|
|
1912
|
+
- name: INSTALL_SELENIUM_GRID
|
|
1913
|
+
value: $(params.install_selenium_grid)
|
|
1914
|
+
|
|
1908
1915
|
- name: DEVOPS_BUILD_NUMBER
|
|
1909
1916
|
value: $(params.devops_build_number)
|
|
1910
1917
|
|
|
@@ -1964,7 +1971,7 @@ spec:
|
|
|
1964
1971
|
- -c
|
|
1965
1972
|
name: gitops-cluster
|
|
1966
1973
|
imagePullPolicy: Always
|
|
1967
|
-
image: quay.io/ibmmas/cli:11.
|
|
1974
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
1968
1975
|
workspaces:
|
|
1969
1976
|
- name: configs
|
|
1970
1977
|
# --------------------------------------------------------------------------------
|
|
@@ -2059,7 +2066,7 @@ spec:
|
|
|
2059
2066
|
- -c
|
|
2060
2067
|
name: gitops-cos
|
|
2061
2068
|
imagePullPolicy: IfNotPresent
|
|
2062
|
-
image: quay.io/ibmmas/cli:11.
|
|
2069
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
2063
2070
|
workspaces:
|
|
2064
2071
|
- name: configs
|
|
2065
2072
|
# --------------------------------------------------------------------------------
|
|
@@ -2207,7 +2214,7 @@ spec:
|
|
|
2207
2214
|
- -c
|
|
2208
2215
|
name: gitops-cp4d-service
|
|
2209
2216
|
imagePullPolicy: IfNotPresent
|
|
2210
|
-
image: quay.io/ibmmas/cli:11.
|
|
2217
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
2211
2218
|
workspaces:
|
|
2212
2219
|
- name: configs
|
|
2213
2220
|
- name: shared-gitops-configs
|
|
@@ -2336,7 +2343,7 @@ spec:
|
|
|
2336
2343
|
- -c
|
|
2337
2344
|
name: gitops-cp4d
|
|
2338
2345
|
imagePullPolicy: IfNotPresent
|
|
2339
|
-
image: quay.io/ibmmas/cli:11.
|
|
2346
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
2340
2347
|
workspaces:
|
|
2341
2348
|
- name: configs
|
|
2342
2349
|
- name: shared-gitops-configs
|
|
@@ -2588,7 +2595,7 @@ spec:
|
|
|
2588
2595
|
- -c
|
|
2589
2596
|
name: gitops-db2u-database
|
|
2590
2597
|
imagePullPolicy: Always
|
|
2591
|
-
image: quay.io/ibmmas/cli:11.
|
|
2598
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
2592
2599
|
workspaces:
|
|
2593
2600
|
- name: configs
|
|
2594
2601
|
- name: shared-gitops-configs
|
|
@@ -2686,7 +2693,7 @@ spec:
|
|
|
2686
2693
|
- -c
|
|
2687
2694
|
name: gitops-db2u
|
|
2688
2695
|
imagePullPolicy: IfNotPresent
|
|
2689
|
-
image: quay.io/ibmmas/cli:11.
|
|
2696
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
2690
2697
|
workspaces:
|
|
2691
2698
|
- name: configs
|
|
2692
2699
|
# --------------------------------------------------------------------------------
|
|
@@ -2813,7 +2820,7 @@ spec:
|
|
|
2813
2820
|
- -c
|
|
2814
2821
|
name: gitops-delete-jdbc-config
|
|
2815
2822
|
imagePullPolicy: IfNotPresent
|
|
2816
|
-
image: quay.io/ibmmas/cli:11.
|
|
2823
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
2817
2824
|
workspaces:
|
|
2818
2825
|
- name: configs
|
|
2819
2826
|
# --------------------------------------------------------------------------------
|
|
@@ -2911,7 +2918,7 @@ spec:
|
|
|
2911
2918
|
- -c
|
|
2912
2919
|
name: gitops-delete-kafka-config
|
|
2913
2920
|
imagePullPolicy: Always
|
|
2914
|
-
image: quay.io/ibmmas/cli:11.
|
|
2921
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
2915
2922
|
workspaces:
|
|
2916
2923
|
- name: configs
|
|
2917
2924
|
|
|
@@ -3003,7 +3010,7 @@ spec:
|
|
|
3003
3010
|
- -c
|
|
3004
3011
|
name: gitops-deprovision-app-config
|
|
3005
3012
|
imagePullPolicy: IfNotPresent
|
|
3006
|
-
image: quay.io/ibmmas/cli:11.
|
|
3013
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
3007
3014
|
workspaces:
|
|
3008
3015
|
- name: configs
|
|
3009
3016
|
# --------------------------------------------------------------------------------
|
|
@@ -3088,7 +3095,7 @@ spec:
|
|
|
3088
3095
|
- -c
|
|
3089
3096
|
name: gitops-deprovision-app-install
|
|
3090
3097
|
imagePullPolicy: IfNotPresent
|
|
3091
|
-
image: quay.io/ibmmas/cli:11.
|
|
3098
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
3092
3099
|
workspaces:
|
|
3093
3100
|
- name: configs
|
|
3094
3101
|
# --------------------------------------------------------------------------------
|
|
@@ -3173,7 +3180,7 @@ spec:
|
|
|
3173
3180
|
- -c
|
|
3174
3181
|
name: gitops-deprovision-cluster
|
|
3175
3182
|
imagePullPolicy: IfNotPresent
|
|
3176
|
-
image: quay.io/ibmmas/cli:11.
|
|
3183
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
3177
3184
|
workspaces:
|
|
3178
3185
|
- name: configs
|
|
3179
3186
|
# --------------------------------------------------------------------------------
|
|
@@ -3284,7 +3291,7 @@ spec:
|
|
|
3284
3291
|
- -c
|
|
3285
3292
|
name: gitops-deprovision-cos
|
|
3286
3293
|
imagePullPolicy: IfNotPresent
|
|
3287
|
-
image: quay.io/ibmmas/cli:11.
|
|
3294
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
3288
3295
|
workspaces:
|
|
3289
3296
|
- name: configs
|
|
3290
3297
|
# --------------------------------------------------------------------------------
|
|
@@ -3372,7 +3379,7 @@ spec:
|
|
|
3372
3379
|
- -c
|
|
3373
3380
|
name: gitops-deprovision-db2u-database
|
|
3374
3381
|
imagePullPolicy: IfNotPresent
|
|
3375
|
-
image: quay.io/ibmmas/cli:11.
|
|
3382
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
3376
3383
|
workspaces:
|
|
3377
3384
|
- name: configs
|
|
3378
3385
|
|
|
@@ -3455,7 +3462,7 @@ spec:
|
|
|
3455
3462
|
- -c
|
|
3456
3463
|
name: gitops-deprovision-db2u
|
|
3457
3464
|
imagePullPolicy: IfNotPresent
|
|
3458
|
-
image: quay.io/ibmmas/cli:11.
|
|
3465
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
3459
3466
|
workspaces:
|
|
3460
3467
|
- name: configs
|
|
3461
3468
|
|
|
@@ -3563,7 +3570,7 @@ spec:
|
|
|
3563
3570
|
- -c
|
|
3564
3571
|
name: gitops-deprovision-efs
|
|
3565
3572
|
imagePullPolicy: IfNotPresent
|
|
3566
|
-
image: quay.io/ibmmas/cli:11.
|
|
3573
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
3567
3574
|
workspaces:
|
|
3568
3575
|
- name: configs
|
|
3569
3576
|
|
|
@@ -3673,7 +3680,7 @@ spec:
|
|
|
3673
3680
|
- -c
|
|
3674
3681
|
name: gitops-deprovision-kafka
|
|
3675
3682
|
imagePullPolicy: IfNotPresent
|
|
3676
|
-
image: quay.io/ibmmas/cli:11.
|
|
3683
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
3677
3684
|
workspaces:
|
|
3678
3685
|
- name: configs
|
|
3679
3686
|
# --------------------------------------------------------------------------------
|
|
@@ -3776,7 +3783,7 @@ spec:
|
|
|
3776
3783
|
- -c
|
|
3777
3784
|
name: gitops-deprovision-mongo
|
|
3778
3785
|
imagePullPolicy: IfNotPresent
|
|
3779
|
-
image: quay.io/ibmmas/cli:11.
|
|
3786
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
3780
3787
|
workspaces:
|
|
3781
3788
|
- name: configs
|
|
3782
3789
|
|
|
@@ -3833,7 +3840,7 @@ spec:
|
|
|
3833
3840
|
- -c
|
|
3834
3841
|
name: gitops-deprovision-rosa
|
|
3835
3842
|
imagePullPolicy: IfNotPresent
|
|
3836
|
-
image: quay.io/ibmmas/cli:11.
|
|
3843
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
3837
3844
|
workspaces:
|
|
3838
3845
|
- name: configs
|
|
3839
3846
|
# --------------------------------------------------------------------------------
|
|
@@ -4038,7 +4045,7 @@ spec:
|
|
|
4038
4045
|
- -c
|
|
4039
4046
|
name: gitops-deprovision-suite-config
|
|
4040
4047
|
imagePullPolicy: IfNotPresent
|
|
4041
|
-
image: quay.io/ibmmas/cli:11.
|
|
4048
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
4042
4049
|
workspaces:
|
|
4043
4050
|
- name: configs
|
|
4044
4051
|
|
|
@@ -4136,7 +4143,7 @@ spec:
|
|
|
4136
4143
|
- -c
|
|
4137
4144
|
name: gitops-deprovision-suite-idp-config
|
|
4138
4145
|
imagePullPolicy: IfNotPresent
|
|
4139
|
-
image: quay.io/ibmmas/cli:11.
|
|
4146
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
4140
4147
|
workspaces:
|
|
4141
4148
|
- name: configs
|
|
4142
4149
|
# --------------------------------------------------------------------------------
|
|
@@ -4228,7 +4235,7 @@ spec:
|
|
|
4228
4235
|
- -c
|
|
4229
4236
|
name: gitops-deprovision-suite-objectstorage-config
|
|
4230
4237
|
imagePullPolicy: IfNotPresent
|
|
4231
|
-
image: quay.io/ibmmas/cli:11.
|
|
4238
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
4232
4239
|
workspaces:
|
|
4233
4240
|
- name: configs
|
|
4234
4241
|
# --------------------------------------------------------------------------------
|
|
@@ -4320,7 +4327,7 @@ spec:
|
|
|
4320
4327
|
- -c
|
|
4321
4328
|
name: gitops-deprovision-suite-smtp-config
|
|
4322
4329
|
imagePullPolicy: IfNotPresent
|
|
4323
|
-
image: quay.io/ibmmas/cli:11.
|
|
4330
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
4324
4331
|
workspaces:
|
|
4325
4332
|
- name: configs
|
|
4326
4333
|
# --------------------------------------------------------------------------------
|
|
@@ -4413,7 +4420,7 @@ spec:
|
|
|
4413
4420
|
- -c
|
|
4414
4421
|
name: gitops-deprovision-suite-watson-studio-config
|
|
4415
4422
|
imagePullPolicy: IfNotPresent
|
|
4416
|
-
image: quay.io/ibmmas/cli:11.
|
|
4423
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
4417
4424
|
workspaces:
|
|
4418
4425
|
- name: configs
|
|
4419
4426
|
# --------------------------------------------------------------------------------
|
|
@@ -4504,7 +4511,7 @@ spec:
|
|
|
4504
4511
|
- -c
|
|
4505
4512
|
name: gitops-deprovision-suite-workspace
|
|
4506
4513
|
imagePullPolicy: Always
|
|
4507
|
-
image: quay.io/ibmmas/cli:11.
|
|
4514
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
4508
4515
|
workspaces:
|
|
4509
4516
|
- name: configs
|
|
4510
4517
|
# --------------------------------------------------------------------------------
|
|
@@ -4597,7 +4604,7 @@ spec:
|
|
|
4597
4604
|
- -c
|
|
4598
4605
|
name: gitops-deprovision-suite
|
|
4599
4606
|
imagePullPolicy: IfNotPresent
|
|
4600
|
-
image: quay.io/ibmmas/cli:11.
|
|
4607
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
4601
4608
|
workspaces:
|
|
4602
4609
|
- name: configs
|
|
4603
4610
|
|
|
@@ -4710,7 +4717,7 @@ spec:
|
|
|
4710
4717
|
- -c
|
|
4711
4718
|
name: gitops-dro
|
|
4712
4719
|
imagePullPolicy: IfNotPresent
|
|
4713
|
-
image: quay.io/ibmmas/cli:11.
|
|
4720
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
4714
4721
|
workspaces:
|
|
4715
4722
|
- name: configs
|
|
4716
4723
|
# --------------------------------------------------------------------------------
|
|
@@ -4827,7 +4834,7 @@ spec:
|
|
|
4827
4834
|
- -c
|
|
4828
4835
|
name: gitops-efs
|
|
4829
4836
|
imagePullPolicy: IfNotPresent
|
|
4830
|
-
image: quay.io/ibmmas/cli:11.
|
|
4837
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
4831
4838
|
workspaces:
|
|
4832
4839
|
- name: configs
|
|
4833
4840
|
|
|
@@ -4962,7 +4969,7 @@ spec:
|
|
|
4962
4969
|
- -c
|
|
4963
4970
|
name: gitops-jdbc-config
|
|
4964
4971
|
imagePullPolicy: Always
|
|
4965
|
-
image: quay.io/ibmmas/cli:11.
|
|
4972
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
4966
4973
|
workspaces:
|
|
4967
4974
|
- name: configs
|
|
4968
4975
|
- name: shared-gitops-configs
|
|
@@ -5058,7 +5065,7 @@ spec:
|
|
|
5058
5065
|
- -c
|
|
5059
5066
|
name: gitops-kafka-config
|
|
5060
5067
|
imagePullPolicy: Always
|
|
5061
|
-
image: quay.io/ibmmas/cli:11.
|
|
5068
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
5062
5069
|
workspaces:
|
|
5063
5070
|
- name: configs
|
|
5064
5071
|
|
|
@@ -5180,10 +5187,85 @@ spec:
|
|
|
5180
5187
|
- -c
|
|
5181
5188
|
name: gitops-kafka
|
|
5182
5189
|
imagePullPolicy: IfNotPresent
|
|
5183
|
-
image: quay.io/ibmmas/cli:11.
|
|
5190
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
5184
5191
|
workspaces:
|
|
5185
5192
|
- name: configs
|
|
5186
5193
|
# --------------------------------------------------------------------------------
|
|
5194
|
+
# /home/runner/work/cli/cli/tekton/target/tasks/gitops-license-generator.yaml
|
|
5195
|
+
# --------------------------------------------------------------------------------
|
|
5196
|
+
---
|
|
5197
|
+
apiVersion: tekton.dev/v1beta1
|
|
5198
|
+
kind: Task
|
|
5199
|
+
metadata:
|
|
5200
|
+
name: gitops-license-generator
|
|
5201
|
+
spec:
|
|
5202
|
+
params:
|
|
5203
|
+
- name: cluster_name
|
|
5204
|
+
type: string
|
|
5205
|
+
- name: account
|
|
5206
|
+
type: string
|
|
5207
|
+
- name: mas_instance_id
|
|
5208
|
+
type: string
|
|
5209
|
+
- name: avp_aws_secret_region
|
|
5210
|
+
type: string
|
|
5211
|
+
|
|
5212
|
+
- name: expiry_date
|
|
5213
|
+
type: string
|
|
5214
|
+
- name: app_points
|
|
5215
|
+
type: string
|
|
5216
|
+
- name: customer_name
|
|
5217
|
+
type: string
|
|
5218
|
+
- name: country
|
|
5219
|
+
type: string
|
|
5220
|
+
- name: icn
|
|
5221
|
+
type: string
|
|
5222
|
+
stepTemplate:
|
|
5223
|
+
name: gitops-license-generator
|
|
5224
|
+
env:
|
|
5225
|
+
- name: CLUSTER_NAME
|
|
5226
|
+
value: $(params.cluster_name)
|
|
5227
|
+
- name: ACCOUNT
|
|
5228
|
+
value: $(params.account)
|
|
5229
|
+
- name: MAS_INSTANCE_ID
|
|
5230
|
+
value: $(params.mas_instance_id)
|
|
5231
|
+
- name: SM_AWS_REGION
|
|
5232
|
+
value: $(params.avp_aws_secret_region)
|
|
5233
|
+
|
|
5234
|
+
- name: EXPIRY_DATE
|
|
5235
|
+
value: $(params.expiry_date)
|
|
5236
|
+
- name: APP_POINTS
|
|
5237
|
+
value: $(params.app_points)
|
|
5238
|
+
- name: CUSTOMER_NAME
|
|
5239
|
+
value: $(params.customer_name)
|
|
5240
|
+
- name: COUNTRY
|
|
5241
|
+
value: $(params.country)
|
|
5242
|
+
- name: ICN
|
|
5243
|
+
value: $(params.icn)
|
|
5244
|
+
envFrom:
|
|
5245
|
+
- configMapRef:
|
|
5246
|
+
name: environment-properties
|
|
5247
|
+
optional: true
|
|
5248
|
+
- secretRef:
|
|
5249
|
+
name: secure-properties
|
|
5250
|
+
steps:
|
|
5251
|
+
- args:
|
|
5252
|
+
- |-
|
|
5253
|
+
ansible-playbook ibm.mas_saas.generate_saas_license_file || exit 1
|
|
5254
|
+
|
|
5255
|
+
mas gitops-license \
|
|
5256
|
+
-a $ACCOUNT \
|
|
5257
|
+
-c $CLUSTER_NAME \
|
|
5258
|
+
-m $MAS_INSTANCE_ID \
|
|
5259
|
+
--license-file /tmp/authorized_entitlement_saas.lic
|
|
5260
|
+
|
|
5261
|
+
exit $?
|
|
5262
|
+
command:
|
|
5263
|
+
- /bin/sh
|
|
5264
|
+
- -c
|
|
5265
|
+
name: gitops-license-generator
|
|
5266
|
+
imagePullPolicy: Always
|
|
5267
|
+
image: docker-na-public.artifactory.swg-devops.com/wiotp-docker-local/mas/saas-task:latest
|
|
5268
|
+
# --------------------------------------------------------------------------------
|
|
5187
5269
|
# /home/runner/work/cli/cli/tekton/target/tasks/gitops-license.yaml
|
|
5188
5270
|
# --------------------------------------------------------------------------------
|
|
5189
5271
|
---
|
|
@@ -5231,7 +5313,7 @@ spec:
|
|
|
5231
5313
|
- -c
|
|
5232
5314
|
name: gitops-license
|
|
5233
5315
|
imagePullPolicy: Always
|
|
5234
|
-
image: quay.io/ibmmas/cli:11.
|
|
5316
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
5235
5317
|
workspaces:
|
|
5236
5318
|
- name: shared-entitlement
|
|
5237
5319
|
|
|
@@ -5734,7 +5816,7 @@ spec:
|
|
|
5734
5816
|
- -c
|
|
5735
5817
|
name: gitops-mas-fvt-preparer
|
|
5736
5818
|
imagePullPolicy: Always
|
|
5737
|
-
image: quay.io/ibmmas/cli:11.
|
|
5819
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
5738
5820
|
workspaces:
|
|
5739
5821
|
- name: configs
|
|
5740
5822
|
- name: shared-additional-configs
|
|
@@ -6176,7 +6258,7 @@ spec:
|
|
|
6176
6258
|
- -c
|
|
6177
6259
|
name: gitops-mas-initiator
|
|
6178
6260
|
imagePullPolicy: IfNotPresent
|
|
6179
|
-
image: quay.io/ibmmas/cli:11.
|
|
6261
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
6180
6262
|
workspaces:
|
|
6181
6263
|
- name: configs
|
|
6182
6264
|
# --------------------------------------------------------------------------------
|
|
@@ -6284,7 +6366,7 @@ spec:
|
|
|
6284
6366
|
- -c
|
|
6285
6367
|
name: gitops-mongo
|
|
6286
6368
|
imagePullPolicy: IfNotPresent
|
|
6287
|
-
image: quay.io/ibmmas/cli:11.
|
|
6369
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
6288
6370
|
workspaces:
|
|
6289
6371
|
- name: configs
|
|
6290
6372
|
|
|
@@ -6406,7 +6488,7 @@ spec:
|
|
|
6406
6488
|
- -c
|
|
6407
6489
|
name: gitops-nvidia-gpu
|
|
6408
6490
|
imagePullPolicy: IfNotPresent
|
|
6409
|
-
image: quay.io/ibmmas/cli:11.
|
|
6491
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
6410
6492
|
workspaces:
|
|
6411
6493
|
- name: configs
|
|
6412
6494
|
# --------------------------------------------------------------------------------
|
|
@@ -6524,7 +6606,7 @@ spec:
|
|
|
6524
6606
|
- -c
|
|
6525
6607
|
name: gitops-process-mongo-user
|
|
6526
6608
|
imagePullPolicy: IfNotPresent
|
|
6527
|
-
image: quay.io/ibmmas/cli:11.
|
|
6609
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
6528
6610
|
workspaces:
|
|
6529
6611
|
- name: configs
|
|
6530
6612
|
# --------------------------------------------------------------------------------
|
|
@@ -6580,7 +6662,7 @@ spec:
|
|
|
6580
6662
|
- -c
|
|
6581
6663
|
name: gitops-rosa
|
|
6582
6664
|
imagePullPolicy: IfNotPresent
|
|
6583
|
-
image: quay.io/ibmmas/cli:11.
|
|
6665
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
6584
6666
|
workspaces:
|
|
6585
6667
|
- name: configs
|
|
6586
6668
|
# --------------------------------------------------------------------------------
|
|
@@ -6762,7 +6844,7 @@ spec:
|
|
|
6762
6844
|
- -c
|
|
6763
6845
|
name: gitops-suite-app-config
|
|
6764
6846
|
imagePullPolicy: IfNotPresent
|
|
6765
|
-
image: quay.io/ibmmas/cli:11.
|
|
6847
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
6766
6848
|
workspaces:
|
|
6767
6849
|
- name: configs
|
|
6768
6850
|
- name: shared-gitops-configs
|
|
@@ -6920,7 +7002,7 @@ spec:
|
|
|
6920
7002
|
- -c
|
|
6921
7003
|
name: gitops-suite-app-install
|
|
6922
7004
|
imagePullPolicy: Always
|
|
6923
|
-
image: quay.io/ibmmas/cli:11.
|
|
7005
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
6924
7006
|
workspaces:
|
|
6925
7007
|
- name: configs
|
|
6926
7008
|
- name: shared-gitops-configs
|
|
@@ -7026,7 +7108,7 @@ spec:
|
|
|
7026
7108
|
- -c
|
|
7027
7109
|
name: gitops-suite-certs
|
|
7028
7110
|
imagePullPolicy: IfNotPresent
|
|
7029
|
-
image: quay.io/ibmmas/cli:11.
|
|
7111
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
7030
7112
|
workspaces:
|
|
7031
7113
|
- name: configs
|
|
7032
7114
|
- name: certificates
|
|
@@ -7186,7 +7268,7 @@ spec:
|
|
|
7186
7268
|
- -c
|
|
7187
7269
|
name: gitops-suite-config
|
|
7188
7270
|
imagePullPolicy: IfNotPresent
|
|
7189
|
-
image: quay.io/ibmmas/cli:11.
|
|
7271
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
7190
7272
|
workspaces:
|
|
7191
7273
|
- name: configs
|
|
7192
7274
|
- name: shared-additional-configs
|
|
@@ -7286,7 +7368,7 @@ spec:
|
|
|
7286
7368
|
- -c
|
|
7287
7369
|
name: gitops-suite-dns
|
|
7288
7370
|
imagePullPolicy: IfNotPresent
|
|
7289
|
-
image: quay.io/ibmmas/cli:11.
|
|
7371
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
7290
7372
|
workspaces:
|
|
7291
7373
|
- name: configs
|
|
7292
7374
|
|
|
@@ -7410,7 +7492,7 @@ spec:
|
|
|
7410
7492
|
- -c
|
|
7411
7493
|
name: gitops-suite-idp-config
|
|
7412
7494
|
imagePullPolicy: IfNotPresent
|
|
7413
|
-
image: quay.io/ibmmas/cli:11.
|
|
7495
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
7414
7496
|
workspaces:
|
|
7415
7497
|
- name: configs
|
|
7416
7498
|
- name: shared-additional-configs
|
|
@@ -7511,7 +7593,7 @@ spec:
|
|
|
7511
7593
|
- -c
|
|
7512
7594
|
name: gitops-suite-objectstorage-config
|
|
7513
7595
|
imagePullPolicy: IfNotPresent
|
|
7514
|
-
image: quay.io/ibmmas/cli:11.
|
|
7596
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
7515
7597
|
workspaces:
|
|
7516
7598
|
- name: configs
|
|
7517
7599
|
- name: shared-gitops-configs
|
|
@@ -7647,7 +7729,7 @@ spec:
|
|
|
7647
7729
|
- -c
|
|
7648
7730
|
name: gitops-suite-smtp-config
|
|
7649
7731
|
imagePullPolicy: IfNotPresent
|
|
7650
|
-
image: quay.io/ibmmas/cli:11.
|
|
7732
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
7651
7733
|
workspaces:
|
|
7652
7734
|
- name: configs
|
|
7653
7735
|
|
|
@@ -7756,7 +7838,7 @@ spec:
|
|
|
7756
7838
|
- -c
|
|
7757
7839
|
name: gitops-suite-watson-studio-config
|
|
7758
7840
|
imagePullPolicy: IfNotPresent
|
|
7759
|
-
image: quay.io/ibmmas/cli:11.
|
|
7841
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
7760
7842
|
workspaces:
|
|
7761
7843
|
- name: configs
|
|
7762
7844
|
- name: shared-gitops-configs
|
|
@@ -7853,7 +7935,7 @@ spec:
|
|
|
7853
7935
|
- -c
|
|
7854
7936
|
name: gitops-suite-workspace
|
|
7855
7937
|
imagePullPolicy: IfNotPresent
|
|
7856
|
-
image: quay.io/ibmmas/cli:11.
|
|
7938
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
7857
7939
|
workspaces:
|
|
7858
7940
|
- name: configs
|
|
7859
7941
|
# --------------------------------------------------------------------------------
|
|
@@ -8133,7 +8215,7 @@ spec:
|
|
|
8133
8215
|
- -c
|
|
8134
8216
|
name: gitops-suite
|
|
8135
8217
|
imagePullPolicy: IfNotPresent
|
|
8136
|
-
image: quay.io/ibmmas/cli:11.
|
|
8218
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
8137
8219
|
workspaces:
|
|
8138
8220
|
- name: configs
|
|
8139
8221
|
- name: shared-gitops-configs
|
|
@@ -8183,7 +8265,7 @@ spec:
|
|
|
8183
8265
|
|
|
8184
8266
|
steps:
|
|
8185
8267
|
- name: grafana
|
|
8186
|
-
image: quay.io/ibmmas/cli:11.
|
|
8268
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
8187
8269
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8188
8270
|
command:
|
|
8189
8271
|
- /opt/app-root/src/run-role.sh
|
|
@@ -8317,7 +8399,7 @@ spec:
|
|
|
8317
8399
|
command:
|
|
8318
8400
|
- /opt/app-root/src/run-role.sh
|
|
8319
8401
|
- ibm_catalogs
|
|
8320
|
-
image: quay.io/ibmmas/cli:11.
|
|
8402
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
8321
8403
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8322
8404
|
workingDir: /workspace/configs
|
|
8323
8405
|
# --------------------------------------------------------------------------------
|
|
@@ -8559,7 +8641,7 @@ spec:
|
|
|
8559
8641
|
command:
|
|
8560
8642
|
- /opt/app-root/src/run-role.sh
|
|
8561
8643
|
- kafka
|
|
8562
|
-
image: quay.io/ibmmas/cli:11.
|
|
8644
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
8563
8645
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8564
8646
|
workingDir: /workspace/configs
|
|
8565
8647
|
|
|
@@ -8775,7 +8857,7 @@ spec:
|
|
|
8775
8857
|
command:
|
|
8776
8858
|
- /opt/app-root/src/run-role.sh
|
|
8777
8859
|
- kmodels
|
|
8778
|
-
image: quay.io/ibmmas/cli:11.
|
|
8860
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
8779
8861
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8780
8862
|
# --------------------------------------------------------------------------------
|
|
8781
8863
|
# /home/runner/work/cli/cli/tekton/target/tasks/mongodb.yaml
|
|
@@ -8953,7 +9035,7 @@ spec:
|
|
|
8953
9035
|
command:
|
|
8954
9036
|
- /opt/app-root/src/run-role.sh
|
|
8955
9037
|
- mongodb
|
|
8956
|
-
image: quay.io/ibmmas/cli:11.
|
|
9038
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
8957
9039
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8958
9040
|
workingDir: /workspace/configs
|
|
8959
9041
|
|
|
@@ -8996,7 +9078,7 @@ spec:
|
|
|
8996
9078
|
- $(params.base_output_dir)
|
|
8997
9079
|
- --extra-namespaces
|
|
8998
9080
|
- selenium
|
|
8999
|
-
image: quay.io/ibmmas/cli:11.
|
|
9081
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
9000
9082
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9001
9083
|
env:
|
|
9002
9084
|
- name: DEVOPS_MONGO_URI
|
|
@@ -9113,7 +9195,7 @@ spec:
|
|
|
9113
9195
|
command:
|
|
9114
9196
|
- /opt/app-root/src/run-role.sh
|
|
9115
9197
|
- nvidia_gpu
|
|
9116
|
-
image: quay.io/ibmmas/cli:11.
|
|
9198
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
9117
9199
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9118
9200
|
workingDir: /workspace/configs
|
|
9119
9201
|
|
|
@@ -9149,7 +9231,7 @@ spec:
|
|
|
9149
9231
|
# Verify Cluster
|
|
9150
9232
|
# -------------------------------------------------------------------------
|
|
9151
9233
|
- name: ocp-verify-cluster
|
|
9152
|
-
image: quay.io/ibmmas/cli:11.
|
|
9234
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
9153
9235
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9154
9236
|
command:
|
|
9155
9237
|
- /opt/app-root/src/run-role.sh
|
|
@@ -9191,7 +9273,7 @@ spec:
|
|
|
9191
9273
|
# Verify Catalogs
|
|
9192
9274
|
# -------------------------------------------------------------------------
|
|
9193
9275
|
- name: ocp-verify-catalogs
|
|
9194
|
-
image: quay.io/ibmmas/cli:11.
|
|
9276
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
9195
9277
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9196
9278
|
command:
|
|
9197
9279
|
- /opt/app-root/src/run-role.sh
|
|
@@ -9233,7 +9315,7 @@ spec:
|
|
|
9233
9315
|
# Verify Subscriptions
|
|
9234
9316
|
# -------------------------------------------------------------------------
|
|
9235
9317
|
- name: ocp-verify-subscriptions
|
|
9236
|
-
image: quay.io/ibmmas/cli:11.
|
|
9318
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
9237
9319
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9238
9320
|
command:
|
|
9239
9321
|
- /opt/app-root/src/run-role.sh
|
|
@@ -9275,7 +9357,7 @@ spec:
|
|
|
9275
9357
|
# Verify Workloads
|
|
9276
9358
|
# -------------------------------------------------------------------------
|
|
9277
9359
|
- name: ocp-verify-workloads
|
|
9278
|
-
image: quay.io/ibmmas/cli:11.
|
|
9360
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
9279
9361
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9280
9362
|
command:
|
|
9281
9363
|
- /opt/app-root/src/run-role.sh
|
|
@@ -9317,7 +9399,7 @@ spec:
|
|
|
9317
9399
|
# Verify Catalogs - Ingress TLS
|
|
9318
9400
|
# -------------------------------------------------------------------------
|
|
9319
9401
|
- name: ocp-verify-ingress
|
|
9320
|
-
image: quay.io/ibmmas/cli:11.
|
|
9402
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
9321
9403
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9322
9404
|
command:
|
|
9323
9405
|
- /opt/app-root/src/run-role.sh
|
|
@@ -9443,7 +9525,7 @@ spec:
|
|
|
9443
9525
|
command:
|
|
9444
9526
|
- /opt/app-root/src/run-role.sh
|
|
9445
9527
|
- ocp_verify
|
|
9446
|
-
image: quay.io/ibmmas/cli:11.
|
|
9528
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
9447
9529
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9448
9530
|
workingDir: /workspace/configs
|
|
9449
9531
|
# --------------------------------------------------------------------------------
|
|
@@ -9511,7 +9593,7 @@ spec:
|
|
|
9511
9593
|
command:
|
|
9512
9594
|
- /opt/app-root/src/run-role.sh
|
|
9513
9595
|
- ocs
|
|
9514
|
-
image: quay.io/ibmmas/cli:11.
|
|
9596
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
9515
9597
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9516
9598
|
workingDir: /workspace/configs
|
|
9517
9599
|
|
|
@@ -9747,7 +9829,7 @@ spec:
|
|
|
9747
9829
|
command:
|
|
9748
9830
|
- /opt/app-root/src/run-role.sh
|
|
9749
9831
|
- odh
|
|
9750
|
-
image: quay.io/ibmmas/cli:11.
|
|
9832
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
9751
9833
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9752
9834
|
# --------------------------------------------------------------------------------
|
|
9753
9835
|
# /home/runner/work/cli/cli/tekton/target/tasks/sls-registry-update.yaml
|
|
@@ -9923,7 +10005,7 @@ spec:
|
|
|
9923
10005
|
command:
|
|
9924
10006
|
- /opt/app-root/src/run-role.sh
|
|
9925
10007
|
- sls
|
|
9926
|
-
image: quay.io/ibmmas/cli:11.
|
|
10008
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
9927
10009
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9928
10010
|
workingDir: /workspace/configs
|
|
9929
10011
|
|
|
@@ -10300,12 +10382,12 @@ spec:
|
|
|
10300
10382
|
command:
|
|
10301
10383
|
- /opt/app-root/src/run-role.sh
|
|
10302
10384
|
- suite_app_config
|
|
10303
|
-
image: quay.io/ibmmas/cli:11.
|
|
10385
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
10304
10386
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10305
10387
|
|
|
10306
10388
|
# If configmap/approval-app-cfg-$(params.mas_app_id) exists then set CONFIGMAP_KEY=pending and wait for it to be changed to "approved"
|
|
10307
10389
|
- name: app-cfg-post-verify
|
|
10308
|
-
image: quay.io/ibmmas/cli:11.
|
|
10390
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
10309
10391
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10310
10392
|
command:
|
|
10311
10393
|
- /opt/app-root/src/wait-for-configmap.sh
|
|
@@ -10506,7 +10588,7 @@ spec:
|
|
|
10506
10588
|
command:
|
|
10507
10589
|
- /opt/app-root/src/run-role.sh
|
|
10508
10590
|
- suite_app_install
|
|
10509
|
-
image: quay.io/ibmmas/cli:11.
|
|
10591
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
10510
10592
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10511
10593
|
|
|
10512
10594
|
workspaces:
|
|
@@ -10595,7 +10677,7 @@ spec:
|
|
|
10595
10677
|
command:
|
|
10596
10678
|
- /opt/app-root/src/run-role.sh
|
|
10597
10679
|
- suite_app_rollback
|
|
10598
|
-
image: quay.io/ibmmas/cli:11.
|
|
10680
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
10599
10681
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10600
10682
|
# --------------------------------------------------------------------------------
|
|
10601
10683
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-app-uninstall.yaml
|
|
@@ -10658,7 +10740,7 @@ spec:
|
|
|
10658
10740
|
command:
|
|
10659
10741
|
- /opt/app-root/src/run-role.sh
|
|
10660
10742
|
- suite_app_uninstall
|
|
10661
|
-
image: quay.io/ibmmas/cli:11.
|
|
10743
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
10662
10744
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10663
10745
|
# --------------------------------------------------------------------------------
|
|
10664
10746
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-app-upgrade.yaml
|
|
@@ -10733,7 +10815,7 @@ spec:
|
|
|
10733
10815
|
command:
|
|
10734
10816
|
- /opt/app-root/src/run-role.sh
|
|
10735
10817
|
- suite_app_upgrade
|
|
10736
|
-
image: quay.io/ibmmas/cli:11.
|
|
10818
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
10737
10819
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10738
10820
|
# --------------------------------------------------------------------------------
|
|
10739
10821
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-app-verify.yaml
|
|
@@ -10834,7 +10916,7 @@ spec:
|
|
|
10834
10916
|
command:
|
|
10835
10917
|
- /opt/app-root/src/run-role.sh
|
|
10836
10918
|
- suite_app_verify
|
|
10837
|
-
image: quay.io/ibmmas/cli:11.
|
|
10919
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
10838
10920
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10839
10921
|
# --------------------------------------------------------------------------------
|
|
10840
10922
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-certs.yaml
|
|
@@ -10977,7 +11059,7 @@ spec:
|
|
|
10977
11059
|
command:
|
|
10978
11060
|
- /opt/app-root/src/run-role.sh
|
|
10979
11061
|
- suite_certs
|
|
10980
|
-
image: quay.io/ibmmas/cli:11.
|
|
11062
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
10981
11063
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10982
11064
|
|
|
10983
11065
|
workspaces:
|
|
@@ -11044,7 +11126,7 @@ spec:
|
|
|
11044
11126
|
command:
|
|
11045
11127
|
- /opt/app-root/src/run-role.sh
|
|
11046
11128
|
- suite_config
|
|
11047
|
-
image: quay.io/ibmmas/cli:11.
|
|
11129
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
11048
11130
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11049
11131
|
workingDir: /workspace/configs
|
|
11050
11132
|
|
|
@@ -11115,7 +11197,7 @@ spec:
|
|
|
11115
11197
|
command:
|
|
11116
11198
|
- /opt/app-root/src/run-role.sh
|
|
11117
11199
|
- suite_db2_setup_for_manage
|
|
11118
|
-
image: quay.io/ibmmas/cli:11.
|
|
11200
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
11119
11201
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11120
11202
|
# --------------------------------------------------------------------------------
|
|
11121
11203
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-dns.yaml
|
|
@@ -11305,7 +11387,7 @@ spec:
|
|
|
11305
11387
|
command:
|
|
11306
11388
|
- /opt/app-root/src/run-role.sh
|
|
11307
11389
|
- suite_dns
|
|
11308
|
-
image: quay.io/ibmmas/cli:11.
|
|
11390
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
11309
11391
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11310
11392
|
# --------------------------------------------------------------------------------
|
|
11311
11393
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-install.yaml
|
|
@@ -11554,7 +11636,7 @@ spec:
|
|
|
11554
11636
|
command:
|
|
11555
11637
|
- /opt/app-root/src/run-role.sh
|
|
11556
11638
|
- suite_install
|
|
11557
|
-
image: quay.io/ibmmas/cli:11.
|
|
11639
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
11558
11640
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11559
11641
|
workingDir: /workspace/configs
|
|
11560
11642
|
|
|
@@ -11642,7 +11724,7 @@ spec:
|
|
|
11642
11724
|
command:
|
|
11643
11725
|
- /opt/app-root/src/run-role.sh
|
|
11644
11726
|
- suite_rollback
|
|
11645
|
-
image: quay.io/ibmmas/cli:11.
|
|
11727
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
11646
11728
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11647
11729
|
# --------------------------------------------------------------------------------
|
|
11648
11730
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-uninstall.yaml
|
|
@@ -11707,7 +11789,7 @@ spec:
|
|
|
11707
11789
|
command:
|
|
11708
11790
|
- /opt/app-root/src/run-role.sh
|
|
11709
11791
|
- suite_uninstall
|
|
11710
|
-
image: quay.io/ibmmas/cli:11.
|
|
11792
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
11711
11793
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11712
11794
|
# --------------------------------------------------------------------------------
|
|
11713
11795
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-upgrade.yaml
|
|
@@ -11777,7 +11859,7 @@ spec:
|
|
|
11777
11859
|
command:
|
|
11778
11860
|
- /opt/app-root/src/run-role.sh
|
|
11779
11861
|
- suite_upgrade
|
|
11780
|
-
image: quay.io/ibmmas/cli:11.
|
|
11862
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
11781
11863
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11782
11864
|
# --------------------------------------------------------------------------------
|
|
11783
11865
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-verify.yaml
|
|
@@ -11844,12 +11926,12 @@ spec:
|
|
|
11844
11926
|
command:
|
|
11845
11927
|
- /opt/app-root/src/run-role.sh
|
|
11846
11928
|
- suite_verify
|
|
11847
|
-
image: quay.io/ibmmas/cli:11.
|
|
11929
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
11848
11930
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11849
11931
|
|
|
11850
11932
|
# If configmap/approval-suite-verify exists then set CONFIGMAP_KEY=pending and wait for it to be changed to "approved"
|
|
11851
11933
|
- name: suite-post-verify
|
|
11852
|
-
image: quay.io/ibmmas/cli:11.
|
|
11934
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
11853
11935
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11854
11936
|
script: |
|
|
11855
11937
|
#!/usr/bin/env bash
|
|
@@ -11983,7 +12065,7 @@ spec:
|
|
|
11983
12065
|
command:
|
|
11984
12066
|
- /opt/app-root/src/run-role.sh
|
|
11985
12067
|
- turbonomic
|
|
11986
|
-
image: quay.io/ibmmas/cli:11.
|
|
12068
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
11987
12069
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11988
12070
|
# --------------------------------------------------------------------------------
|
|
11989
12071
|
# /home/runner/work/cli/cli/tekton/target/tasks/uds.yaml
|
|
@@ -12064,7 +12146,7 @@ spec:
|
|
|
12064
12146
|
# IBM User Data Services (UDS)
|
|
12065
12147
|
# -------------------------------------------------------------------------
|
|
12066
12148
|
- name: uds
|
|
12067
|
-
image: quay.io/ibmmas/cli:11.
|
|
12149
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
12068
12150
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12069
12151
|
workingDir: /workspace/configs
|
|
12070
12152
|
command:
|
|
@@ -12127,7 +12209,7 @@ spec:
|
|
|
12127
12209
|
# IBM Data Reporter Operator (DRO)
|
|
12128
12210
|
# -------------------------------------------------------------------------
|
|
12129
12211
|
- name: dro
|
|
12130
|
-
image: quay.io/ibmmas/cli:11.
|
|
12212
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
12131
12213
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12132
12214
|
workingDir: /workspace/configs
|
|
12133
12215
|
command:
|
|
@@ -12213,7 +12295,7 @@ spec:
|
|
|
12213
12295
|
|
|
12214
12296
|
steps:
|
|
12215
12297
|
- name: update-configmap
|
|
12216
|
-
image: quay.io/ibmmas/cli:11.
|
|
12298
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
12217
12299
|
command:
|
|
12218
12300
|
- /opt/app-root/src/update-configmap.sh
|
|
12219
12301
|
env:
|
|
@@ -12275,7 +12357,7 @@ spec:
|
|
|
12275
12357
|
|
|
12276
12358
|
steps:
|
|
12277
12359
|
- name: wait-for-configmap
|
|
12278
|
-
image: quay.io/ibmmas/cli:11.
|
|
12360
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
12279
12361
|
command:
|
|
12280
12362
|
- /opt/app-root/src/wait-for-configmap.sh
|
|
12281
12363
|
env:
|
|
@@ -12339,7 +12421,7 @@ spec:
|
|
|
12339
12421
|
|
|
12340
12422
|
steps:
|
|
12341
12423
|
- name: wait
|
|
12342
|
-
image: quay.io/ibmmas/cli:11.
|
|
12424
|
+
image: quay.io/ibmmas/cli:11.8.1
|
|
12343
12425
|
command:
|
|
12344
12426
|
- /opt/app-root/src/wait-for-tekton.sh
|
|
12345
12427
|
env:
|
|
@@ -17334,6 +17416,9 @@ spec:
|
|
|
17334
17416
|
- name: cluster_promotion_cluster_values
|
|
17335
17417
|
type: string
|
|
17336
17418
|
default: ''
|
|
17419
|
+
- name: install_selenium_grid
|
|
17420
|
+
type: string
|
|
17421
|
+
default: ''
|
|
17337
17422
|
- name: devops_build_number
|
|
17338
17423
|
type: string
|
|
17339
17424
|
default: ''
|
|
@@ -17401,6 +17486,9 @@ spec:
|
|
|
17401
17486
|
- name: cluster_promotion_cluster_values
|
|
17402
17487
|
value: $(params.cluster_promotion_cluster_values)
|
|
17403
17488
|
|
|
17489
|
+
- name: install_selenium_grid
|
|
17490
|
+
value: ${params.install_selenium_grid)
|
|
17491
|
+
|
|
17404
17492
|
- name: devops_build_number
|
|
17405
17493
|
value: $(params.devops_build_number)
|
|
17406
17494
|
|
|
@@ -18955,6 +19043,18 @@ spec:
|
|
|
18955
19043
|
- name: db2_action
|
|
18956
19044
|
type: string
|
|
18957
19045
|
|
|
19046
|
+
# gitops-license-generator parameters
|
|
19047
|
+
# -------------------------------------------------------------------------
|
|
19048
|
+
- name: sls_license_expiry_date
|
|
19049
|
+
type: string
|
|
19050
|
+
- name: sls_license_app_points
|
|
19051
|
+
type: string
|
|
19052
|
+
- name: sls_license_customer_name
|
|
19053
|
+
type: string
|
|
19054
|
+
- name: sls_license_country
|
|
19055
|
+
type: string
|
|
19056
|
+
- name: sls_license_icn
|
|
19057
|
+
type: string
|
|
18958
19058
|
|
|
18959
19059
|
tasks:
|
|
18960
19060
|
|
|
@@ -19015,12 +19115,46 @@ spec:
|
|
|
19015
19115
|
taskRef:
|
|
19016
19116
|
kind: Task
|
|
19017
19117
|
name: gitops-license
|
|
19118
|
+
when:
|
|
19119
|
+
- input: "$(params.sls_license_app_points)"
|
|
19120
|
+
operator: in
|
|
19121
|
+
values: [""]
|
|
19122
|
+
|
|
19123
|
+
- name: gitops-license-generator
|
|
19124
|
+
params:
|
|
19125
|
+
- name: cluster_name
|
|
19126
|
+
value: $(params.cluster_name)
|
|
19127
|
+
- name: account
|
|
19128
|
+
value: $(params.account)
|
|
19129
|
+
- name: mas_instance_id
|
|
19130
|
+
value: $(params.mas_instance_id)
|
|
19131
|
+
- name: avp_aws_secret_region
|
|
19132
|
+
value: $(params.avp_aws_secret_region)
|
|
19133
|
+
|
|
19134
|
+
- name: expiry_date
|
|
19135
|
+
value: $(params.sls_license_expiry_date)
|
|
19136
|
+
- name: app_points
|
|
19137
|
+
value: $(params.sls_license_app_points)
|
|
19138
|
+
- name: customer_name
|
|
19139
|
+
value: $(params.sls_license_customer_name)
|
|
19140
|
+
- name: country
|
|
19141
|
+
value: $(params.sls_license_country)
|
|
19142
|
+
- name: icn
|
|
19143
|
+
value: $(params.sls_license_icn)
|
|
19144
|
+
taskRef:
|
|
19145
|
+
kind: Task
|
|
19146
|
+
name: gitops-license-generator
|
|
19147
|
+
when:
|
|
19148
|
+
- input: "$(params.sls_license_app_points)"
|
|
19149
|
+
operator: notin
|
|
19150
|
+
values: [""]
|
|
19018
19151
|
|
|
19019
19152
|
# 2. MAS Suite
|
|
19020
19153
|
# -------------------------------------------------------------------------
|
|
19021
19154
|
- name: gitops-suite
|
|
19022
19155
|
runAfter:
|
|
19023
19156
|
- gitops-license
|
|
19157
|
+
- gitops-license-generator
|
|
19024
19158
|
params:
|
|
19025
19159
|
- name: cluster_name
|
|
19026
19160
|
value: $(params.cluster_name)
|
mas/cli/update/app.py
CHANGED
|
@@ -244,7 +244,7 @@ class UpdateApp(BaseApp):
|
|
|
244
244
|
self.printH1("Select IBM Maximo Operator Catalog Version")
|
|
245
245
|
self.printDescription([
|
|
246
246
|
"Select MAS Catalog",
|
|
247
|
-
" 1) Nov 07 2024 Update (MAS 9.0.
|
|
247
|
+
" 1) Nov 07 2024 Update (MAS 9.0.5, 8.11.16, & 8.10.19)",
|
|
248
248
|
" 1) Oct 03 2024 Update (MAS 9.0.3, 8.11.15, & 8.10.18)",
|
|
249
249
|
" 2) Aug 27 2024 Update (MAS 9.0.2, 8.11.14, & 8.10.17)",
|
|
250
250
|
])
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mas-cli
|
|
3
|
-
Version: 11.
|
|
3
|
+
Version: 11.8.1
|
|
4
4
|
Summary: Python Admin CLI for Maximo Application Suite
|
|
5
5
|
Home-page: https://github.com/ibm-mas/cli
|
|
6
6
|
Author: David Parker
|
|
@@ -17,7 +17,7 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
17
17
|
Classifier: Topic :: Communications
|
|
18
18
|
Classifier: Topic :: Internet
|
|
19
19
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
20
|
-
Requires-Dist: mas-devops >=1.7.
|
|
20
|
+
Requires-Dist: mas-devops >=1.7.1
|
|
21
21
|
Requires-Dist: halo
|
|
22
22
|
Requires-Dist: prompt-toolkit
|
|
23
23
|
Requires-Dist: openshift
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
mas/cli/__init__.py,sha256=
|
|
2
|
-
mas/cli/cli.py,sha256=
|
|
1
|
+
mas/cli/__init__.py,sha256=4UNDRbnOMEO9AOLEQ40WAOecAACS55O2k_uYT03rdxU,526
|
|
2
|
+
mas/cli/cli.py,sha256=a9kxSW_Fe7BVrPMweqLnp3AVbCsC6Ly7W3ni4IDLCcY,15811
|
|
3
3
|
mas/cli/displayMixins.py,sha256=VVL2kWzPTqNQy63WT-tYIDnYa7SX3w33QX2XjSWVHWk,5636
|
|
4
4
|
mas/cli/gencfg.py,sha256=p38Ss_ooiNHOZTJT8l0YxDaEaPwD4ZXgxEbW-S9YLNY,3311
|
|
5
5
|
mas/cli/validators.py,sha256=vi1pFA8QtqMhqtGk1NlkkNDUrlFCi53kS5wJqFGDgOU,5108
|
|
@@ -9,15 +9,15 @@ mas/cli/install/argBuilder.py,sha256=v7Jcz-fX3BgQAOoCgp_FMlHWfO0JzPATbdMt4u34opY
|
|
|
9
9
|
mas/cli/install/argParser.py,sha256=E-AfgpDj1ao1zIkn306nITvndoB0_r6WNyokwAj3cB8,33045
|
|
10
10
|
mas/cli/install/catalogs.py,sha256=44gOkCNFPNAZ1yBAz-h3IvDE1RrW2tv1kMWQVombk9o,4076
|
|
11
11
|
mas/cli/install/params.py,sha256=QbEXMUHxZS_7g8yqOoNPyGzWlTryZBfn7MVt-nK55vc,4765
|
|
12
|
-
mas/cli/install/summarizer.py,sha256=
|
|
12
|
+
mas/cli/install/summarizer.py,sha256=AXIDrFROGShTvvcD09kFapr40SN33ibA5mkUXoQX2zA,21056
|
|
13
13
|
mas/cli/install/settings/__init__.py,sha256=RdyBSh-rM0wkuvILVzJ1gxjOtLuQ1mF6QbEL0MyiKIY,1034
|
|
14
14
|
mas/cli/install/settings/additionalConfigs.py,sha256=bTNDizLM7I8qu_PY3yGXupdzxVXSOyT4P_r1TJXgCsk,9402
|
|
15
15
|
mas/cli/install/settings/db2Settings.py,sha256=eLwk4rNpDg4jdnc_FWdwg7hQ4vQ8NyMrTmjxLutE4eA,12969
|
|
16
16
|
mas/cli/install/settings/kafkaSettings.py,sha256=Fe3WKIP-c9g6R9Oa3mfLIjnB6wcIhEdWiHlGyl-gIU0,7217
|
|
17
|
-
mas/cli/install/settings/manageSettings.py,sha256=
|
|
17
|
+
mas/cli/install/settings/manageSettings.py,sha256=StTU-CocoDHs3fIVy5RjC5zJ8pLbPIeKIyjCApa52C4,16165
|
|
18
18
|
mas/cli/install/settings/mongodbSettings.py,sha256=mFKL58d7ZxKkPkViUVAQTGhOxPSwAp5l2nhO0QF31qA,2356
|
|
19
19
|
mas/cli/install/settings/turbonomicSettings.py,sha256=4MWrbZmnToeaDsstfJTn2DvUviokCyjlBM-GPQd4a8A,1678
|
|
20
|
-
mas/cli/templates/ibm-mas-tekton.yaml,sha256=
|
|
20
|
+
mas/cli/templates/ibm-mas-tekton.yaml,sha256=pDZQz5sCJFQD02uHD18_45UVbgQePZ1Clq_etU28xB8,783884
|
|
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
|
|
@@ -94,13 +94,13 @@ mas/cli/uninstall/__init__.py,sha256=v0WJlcdrSycWGT5ofFjRDV3jTZ8AqVCz1AGxok4Khtc
|
|
|
94
94
|
mas/cli/uninstall/app.py,sha256=uPJy3z-1Yt66MSFdZz1Qh8MjA97ZrQmjSgTx-Gqua9I,10047
|
|
95
95
|
mas/cli/uninstall/argParser.py,sha256=VVG4myUvFOtg98L6HAzpgGg7s5c-vub_UMZPGuNQko4,3452
|
|
96
96
|
mas/cli/update/__init__.py,sha256=v0WJlcdrSycWGT5ofFjRDV3jTZ8AqVCz1AGxok4Khtc,508
|
|
97
|
-
mas/cli/update/app.py,sha256
|
|
97
|
+
mas/cli/update/app.py,sha256=Eba6JCl0wcwW-g1H4ZFaDZ4XIyfJTfTUtE3ytqlV9ao,37695
|
|
98
98
|
mas/cli/update/argParser.py,sha256=oOIXzB_rsI2p3og_5X5SFt_g7LURyEdLxZeiGCKq1nU,4711
|
|
99
99
|
mas/cli/upgrade/__init__.py,sha256=v0WJlcdrSycWGT5ofFjRDV3jTZ8AqVCz1AGxok4Khtc,508
|
|
100
100
|
mas/cli/upgrade/app.py,sha256=f1qfvzRdmf7YiYMtVTqKwE5RFVMcUkLGavCIZDuU_7c,5247
|
|
101
101
|
mas/cli/upgrade/argParser.py,sha256=zk629svjIk-hD40Ytc5e5UOLO3xogVrfqSz09S17mWw,1882
|
|
102
|
-
mas_cli-11.
|
|
103
|
-
mas_cli-11.
|
|
104
|
-
mas_cli-11.
|
|
105
|
-
mas_cli-11.
|
|
106
|
-
mas_cli-11.
|
|
102
|
+
mas_cli-11.8.1.data/scripts/mas-cli,sha256=Es-wSefTBcR3Vs5_kIUHQLfWHxTXVrmIPMFY0hbrxt8,3493
|
|
103
|
+
mas_cli-11.8.1.dist-info/METADATA,sha256=ysIeSkWg6SG3XyXvItRI9UzBB19W0Kk6FDn6A-3zxLk,2084
|
|
104
|
+
mas_cli-11.8.1.dist-info/WHEEL,sha256=R06PA3UVYHThwHvxuRWMqaGcr-PuniXahwjmQRFMEkY,91
|
|
105
|
+
mas_cli-11.8.1.dist-info/top_level.txt,sha256=_Hlsp7pvMvyV14LFg-vk1hULq30j61EILnnxMFIhhc8,4
|
|
106
|
+
mas_cli-11.8.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|