mas-cli 13.17.0__py3-none-any.whl → 13.19.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 +3 -0
- mas/cli/install/argBuilder.py +3 -0
- mas/cli/install/argParser.py +9 -0
- mas/cli/install/params.py +2 -0
- mas/cli/install/summarizer.py +3 -0
- mas/cli/templates/ibm-mas-tekton.yaml +159 -102
- {mas_cli-13.17.0.dist-info → mas_cli-13.19.0.dist-info}/METADATA +1 -1
- {mas_cli-13.17.0.dist-info → mas_cli-13.19.0.dist-info}/RECORD +13 -13
- {mas_cli-13.17.0.dist-info → mas_cli-13.19.0.dist-info}/WHEEL +1 -1
- {mas_cli-13.17.0.data → mas_cli-13.19.0.data}/scripts/mas-cli +0 -0
- {mas_cli-13.17.0.dist-info → mas_cli-13.19.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.19.0"
|
|
121
121
|
self.h1count = 0
|
|
122
122
|
self.h2count = 0
|
|
123
123
|
|
mas/cli/install/app.py
CHANGED
|
@@ -1017,6 +1017,9 @@ class InstallApp(BaseApp, InstallSettingsMixin, InstallSummarizerMixin, ConfigGe
|
|
|
1017
1017
|
self.setParam("mas_manual_cert_mgmt", False)
|
|
1018
1018
|
self.manualCertsDir = None
|
|
1019
1019
|
|
|
1020
|
+
elif key == "enable_ipv6":
|
|
1021
|
+
self.setParam("enable_ipv6", True)
|
|
1022
|
+
|
|
1020
1023
|
# Fail if there's any arguments we don't know how to handle
|
|
1021
1024
|
else:
|
|
1022
1025
|
print(f"Unknown option: {key} {value}")
|
mas/cli/install/argBuilder.py
CHANGED
|
@@ -113,6 +113,9 @@ class installArgBuilderMixin():
|
|
|
113
113
|
if self.getParam('mas_enable_walkme') == "false":
|
|
114
114
|
command += f" --disable-walkme{newline}"
|
|
115
115
|
|
|
116
|
+
if self.getParam('enable_ipv6') is True:
|
|
117
|
+
command += f" --enable-ipv6{newline}"
|
|
118
|
+
|
|
116
119
|
# Storage
|
|
117
120
|
# -----------------------------------------------------------------------------
|
|
118
121
|
command += f" --storage-class-rwo \"{self.getParam('storage_class_rwo')}\""
|
mas/cli/install/argParser.py
CHANGED
|
@@ -195,6 +195,15 @@ masAdvancedArgGroup.add_argument(
|
|
|
195
195
|
help="Provide the name of the ClusterIssuer to configure MAS to issue certificates",
|
|
196
196
|
)
|
|
197
197
|
|
|
198
|
+
masAdvancedArgGroup.add_argument(
|
|
199
|
+
"--enable-ipv6",
|
|
200
|
+
dest="enable_ipv6",
|
|
201
|
+
required=False,
|
|
202
|
+
help="Configure MAS to run in IP version 6. Before setting this option, be sure your cluster is configured in IP version 6",
|
|
203
|
+
action="store_const",
|
|
204
|
+
const="true"
|
|
205
|
+
)
|
|
206
|
+
|
|
198
207
|
# DNS Configuration - IBM CIS
|
|
199
208
|
# -----------------------------------------------------------------------------
|
|
200
209
|
cisArgGroup = installArgParser.add_argument_group("DNS Configuration - CIS")
|
mas/cli/install/params.py
CHANGED
mas/cli/install/summarizer.py
CHANGED
|
@@ -70,6 +70,9 @@ class InstallSummarizerMixin():
|
|
|
70
70
|
elif self.getParam('dns_provider') == "":
|
|
71
71
|
pass
|
|
72
72
|
|
|
73
|
+
print()
|
|
74
|
+
self.printParamSummary("Configure Suite to run in IPV6", "enable_ipv6")
|
|
75
|
+
|
|
73
76
|
if self.getParam("mas_manual_cert_mgmt") != "":
|
|
74
77
|
print()
|
|
75
78
|
self.printSummary("Manual Certificates", self.manualCertsDir)
|
|
@@ -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.19.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.19.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.19.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.19.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.19.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.19.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.19.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.19.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.19.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.19.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.19.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.19.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.19.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.19.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.19.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.19.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.19.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.19.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.19.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.19.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.19.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.19.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.19.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.19.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.19.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.19.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.19.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.19.0
|
|
3638
3638
|
workspaces:
|
|
3639
3639
|
- name: configs
|
|
3640
3640
|
|
|
@@ -3751,7 +3751,7 @@ spec:
|
|
|
3751
3751
|
- -c
|
|
3752
3752
|
name: gitops-deprovision-efs
|
|
3753
3753
|
imagePullPolicy: IfNotPresent
|
|
3754
|
-
image: quay.io/ibmmas/cli:13.
|
|
3754
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
3755
3755
|
workspaces:
|
|
3756
3756
|
- name: configs
|
|
3757
3757
|
|
|
@@ -3861,7 +3861,7 @@ spec:
|
|
|
3861
3861
|
- -c
|
|
3862
3862
|
name: gitops-deprovision-kafka
|
|
3863
3863
|
imagePullPolicy: IfNotPresent
|
|
3864
|
-
image: quay.io/ibmmas/cli:13.
|
|
3864
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
3865
3865
|
workspaces:
|
|
3866
3866
|
- name: configs
|
|
3867
3867
|
# --------------------------------------------------------------------------------
|
|
@@ -3964,7 +3964,7 @@ spec:
|
|
|
3964
3964
|
- -c
|
|
3965
3965
|
name: gitops-deprovision-mongo
|
|
3966
3966
|
imagePullPolicy: IfNotPresent
|
|
3967
|
-
image: quay.io/ibmmas/cli:13.
|
|
3967
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
3968
3968
|
workspaces:
|
|
3969
3969
|
- name: configs
|
|
3970
3970
|
|
|
@@ -4021,7 +4021,7 @@ spec:
|
|
|
4021
4021
|
- -c
|
|
4022
4022
|
name: gitops-deprovision-rosa
|
|
4023
4023
|
imagePullPolicy: IfNotPresent
|
|
4024
|
-
image: quay.io/ibmmas/cli:13.
|
|
4024
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
4025
4025
|
workspaces:
|
|
4026
4026
|
- name: configs
|
|
4027
4027
|
# --------------------------------------------------------------------------------
|
|
@@ -4226,7 +4226,7 @@ spec:
|
|
|
4226
4226
|
- -c
|
|
4227
4227
|
name: gitops-deprovision-suite-config
|
|
4228
4228
|
imagePullPolicy: IfNotPresent
|
|
4229
|
-
image: quay.io/ibmmas/cli:13.
|
|
4229
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
4230
4230
|
workspaces:
|
|
4231
4231
|
- name: configs
|
|
4232
4232
|
|
|
@@ -4324,7 +4324,7 @@ spec:
|
|
|
4324
4324
|
- -c
|
|
4325
4325
|
name: gitops-deprovision-suite-idp-config
|
|
4326
4326
|
imagePullPolicy: IfNotPresent
|
|
4327
|
-
image: quay.io/ibmmas/cli:13.
|
|
4327
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
4328
4328
|
workspaces:
|
|
4329
4329
|
- name: configs
|
|
4330
4330
|
# --------------------------------------------------------------------------------
|
|
@@ -4416,7 +4416,7 @@ spec:
|
|
|
4416
4416
|
- -c
|
|
4417
4417
|
name: gitops-deprovision-suite-objectstorage-config
|
|
4418
4418
|
imagePullPolicy: IfNotPresent
|
|
4419
|
-
image: quay.io/ibmmas/cli:13.
|
|
4419
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
4420
4420
|
workspaces:
|
|
4421
4421
|
- name: configs
|
|
4422
4422
|
# --------------------------------------------------------------------------------
|
|
@@ -4628,7 +4628,7 @@ spec:
|
|
|
4628
4628
|
- -c
|
|
4629
4629
|
name: gitops-deprovision-suite-smtp-config
|
|
4630
4630
|
imagePullPolicy: IfNotPresent
|
|
4631
|
-
image: quay.io/ibmmas/cli:13.
|
|
4631
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
4632
4632
|
workspaces:
|
|
4633
4633
|
- name: configs
|
|
4634
4634
|
# --------------------------------------------------------------------------------
|
|
@@ -4721,7 +4721,7 @@ spec:
|
|
|
4721
4721
|
- -c
|
|
4722
4722
|
name: gitops-deprovision-suite-watson-studio-config
|
|
4723
4723
|
imagePullPolicy: IfNotPresent
|
|
4724
|
-
image: quay.io/ibmmas/cli:13.
|
|
4724
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
4725
4725
|
workspaces:
|
|
4726
4726
|
- name: configs
|
|
4727
4727
|
# --------------------------------------------------------------------------------
|
|
@@ -4812,7 +4812,7 @@ spec:
|
|
|
4812
4812
|
- -c
|
|
4813
4813
|
name: gitops-deprovision-suite-workspace
|
|
4814
4814
|
imagePullPolicy: Always
|
|
4815
|
-
image: quay.io/ibmmas/cli:13.
|
|
4815
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
4816
4816
|
workspaces:
|
|
4817
4817
|
- name: configs
|
|
4818
4818
|
# --------------------------------------------------------------------------------
|
|
@@ -4905,7 +4905,7 @@ spec:
|
|
|
4905
4905
|
- -c
|
|
4906
4906
|
name: gitops-deprovision-suite
|
|
4907
4907
|
imagePullPolicy: IfNotPresent
|
|
4908
|
-
image: quay.io/ibmmas/cli:13.
|
|
4908
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
4909
4909
|
workspaces:
|
|
4910
4910
|
- name: configs
|
|
4911
4911
|
|
|
@@ -5018,7 +5018,7 @@ spec:
|
|
|
5018
5018
|
- -c
|
|
5019
5019
|
name: gitops-dro
|
|
5020
5020
|
imagePullPolicy: IfNotPresent
|
|
5021
|
-
image: quay.io/ibmmas/cli:13.
|
|
5021
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
5022
5022
|
workspaces:
|
|
5023
5023
|
- name: configs
|
|
5024
5024
|
# --------------------------------------------------------------------------------
|
|
@@ -5145,7 +5145,7 @@ spec:
|
|
|
5145
5145
|
- -c
|
|
5146
5146
|
name: gitops-efs
|
|
5147
5147
|
imagePullPolicy: IfNotPresent
|
|
5148
|
-
image: quay.io/ibmmas/cli:13.
|
|
5148
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
5149
5149
|
workspaces:
|
|
5150
5150
|
- name: configs
|
|
5151
5151
|
|
|
@@ -5280,7 +5280,7 @@ spec:
|
|
|
5280
5280
|
- -c
|
|
5281
5281
|
name: gitops-jdbc-config
|
|
5282
5282
|
imagePullPolicy: Always
|
|
5283
|
-
image: quay.io/ibmmas/cli:13.
|
|
5283
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
5284
5284
|
workspaces:
|
|
5285
5285
|
- name: configs
|
|
5286
5286
|
- name: shared-gitops-configs
|
|
@@ -5376,7 +5376,7 @@ spec:
|
|
|
5376
5376
|
- -c
|
|
5377
5377
|
name: gitops-kafka-config
|
|
5378
5378
|
imagePullPolicy: Always
|
|
5379
|
-
image: quay.io/ibmmas/cli:13.
|
|
5379
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
5380
5380
|
workspaces:
|
|
5381
5381
|
- name: configs
|
|
5382
5382
|
|
|
@@ -5498,7 +5498,7 @@ spec:
|
|
|
5498
5498
|
- -c
|
|
5499
5499
|
name: gitops-kafka
|
|
5500
5500
|
imagePullPolicy: IfNotPresent
|
|
5501
|
-
image: quay.io/ibmmas/cli:13.
|
|
5501
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
5502
5502
|
workspaces:
|
|
5503
5503
|
- name: configs
|
|
5504
5504
|
# --------------------------------------------------------------------------------
|
|
@@ -5624,7 +5624,7 @@ spec:
|
|
|
5624
5624
|
- -c
|
|
5625
5625
|
name: gitops-license
|
|
5626
5626
|
imagePullPolicy: Always
|
|
5627
|
-
image: quay.io/ibmmas/cli:13.
|
|
5627
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
5628
5628
|
workspaces:
|
|
5629
5629
|
- name: shared-entitlement
|
|
5630
5630
|
|
|
@@ -6213,7 +6213,7 @@ spec:
|
|
|
6213
6213
|
- -c
|
|
6214
6214
|
name: gitops-mas-fvt-preparer
|
|
6215
6215
|
imagePullPolicy: Always
|
|
6216
|
-
image: quay.io/ibmmas/cli:13.
|
|
6216
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
6217
6217
|
workspaces:
|
|
6218
6218
|
- name: configs
|
|
6219
6219
|
- name: shared-additional-configs
|
|
@@ -6699,7 +6699,7 @@ spec:
|
|
|
6699
6699
|
- -c
|
|
6700
6700
|
name: gitops-mas-initiator
|
|
6701
6701
|
imagePullPolicy: IfNotPresent
|
|
6702
|
-
image: quay.io/ibmmas/cli:13.
|
|
6702
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
6703
6703
|
workspaces:
|
|
6704
6704
|
- name: configs
|
|
6705
6705
|
# --------------------------------------------------------------------------------
|
|
@@ -6807,7 +6807,7 @@ spec:
|
|
|
6807
6807
|
- -c
|
|
6808
6808
|
name: gitops-mongo
|
|
6809
6809
|
imagePullPolicy: IfNotPresent
|
|
6810
|
-
image: quay.io/ibmmas/cli:13.
|
|
6810
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
6811
6811
|
workspaces:
|
|
6812
6812
|
- name: configs
|
|
6813
6813
|
|
|
@@ -6933,7 +6933,7 @@ spec:
|
|
|
6933
6933
|
- -c
|
|
6934
6934
|
name: gitops-nvidia-gpu
|
|
6935
6935
|
imagePullPolicy: IfNotPresent
|
|
6936
|
-
image: quay.io/ibmmas/cli:13.
|
|
6936
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
6937
6937
|
workspaces:
|
|
6938
6938
|
- name: configs
|
|
6939
6939
|
# --------------------------------------------------------------------------------
|
|
@@ -7051,7 +7051,7 @@ spec:
|
|
|
7051
7051
|
- -c
|
|
7052
7052
|
name: gitops-process-mongo-user
|
|
7053
7053
|
imagePullPolicy: IfNotPresent
|
|
7054
|
-
image: quay.io/ibmmas/cli:13.
|
|
7054
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
7055
7055
|
workspaces:
|
|
7056
7056
|
- name: configs
|
|
7057
7057
|
# --------------------------------------------------------------------------------
|
|
@@ -7107,7 +7107,7 @@ spec:
|
|
|
7107
7107
|
- -c
|
|
7108
7108
|
name: gitops-rosa
|
|
7109
7109
|
imagePullPolicy: IfNotPresent
|
|
7110
|
-
image: quay.io/ibmmas/cli:13.
|
|
7110
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
7111
7111
|
workspaces:
|
|
7112
7112
|
- name: configs
|
|
7113
7113
|
# --------------------------------------------------------------------------------
|
|
@@ -7294,7 +7294,7 @@ spec:
|
|
|
7294
7294
|
- -c
|
|
7295
7295
|
name: gitops-suite-app-config
|
|
7296
7296
|
imagePullPolicy: IfNotPresent
|
|
7297
|
-
image: quay.io/ibmmas/cli:13.
|
|
7297
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
7298
7298
|
workspaces:
|
|
7299
7299
|
- name: configs
|
|
7300
7300
|
- name: shared-gitops-configs
|
|
@@ -7452,7 +7452,7 @@ spec:
|
|
|
7452
7452
|
- -c
|
|
7453
7453
|
name: gitops-suite-app-install
|
|
7454
7454
|
imagePullPolicy: Always
|
|
7455
|
-
image: quay.io/ibmmas/cli:13.
|
|
7455
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
7456
7456
|
workspaces:
|
|
7457
7457
|
- name: configs
|
|
7458
7458
|
- name: shared-gitops-configs
|
|
@@ -7558,7 +7558,7 @@ spec:
|
|
|
7558
7558
|
- -c
|
|
7559
7559
|
name: gitops-suite-certs
|
|
7560
7560
|
imagePullPolicy: IfNotPresent
|
|
7561
|
-
image: quay.io/ibmmas/cli:13.
|
|
7561
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
7562
7562
|
workspaces:
|
|
7563
7563
|
- name: configs
|
|
7564
7564
|
- name: certificates
|
|
@@ -7728,7 +7728,7 @@ spec:
|
|
|
7728
7728
|
- -c
|
|
7729
7729
|
name: gitops-suite-config
|
|
7730
7730
|
imagePullPolicy: IfNotPresent
|
|
7731
|
-
image: quay.io/ibmmas/cli:13.
|
|
7731
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
7732
7732
|
workspaces:
|
|
7733
7733
|
- name: configs
|
|
7734
7734
|
- name: shared-additional-configs
|
|
@@ -7828,7 +7828,7 @@ spec:
|
|
|
7828
7828
|
- -c
|
|
7829
7829
|
name: gitops-suite-dns
|
|
7830
7830
|
imagePullPolicy: IfNotPresent
|
|
7831
|
-
image: quay.io/ibmmas/cli:13.
|
|
7831
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
7832
7832
|
workspaces:
|
|
7833
7833
|
- name: configs
|
|
7834
7834
|
|
|
@@ -7952,7 +7952,7 @@ spec:
|
|
|
7952
7952
|
- -c
|
|
7953
7953
|
name: gitops-suite-idp-config
|
|
7954
7954
|
imagePullPolicy: IfNotPresent
|
|
7955
|
-
image: quay.io/ibmmas/cli:13.
|
|
7955
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
7956
7956
|
workspaces:
|
|
7957
7957
|
- name: configs
|
|
7958
7958
|
- name: shared-additional-configs
|
|
@@ -8053,7 +8053,7 @@ spec:
|
|
|
8053
8053
|
- -c
|
|
8054
8054
|
name: gitops-suite-objectstorage-config
|
|
8055
8055
|
imagePullPolicy: IfNotPresent
|
|
8056
|
-
image: quay.io/ibmmas/cli:13.
|
|
8056
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
8057
8057
|
workspaces:
|
|
8058
8058
|
- name: configs
|
|
8059
8059
|
- name: shared-gitops-configs
|
|
@@ -8464,7 +8464,7 @@ spec:
|
|
|
8464
8464
|
- -c
|
|
8465
8465
|
name: gitops-suite-smtp-config
|
|
8466
8466
|
imagePullPolicy: IfNotPresent
|
|
8467
|
-
image: quay.io/ibmmas/cli:13.
|
|
8467
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
8468
8468
|
workspaces:
|
|
8469
8469
|
- name: configs
|
|
8470
8470
|
|
|
@@ -8584,7 +8584,7 @@ spec:
|
|
|
8584
8584
|
- -c
|
|
8585
8585
|
name: gitops-suite-watson-studio-config
|
|
8586
8586
|
imagePullPolicy: IfNotPresent
|
|
8587
|
-
image: quay.io/ibmmas/cli:13.
|
|
8587
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
8588
8588
|
workspaces:
|
|
8589
8589
|
- name: configs
|
|
8590
8590
|
- name: shared-gitops-configs
|
|
@@ -8686,7 +8686,7 @@ spec:
|
|
|
8686
8686
|
- -c
|
|
8687
8687
|
name: gitops-suite-workspace
|
|
8688
8688
|
imagePullPolicy: IfNotPresent
|
|
8689
|
-
image: quay.io/ibmmas/cli:13.
|
|
8689
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
8690
8690
|
workspaces:
|
|
8691
8691
|
- name: configs
|
|
8692
8692
|
# --------------------------------------------------------------------------------
|
|
@@ -8707,6 +8707,9 @@ spec:
|
|
|
8707
8707
|
default: "false"
|
|
8708
8708
|
- name: cluster_name
|
|
8709
8709
|
type: string
|
|
8710
|
+
- name: is_non_shared_cluster
|
|
8711
|
+
type: string
|
|
8712
|
+
default: "false"
|
|
8710
8713
|
- name: account
|
|
8711
8714
|
type: string
|
|
8712
8715
|
- name: secrets_path
|
|
@@ -8816,11 +8819,26 @@ spec:
|
|
|
8816
8819
|
- name: mas_wipe_mongo_data
|
|
8817
8820
|
type: string
|
|
8818
8821
|
default: "false"
|
|
8822
|
+
- name: suite_spec_additional_properties_yaml
|
|
8823
|
+
type: string
|
|
8824
|
+
default: ""
|
|
8825
|
+
- name: suite_spec_settings_additional_properties_yaml
|
|
8826
|
+
type: string
|
|
8827
|
+
default: ""
|
|
8819
8828
|
- name: oidc
|
|
8820
8829
|
type: string
|
|
8821
8830
|
- name: allow_list
|
|
8822
8831
|
type: string
|
|
8823
8832
|
default: ""
|
|
8833
|
+
- name: enhanced_dr
|
|
8834
|
+
type: string
|
|
8835
|
+
default: "false"
|
|
8836
|
+
- name: additional_vpn
|
|
8837
|
+
type: string
|
|
8838
|
+
default: ""
|
|
8839
|
+
- name: extensions
|
|
8840
|
+
type: string
|
|
8841
|
+
default: "false"
|
|
8824
8842
|
stepTemplate:
|
|
8825
8843
|
name: gitops-suite
|
|
8826
8844
|
env:
|
|
@@ -8916,12 +8934,24 @@ spec:
|
|
|
8916
8934
|
value: $(params.mas_pod_template_yaml)
|
|
8917
8935
|
- name: MAS_WIPE_MONGO_DATA
|
|
8918
8936
|
value: $(params.mas_wipe_mongo_data)
|
|
8937
|
+
- name: SUITE_SPEC_ADDITIONAL_PROPERTIES_YAML
|
|
8938
|
+
value: $(params.suite_spec_additional_properties_yaml)
|
|
8939
|
+
- name: SUITE_SPEC_SETTINGS_ADDITIONAL_PROPERTIES_YAML
|
|
8940
|
+
value: $(params.suite_spec_settings_additional_properties_yaml)
|
|
8919
8941
|
|
|
8920
8942
|
- name: OIDC_CONFIG
|
|
8921
8943
|
value: $(params.oidc)
|
|
8922
8944
|
|
|
8923
8945
|
- name: ALLOW_LIST
|
|
8924
8946
|
value: $(params.allow_list)
|
|
8947
|
+
- name: ENHANCED_DR
|
|
8948
|
+
value: $(params.enhanced_dr)
|
|
8949
|
+
- name: ADDITIONAL_VPN
|
|
8950
|
+
value: $(params.additional_vpn)
|
|
8951
|
+
- name: IS_NON_SHARED_CLUSTER
|
|
8952
|
+
value: $(params.is_non_shared_cluster)
|
|
8953
|
+
- name: EXTENSIONS
|
|
8954
|
+
value: $(params.extensions)
|
|
8925
8955
|
|
|
8926
8956
|
envFrom:
|
|
8927
8957
|
- configMapRef:
|
|
@@ -8999,7 +9029,7 @@ spec:
|
|
|
8999
9029
|
- -c
|
|
9000
9030
|
name: gitops-suite
|
|
9001
9031
|
imagePullPolicy: IfNotPresent
|
|
9002
|
-
image: quay.io/ibmmas/cli:13.
|
|
9032
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
9003
9033
|
workspaces:
|
|
9004
9034
|
- name: configs
|
|
9005
9035
|
- name: shared-gitops-configs
|
|
@@ -9049,7 +9079,7 @@ spec:
|
|
|
9049
9079
|
|
|
9050
9080
|
steps:
|
|
9051
9081
|
- name: grafana
|
|
9052
|
-
image: quay.io/ibmmas/cli:13.
|
|
9082
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
9053
9083
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9054
9084
|
command:
|
|
9055
9085
|
- /opt/app-root/src/run-role.sh
|
|
@@ -9183,7 +9213,7 @@ spec:
|
|
|
9183
9213
|
command:
|
|
9184
9214
|
- /opt/app-root/src/run-role.sh
|
|
9185
9215
|
- ibm_catalogs
|
|
9186
|
-
image: quay.io/ibmmas/cli:13.
|
|
9216
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
9187
9217
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9188
9218
|
workingDir: /workspace/configs
|
|
9189
9219
|
# --------------------------------------------------------------------------------
|
|
@@ -9425,7 +9455,7 @@ spec:
|
|
|
9425
9455
|
command:
|
|
9426
9456
|
- /opt/app-root/src/run-role.sh
|
|
9427
9457
|
- kafka
|
|
9428
|
-
image: quay.io/ibmmas/cli:13.
|
|
9458
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
9429
9459
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9430
9460
|
workingDir: /workspace/configs
|
|
9431
9461
|
|
|
@@ -9641,7 +9671,7 @@ spec:
|
|
|
9641
9671
|
command:
|
|
9642
9672
|
- /opt/app-root/src/run-role.sh
|
|
9643
9673
|
- kmodels
|
|
9644
|
-
image: quay.io/ibmmas/cli:13.
|
|
9674
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
9645
9675
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9646
9676
|
# --------------------------------------------------------------------------------
|
|
9647
9677
|
# /home/runner/work/cli/cli/tekton/target/tasks/mongodb.yaml
|
|
@@ -9819,7 +9849,7 @@ spec:
|
|
|
9819
9849
|
command:
|
|
9820
9850
|
- /opt/app-root/src/run-role.sh
|
|
9821
9851
|
- mongodb
|
|
9822
|
-
image: quay.io/ibmmas/cli:13.
|
|
9852
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
9823
9853
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9824
9854
|
workingDir: /workspace/configs
|
|
9825
9855
|
|
|
@@ -9862,7 +9892,7 @@ spec:
|
|
|
9862
9892
|
- $(params.base_output_dir)
|
|
9863
9893
|
- --extra-namespaces
|
|
9864
9894
|
- selenium
|
|
9865
|
-
image: quay.io/ibmmas/cli:13.
|
|
9895
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
9866
9896
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9867
9897
|
env:
|
|
9868
9898
|
- name: DEVOPS_MONGO_URI
|
|
@@ -9979,7 +10009,7 @@ spec:
|
|
|
9979
10009
|
command:
|
|
9980
10010
|
- /opt/app-root/src/run-role.sh
|
|
9981
10011
|
- nvidia_gpu
|
|
9982
|
-
image: quay.io/ibmmas/cli:13.
|
|
10012
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
9983
10013
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9984
10014
|
workingDir: /workspace/configs
|
|
9985
10015
|
|
|
@@ -10015,7 +10045,7 @@ spec:
|
|
|
10015
10045
|
# Verify Cluster
|
|
10016
10046
|
# -------------------------------------------------------------------------
|
|
10017
10047
|
- name: ocp-verify-cluster
|
|
10018
|
-
image: quay.io/ibmmas/cli:13.
|
|
10048
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
10019
10049
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10020
10050
|
command:
|
|
10021
10051
|
- /opt/app-root/src/run-role.sh
|
|
@@ -10057,7 +10087,7 @@ spec:
|
|
|
10057
10087
|
# Verify Catalogs
|
|
10058
10088
|
# -------------------------------------------------------------------------
|
|
10059
10089
|
- name: ocp-verify-catalogs
|
|
10060
|
-
image: quay.io/ibmmas/cli:13.
|
|
10090
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
10061
10091
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10062
10092
|
command:
|
|
10063
10093
|
- /opt/app-root/src/run-role.sh
|
|
@@ -10099,7 +10129,7 @@ spec:
|
|
|
10099
10129
|
# Verify Subscriptions
|
|
10100
10130
|
# -------------------------------------------------------------------------
|
|
10101
10131
|
- name: ocp-verify-subscriptions
|
|
10102
|
-
image: quay.io/ibmmas/cli:13.
|
|
10132
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
10103
10133
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10104
10134
|
command:
|
|
10105
10135
|
- /opt/app-root/src/run-role.sh
|
|
@@ -10141,7 +10171,7 @@ spec:
|
|
|
10141
10171
|
# Verify Workloads
|
|
10142
10172
|
# -------------------------------------------------------------------------
|
|
10143
10173
|
- name: ocp-verify-workloads
|
|
10144
|
-
image: quay.io/ibmmas/cli:13.
|
|
10174
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
10145
10175
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10146
10176
|
command:
|
|
10147
10177
|
- /opt/app-root/src/run-role.sh
|
|
@@ -10183,7 +10213,7 @@ spec:
|
|
|
10183
10213
|
# Verify Catalogs - Ingress TLS
|
|
10184
10214
|
# -------------------------------------------------------------------------
|
|
10185
10215
|
- name: ocp-verify-ingress
|
|
10186
|
-
image: quay.io/ibmmas/cli:13.
|
|
10216
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
10187
10217
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10188
10218
|
command:
|
|
10189
10219
|
- /opt/app-root/src/run-role.sh
|
|
@@ -10309,7 +10339,7 @@ spec:
|
|
|
10309
10339
|
command:
|
|
10310
10340
|
- /opt/app-root/src/run-role.sh
|
|
10311
10341
|
- ocp_verify
|
|
10312
|
-
image: quay.io/ibmmas/cli:13.
|
|
10342
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
10313
10343
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10314
10344
|
workingDir: /workspace/configs
|
|
10315
10345
|
# --------------------------------------------------------------------------------
|
|
@@ -10377,7 +10407,7 @@ spec:
|
|
|
10377
10407
|
command:
|
|
10378
10408
|
- /opt/app-root/src/run-role.sh
|
|
10379
10409
|
- ocs
|
|
10380
|
-
image: quay.io/ibmmas/cli:13.
|
|
10410
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
10381
10411
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10382
10412
|
workingDir: /workspace/configs
|
|
10383
10413
|
|
|
@@ -10613,7 +10643,7 @@ spec:
|
|
|
10613
10643
|
command:
|
|
10614
10644
|
- /opt/app-root/src/run-role.sh
|
|
10615
10645
|
- odh
|
|
10616
|
-
image: quay.io/ibmmas/cli:13.
|
|
10646
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
10617
10647
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10618
10648
|
# --------------------------------------------------------------------------------
|
|
10619
10649
|
# /home/runner/work/cli/cli/tekton/target/tasks/sls-registry-update.yaml
|
|
@@ -10789,7 +10819,7 @@ spec:
|
|
|
10789
10819
|
command:
|
|
10790
10820
|
- /opt/app-root/src/run-role.sh
|
|
10791
10821
|
- sls
|
|
10792
|
-
image: quay.io/ibmmas/cli:13.
|
|
10822
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
10793
10823
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10794
10824
|
workingDir: /workspace/configs
|
|
10795
10825
|
|
|
@@ -11184,12 +11214,12 @@ spec:
|
|
|
11184
11214
|
command:
|
|
11185
11215
|
- /opt/app-root/src/run-role.sh
|
|
11186
11216
|
- suite_app_config
|
|
11187
|
-
image: quay.io/ibmmas/cli:13.
|
|
11217
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
11188
11218
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11189
11219
|
|
|
11190
11220
|
# If configmap/approval-app-cfg-$(params.mas_app_id) exists then set STATUS=pending and wait for it to be changed to "approved"
|
|
11191
11221
|
- name: app-cfg-post-verify
|
|
11192
|
-
image: quay.io/ibmmas/cli:13.
|
|
11222
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
11193
11223
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11194
11224
|
command:
|
|
11195
11225
|
- /opt/app-root/src/wait-for-configmap.sh
|
|
@@ -11384,7 +11414,7 @@ spec:
|
|
|
11384
11414
|
command:
|
|
11385
11415
|
- /opt/app-root/src/run-role.sh
|
|
11386
11416
|
- suite_app_install
|
|
11387
|
-
image: quay.io/ibmmas/cli:13.
|
|
11417
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
11388
11418
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11389
11419
|
|
|
11390
11420
|
workspaces:
|
|
@@ -11473,7 +11503,7 @@ spec:
|
|
|
11473
11503
|
command:
|
|
11474
11504
|
- /opt/app-root/src/run-role.sh
|
|
11475
11505
|
- suite_app_rollback
|
|
11476
|
-
image: quay.io/ibmmas/cli:13.
|
|
11506
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
11477
11507
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11478
11508
|
# --------------------------------------------------------------------------------
|
|
11479
11509
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-app-uninstall.yaml
|
|
@@ -11536,7 +11566,7 @@ spec:
|
|
|
11536
11566
|
command:
|
|
11537
11567
|
- /opt/app-root/src/run-role.sh
|
|
11538
11568
|
- suite_app_uninstall
|
|
11539
|
-
image: quay.io/ibmmas/cli:13.
|
|
11569
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
11540
11570
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11541
11571
|
# --------------------------------------------------------------------------------
|
|
11542
11572
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-app-upgrade.yaml
|
|
@@ -11611,7 +11641,7 @@ spec:
|
|
|
11611
11641
|
command:
|
|
11612
11642
|
- /opt/app-root/src/run-role.sh
|
|
11613
11643
|
- suite_app_upgrade
|
|
11614
|
-
image: quay.io/ibmmas/cli:13.
|
|
11644
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
11615
11645
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11616
11646
|
# --------------------------------------------------------------------------------
|
|
11617
11647
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-app-verify.yaml
|
|
@@ -11712,7 +11742,7 @@ spec:
|
|
|
11712
11742
|
command:
|
|
11713
11743
|
- /opt/app-root/src/run-role.sh
|
|
11714
11744
|
- suite_app_verify
|
|
11715
|
-
image: quay.io/ibmmas/cli:13.
|
|
11745
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
11716
11746
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11717
11747
|
# --------------------------------------------------------------------------------
|
|
11718
11748
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-certs.yaml
|
|
@@ -11855,7 +11885,7 @@ spec:
|
|
|
11855
11885
|
command:
|
|
11856
11886
|
- /opt/app-root/src/run-role.sh
|
|
11857
11887
|
- suite_certs
|
|
11858
|
-
image: quay.io/ibmmas/cli:13.
|
|
11888
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
11859
11889
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11860
11890
|
|
|
11861
11891
|
workspaces:
|
|
@@ -11922,7 +11952,7 @@ spec:
|
|
|
11922
11952
|
command:
|
|
11923
11953
|
- /opt/app-root/src/run-role.sh
|
|
11924
11954
|
- suite_config
|
|
11925
|
-
image: quay.io/ibmmas/cli:13.
|
|
11955
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
11926
11956
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11927
11957
|
workingDir: /workspace/configs
|
|
11928
11958
|
|
|
@@ -11993,7 +12023,7 @@ spec:
|
|
|
11993
12023
|
command:
|
|
11994
12024
|
- /opt/app-root/src/run-role.sh
|
|
11995
12025
|
- suite_db2_setup_for_manage
|
|
11996
|
-
image: quay.io/ibmmas/cli:13.
|
|
12026
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
11997
12027
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11998
12028
|
# --------------------------------------------------------------------------------
|
|
11999
12029
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-dns.yaml
|
|
@@ -12183,7 +12213,7 @@ spec:
|
|
|
12183
12213
|
command:
|
|
12184
12214
|
- /opt/app-root/src/run-role.sh
|
|
12185
12215
|
- suite_dns
|
|
12186
|
-
image: quay.io/ibmmas/cli:13.
|
|
12216
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
12187
12217
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12188
12218
|
# --------------------------------------------------------------------------------
|
|
12189
12219
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-install.yaml
|
|
@@ -12432,7 +12462,7 @@ spec:
|
|
|
12432
12462
|
command:
|
|
12433
12463
|
- /opt/app-root/src/run-role.sh
|
|
12434
12464
|
- suite_install
|
|
12435
|
-
image: quay.io/ibmmas/cli:13.
|
|
12465
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
12436
12466
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12437
12467
|
workingDir: /workspace/configs
|
|
12438
12468
|
|
|
@@ -12520,7 +12550,7 @@ spec:
|
|
|
12520
12550
|
command:
|
|
12521
12551
|
- /opt/app-root/src/run-role.sh
|
|
12522
12552
|
- suite_rollback
|
|
12523
|
-
image: quay.io/ibmmas/cli:13.
|
|
12553
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
12524
12554
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12525
12555
|
# --------------------------------------------------------------------------------
|
|
12526
12556
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-uninstall.yaml
|
|
@@ -12585,7 +12615,7 @@ spec:
|
|
|
12585
12615
|
command:
|
|
12586
12616
|
- /opt/app-root/src/run-role.sh
|
|
12587
12617
|
- suite_uninstall
|
|
12588
|
-
image: quay.io/ibmmas/cli:13.
|
|
12618
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
12589
12619
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12590
12620
|
# --------------------------------------------------------------------------------
|
|
12591
12621
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-upgrade.yaml
|
|
@@ -12655,7 +12685,7 @@ spec:
|
|
|
12655
12685
|
command:
|
|
12656
12686
|
- /opt/app-root/src/run-role.sh
|
|
12657
12687
|
- suite_upgrade
|
|
12658
|
-
image: quay.io/ibmmas/cli:13.
|
|
12688
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
12659
12689
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12660
12690
|
# --------------------------------------------------------------------------------
|
|
12661
12691
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-verify.yaml
|
|
@@ -12722,12 +12752,12 @@ spec:
|
|
|
12722
12752
|
command:
|
|
12723
12753
|
- /opt/app-root/src/run-role.sh
|
|
12724
12754
|
- suite_verify
|
|
12725
|
-
image: quay.io/ibmmas/cli:13.
|
|
12755
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
12726
12756
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12727
12757
|
|
|
12728
12758
|
# If configmap/approval-suite-verify exists then set STATUS=pending and wait for it to be changed to "approved"
|
|
12729
12759
|
- name: suite-post-verify
|
|
12730
|
-
image: quay.io/ibmmas/cli:13.
|
|
12760
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
12731
12761
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12732
12762
|
script: |
|
|
12733
12763
|
#!/usr/bin/env bash
|
|
@@ -12855,7 +12885,7 @@ spec:
|
|
|
12855
12885
|
command:
|
|
12856
12886
|
- /opt/app-root/src/run-role.sh
|
|
12857
12887
|
- turbonomic
|
|
12858
|
-
image: quay.io/ibmmas/cli:13.
|
|
12888
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
12859
12889
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12860
12890
|
# --------------------------------------------------------------------------------
|
|
12861
12891
|
# /home/runner/work/cli/cli/tekton/target/tasks/uds.yaml
|
|
@@ -12936,7 +12966,7 @@ spec:
|
|
|
12936
12966
|
# IBM User Data Services (UDS)
|
|
12937
12967
|
# -------------------------------------------------------------------------
|
|
12938
12968
|
- name: uds
|
|
12939
|
-
image: quay.io/ibmmas/cli:13.
|
|
12969
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
12940
12970
|
imagePullPolicy: $(params.image_pull_policy)
|
|
12941
12971
|
workingDir: /workspace/configs
|
|
12942
12972
|
command:
|
|
@@ -12999,7 +13029,7 @@ spec:
|
|
|
12999
13029
|
# IBM Data Reporter Operator (DRO)
|
|
13000
13030
|
# -------------------------------------------------------------------------
|
|
13001
13031
|
- name: dro
|
|
13002
|
-
image: quay.io/ibmmas/cli:13.
|
|
13032
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
13003
13033
|
imagePullPolicy: $(params.image_pull_policy)
|
|
13004
13034
|
workingDir: /workspace/configs
|
|
13005
13035
|
command:
|
|
@@ -13085,7 +13115,7 @@ spec:
|
|
|
13085
13115
|
description: "The value to set"
|
|
13086
13116
|
steps:
|
|
13087
13117
|
- name: update-configmap
|
|
13088
|
-
image: quay.io/ibmmas/cli:13.
|
|
13118
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
13089
13119
|
command:
|
|
13090
13120
|
- /opt/app-root/src/update-configmap.sh
|
|
13091
13121
|
env:
|
|
@@ -13132,7 +13162,7 @@ spec:
|
|
|
13132
13162
|
|
|
13133
13163
|
steps:
|
|
13134
13164
|
- name: wait-for-configmap
|
|
13135
|
-
image: quay.io/ibmmas/cli:13.
|
|
13165
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
13136
13166
|
command:
|
|
13137
13167
|
- /opt/app-root/src/wait-for-configmap.sh
|
|
13138
13168
|
env:
|
|
@@ -13213,7 +13243,7 @@ spec:
|
|
|
13213
13243
|
|
|
13214
13244
|
steps:
|
|
13215
13245
|
- name: wait-for-configmap
|
|
13216
|
-
image: quay.io/ibmmas/cli:13.
|
|
13246
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
13217
13247
|
command:
|
|
13218
13248
|
- /opt/app-root/src/wait-for-configmap.sh
|
|
13219
13249
|
env:
|
|
@@ -13273,7 +13303,7 @@ spec:
|
|
|
13273
13303
|
|
|
13274
13304
|
steps:
|
|
13275
13305
|
- name: wait
|
|
13276
|
-
image: quay.io/ibmmas/cli:13.
|
|
13306
|
+
image: quay.io/ibmmas/cli:13.19.0
|
|
13277
13307
|
command:
|
|
13278
13308
|
- /opt/app-root/src/wait-for-tekton.sh
|
|
13279
13309
|
env:
|
|
@@ -21264,6 +21294,8 @@ spec:
|
|
|
21264
21294
|
params:
|
|
21265
21295
|
- name: cluster_name
|
|
21266
21296
|
type: string
|
|
21297
|
+
- name: is_non_shared_cluster
|
|
21298
|
+
type: string
|
|
21267
21299
|
- name: account
|
|
21268
21300
|
type: string
|
|
21269
21301
|
- name: secrets_path
|
|
@@ -21460,6 +21492,12 @@ spec:
|
|
|
21460
21492
|
- name: mas_smtpcfg_pod_template_yaml
|
|
21461
21493
|
type: string
|
|
21462
21494
|
default: ""
|
|
21495
|
+
- name: suite_spec_additional_properties_yaml
|
|
21496
|
+
type: string
|
|
21497
|
+
default: ""
|
|
21498
|
+
- name: suite_spec_settings_additional_properties_yaml
|
|
21499
|
+
type: string
|
|
21500
|
+
default: ""
|
|
21463
21501
|
|
|
21464
21502
|
- name: db2_channel
|
|
21465
21503
|
type: string
|
|
@@ -21488,8 +21526,15 @@ spec:
|
|
|
21488
21526
|
- name: oidc
|
|
21489
21527
|
type: string
|
|
21490
21528
|
|
|
21529
|
+
# addons
|
|
21491
21530
|
- name: allow_list
|
|
21492
21531
|
type: string
|
|
21532
|
+
- name: enhanced_dr
|
|
21533
|
+
type: string
|
|
21534
|
+
- name: extensions
|
|
21535
|
+
type: string
|
|
21536
|
+
- name: additional_vpn
|
|
21537
|
+
type: string
|
|
21493
21538
|
|
|
21494
21539
|
tasks:
|
|
21495
21540
|
|
|
@@ -21595,6 +21640,8 @@ spec:
|
|
|
21595
21640
|
params:
|
|
21596
21641
|
- name: cluster_name
|
|
21597
21642
|
value: $(params.cluster_name)
|
|
21643
|
+
- name: is_non_shared_cluster
|
|
21644
|
+
value: $(params.is_non_shared_cluster)
|
|
21598
21645
|
- name: account
|
|
21599
21646
|
value: $(params.account)
|
|
21600
21647
|
- name: secrets_path
|
|
@@ -21685,10 +21732,20 @@ spec:
|
|
|
21685
21732
|
value: $(params.mas_pod_template_yaml)
|
|
21686
21733
|
- name: mas_wipe_mongo_data
|
|
21687
21734
|
value: $(params.mas_wipe_mongo_data)
|
|
21735
|
+
- name: suite_spec_additional_properties_yaml
|
|
21736
|
+
value: $(params.suite_spec_additional_properties_yaml)
|
|
21737
|
+
- name: suite_spec_settings_additional_properties_yaml
|
|
21738
|
+
value: $(params.suite_spec_settings_additional_properties_yaml)
|
|
21688
21739
|
- name: oidc
|
|
21689
21740
|
value: $(params.oidc)
|
|
21690
21741
|
- name: allow_list
|
|
21691
21742
|
value: $(params.allow_list)
|
|
21743
|
+
- name: enhanced_dr
|
|
21744
|
+
value: $(params.enhanced_dr)
|
|
21745
|
+
- name: additional_vpn
|
|
21746
|
+
value: $(params.additional_vpn)
|
|
21747
|
+
- name: extensions
|
|
21748
|
+
value: $(params.extensions)
|
|
21692
21749
|
taskRef:
|
|
21693
21750
|
kind: Task
|
|
21694
21751
|
name: gitops-suite
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
mas/cli/__init__.py,sha256=
|
|
2
|
-
mas/cli/cli.py,sha256=
|
|
1
|
+
mas/cli/__init__.py,sha256=Vd4MFMI_IlPP5X9hgPB6CuHfCqSYauzOXY7IKk1juRg,527
|
|
2
|
+
mas/cli/cli.py,sha256=eoLuAEjpdOxthaThTo5fDw0u31jIof9dNradOoEURBI,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=
|
|
8
|
-
mas/cli/install/argBuilder.py,sha256=
|
|
9
|
-
mas/cli/install/argParser.py,sha256=
|
|
7
|
+
mas/cli/install/app.py,sha256=dje7_VUpX08t-MEvkmTSa-YB1-0ZWKHse1DRxReASkY,61406
|
|
8
|
+
mas/cli/install/argBuilder.py,sha256=a_D8vvqBj7jH83iCKTb1kj4Py_OJpGIDEgdQ13wpHJw,25078
|
|
9
|
+
mas/cli/install/argParser.py,sha256=Of8zxZ7iIkSEusvTRXteR34kWM-P9QnqOUrVPtaqHGQ,36004
|
|
10
10
|
mas/cli/install/catalogs.py,sha256=4Mgv_nUHuT5lwoPbiJdkn58_k1RvGxmlueJLMrnJNak,751
|
|
11
|
-
mas/cli/install/params.py,sha256=
|
|
12
|
-
mas/cli/install/summarizer.py,sha256=
|
|
11
|
+
mas/cli/install/params.py,sha256=JB0yqyv4FRb0ZJN56sGQv0TGGgCMCTzdEzY-E_xrnUE,5080
|
|
12
|
+
mas/cli/install/summarizer.py,sha256=zlMMx7raa_2MCGr6_S5OsEw9skeA1GTDo9Hh4cCEq84,21874
|
|
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
15
|
mas/cli/install/settings/db2Settings.py,sha256=-RTejDTgvnA-bbEnPWXO4imjy0IMfAlW6J71UyNUsZc,13278
|
|
@@ -17,7 +17,7 @@ mas/cli/install/settings/kafkaSettings.py,sha256=r1uK-IApqB9IQiSNt_8sP0wa4FPJcXU
|
|
|
17
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=fBuIRnCxFDfFAuGsdDGV9QJwgU5NO1ALOa8DTOGP7aM,879516
|
|
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.19.0.data/scripts/mas-cli,sha256=BbibIX0psLEOZdcNaFcO4mJvStD0pKLAe-p-NwVTrBs,3439
|
|
103
|
+
mas_cli-13.19.0.dist-info/METADATA,sha256=_TXHFb3O5kP0YJO9uO8ntvJ_lSjBlDyBrk-KxW7bH5k,2259
|
|
104
|
+
mas_cli-13.19.0.dist-info/WHEEL,sha256=ooBFpIzZCPdw3uqIQsOo4qqbA4ZRPxHnOH7peeONza0,91
|
|
105
|
+
mas_cli-13.19.0.dist-info/top_level.txt,sha256=_Hlsp7pvMvyV14LFg-vk1hULq30j61EILnnxMFIhhc8,4
|
|
106
|
+
mas_cli-13.19.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|