mas-cli 10.4.2__py3-none-any.whl → 10.4.4__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/displayMixins.py +4 -1
- mas/cli/install/app.py +16 -10
- mas/cli/install/settings/manageSettings.py +4 -1
- mas/cli/templates/ibm-mas-tekton.yaml +151 -100
- mas/cli/validators.py +4 -2
- {mas_cli-10.4.2.dist-info → mas_cli-10.4.4.dist-info}/METADATA +1 -1
- {mas_cli-10.4.2.dist-info → mas_cli-10.4.4.dist-info}/RECORD +11 -11
- {mas_cli-10.4.2.data → mas_cli-10.4.4.data}/scripts/mas-cli +0 -0
- {mas_cli-10.4.2.dist-info → mas_cli-10.4.4.dist-info}/WHEEL +0 -0
- {mas_cli-10.4.2.dist-info → mas_cli-10.4.4.dist-info}/top_level.txt +0 -0
mas/cli/__init__.py
CHANGED
mas/cli/displayMixins.py
CHANGED
|
@@ -77,6 +77,7 @@ class PromptMixin():
|
|
|
77
77
|
def yesOrNo(self, message: str, param: str=None) -> bool:
|
|
78
78
|
response = prompt(masPromptYesOrNo(message), validator=YesNoValidator(), validate_while_typing=False)
|
|
79
79
|
responseAsBool = response.lower() in ["y", "yes"]
|
|
80
|
+
|
|
80
81
|
if param is not None:
|
|
81
82
|
self.params[param] = "true" if responseAsBool else "false"
|
|
82
83
|
return responseAsBool
|
|
@@ -107,7 +108,9 @@ class PromptMixin():
|
|
|
107
108
|
# List indices are 0 origin, so we need to subtract 1 from the selection made to arrive at the correct value
|
|
108
109
|
self.setParam(param, options[selection-1])
|
|
109
110
|
|
|
110
|
-
def promptForFile(self, message: str, mustExist: bool=True, default: str="") -> None:
|
|
111
|
+
def promptForFile(self, message: str, mustExist: bool=True, default: str="", envVar: str="") -> None:
|
|
112
|
+
if default == "" and envVar != "":
|
|
113
|
+
default = getenv(envVar, "")
|
|
111
114
|
if mustExist:
|
|
112
115
|
return prompt(masPromptValue(message), validator=FileExistsValidator(), validate_while_typing=False, default=default)
|
|
113
116
|
else:
|
mas/cli/install/app.py
CHANGED
|
@@ -150,7 +150,7 @@ class InstallApp(BaseApp, InstallSettingsMixin, InstallSummarizerMixin, ConfigGe
|
|
|
150
150
|
|
|
151
151
|
def configSLS(self) -> None:
|
|
152
152
|
self.printH1("Configure Product License")
|
|
153
|
-
self.slsLicenseFileLocal = self.promptForFile("License file", mustExist=True)
|
|
153
|
+
self.slsLicenseFileLocal = self.promptForFile("License file", mustExist=True, envVar="SLS_LICENSE_FILE_LOCAL")
|
|
154
154
|
self.promptForString("Contact e-mail address", "uds_contact_email")
|
|
155
155
|
self.promptForString("Contact first name", "uds_contact_firstname")
|
|
156
156
|
self.promptForString("Contact last name", "uds_contact_lastname")
|
|
@@ -202,16 +202,22 @@ class InstallApp(BaseApp, InstallSettingsMixin, InstallSummarizerMixin, ConfigGe
|
|
|
202
202
|
"Many aspects of Maximo Application Suite's Single Sign-On (SSO) can be customized:",
|
|
203
203
|
" - Idle session automatic logout timer",
|
|
204
204
|
" - Session, access token, and refresh token timeouts",
|
|
205
|
-
" - Default identity provider (IDP), and seamless login"
|
|
205
|
+
" - Default identity provider (IDP), and seamless login",
|
|
206
|
+
" - Brower cookie properties"
|
|
206
207
|
])
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
self.
|
|
210
|
-
self.promptForString("
|
|
211
|
-
self.promptForString("
|
|
212
|
-
self.promptForString("
|
|
213
|
-
|
|
214
|
-
self.
|
|
208
|
+
if self.yesOrNo("Configure SSO properties"):
|
|
209
|
+
self.promptForInt("Idle session logout timer (seconds)", "idle_timeout")
|
|
210
|
+
self.promptForString("Session timeout (e.g. '12h' for 12 hours)", "idp_session_timeout", validator=TimeoutFormatValidator())
|
|
211
|
+
self.promptForString("Access token timeout (e.g. '30m' for 30 minutes)", "access_token_timeout", validator=TimeoutFormatValidator())
|
|
212
|
+
self.promptForString("Refresh token timeout (e.g. '12h' for 12 hours)", "refresh_token_timeout", validator=TimeoutFormatValidator())
|
|
213
|
+
self.promptForString("Default Identity Provider", "default_idp")
|
|
214
|
+
|
|
215
|
+
self.promptForString("SSO cookie name", "sso_cookie_name")
|
|
216
|
+
self.yesOrNo("Enable seamless login", "seamless_login")
|
|
217
|
+
self.yesOrNo("Allow default SSO cookie name", "allow_default_sso_cookie_name")
|
|
218
|
+
self.yesOrNo("Use only custom cookie name", "use_only_custom_cookie_name")
|
|
219
|
+
self.yesOrNo("Disable LDAP cookie", "disable_ldap_cookie")
|
|
220
|
+
self.yesOrNo("Allow custom cache key", "allow_custom_cache_key")
|
|
215
221
|
|
|
216
222
|
def configMAS(self):
|
|
217
223
|
self.printH1("Configure MAS Instance")
|
|
@@ -8,6 +8,9 @@
|
|
|
8
8
|
#
|
|
9
9
|
# *****************************************************************************
|
|
10
10
|
|
|
11
|
+
import logging
|
|
12
|
+
logger = logging.getLogger(__name__)
|
|
13
|
+
|
|
11
14
|
class ManageSettingsMixin():
|
|
12
15
|
|
|
13
16
|
def arcgisSettings(self) -> None:
|
|
@@ -82,6 +85,7 @@ class ManageSettingsMixin():
|
|
|
82
85
|
if self.yesOrNo(" - Tririga"): self.params["mas_appws_components"] += ",tririga=latest"
|
|
83
86
|
if self.yesOrNo(" - Utilities"): self.params["mas_appws_components"] += ",utilities=latest"
|
|
84
87
|
if self.yesOrNo(" - Workday Applications"): self.params["mas_appws_components"] += ",workday=latest"
|
|
88
|
+
logger.debug(f"Generated mas_appws_components = {self.params['mas_appws_components']}")
|
|
85
89
|
|
|
86
90
|
if ",icd=" in self.params["mas_appws_components"]:
|
|
87
91
|
self.printH2("Maximo IT License Terms")
|
|
@@ -97,7 +101,6 @@ class ManageSettingsMixin():
|
|
|
97
101
|
self.printH2("Maximo Manage Settings - Database")
|
|
98
102
|
self.printDescription(["Customise the schema, tablespace, indexspace, and encryption settings used by Manage"])
|
|
99
103
|
|
|
100
|
-
self.params["mas_appws_components"] = "base=latest,health=latest"
|
|
101
104
|
if self.yesOrNo("Customize database settings"):
|
|
102
105
|
self.promptForString("Schema", "mas_app_settings_db2_schema", default="maximo")
|
|
103
106
|
self.promptForString("Tablespace", "mas_app_settings_db2_tablespace", default="MAXDATA")
|
|
@@ -108,7 +108,7 @@ spec:
|
|
|
108
108
|
command:
|
|
109
109
|
- /opt/app-root/src/run-role.sh
|
|
110
110
|
- appconnect
|
|
111
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
111
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
112
112
|
imagePullPolicy: $(params.image_pull_policy)
|
|
113
113
|
workingDir: /workspace/configs
|
|
114
114
|
|
|
@@ -226,7 +226,7 @@ spec:
|
|
|
226
226
|
command:
|
|
227
227
|
- /opt/app-root/src/run-role.sh
|
|
228
228
|
- arcgis
|
|
229
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
229
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
230
230
|
imagePullPolicy: $(params.image_pull_policy)
|
|
231
231
|
# --------------------------------------------------------------------------------
|
|
232
232
|
# /home/runner/work/cli/cli/tekton/target/tasks/cert-manager.yaml
|
|
@@ -296,7 +296,7 @@ spec:
|
|
|
296
296
|
command:
|
|
297
297
|
- /opt/app-root/src/run-role.sh
|
|
298
298
|
- cert_manager
|
|
299
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
299
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
300
300
|
imagePullPolicy: $(params.image_pull_policy)
|
|
301
301
|
workingDir: /workspace/configs
|
|
302
302
|
# --------------------------------------------------------------------------------
|
|
@@ -359,7 +359,7 @@ spec:
|
|
|
359
359
|
command:
|
|
360
360
|
- /opt/app-root/src/run-role.sh
|
|
361
361
|
- common_services
|
|
362
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
362
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
363
363
|
imagePullPolicy: $(params.image_pull_policy)
|
|
364
364
|
workingDir: /workspace/configs
|
|
365
365
|
# --------------------------------------------------------------------------------
|
|
@@ -474,7 +474,7 @@ spec:
|
|
|
474
474
|
command:
|
|
475
475
|
- /opt/app-root/src/run-role.sh
|
|
476
476
|
- cos
|
|
477
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
477
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
478
478
|
imagePullPolicy: $(params.image_pull_policy)
|
|
479
479
|
workingDir: /workspace/configs
|
|
480
480
|
|
|
@@ -594,7 +594,7 @@ spec:
|
|
|
594
594
|
command:
|
|
595
595
|
- /opt/app-root/src/run-role.sh
|
|
596
596
|
- cp4d_service
|
|
597
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
597
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
598
598
|
imagePullPolicy: $(params.image_pull_policy)
|
|
599
599
|
workingDir: /workspace/configs
|
|
600
600
|
# --------------------------------------------------------------------------------
|
|
@@ -711,7 +711,7 @@ spec:
|
|
|
711
711
|
command:
|
|
712
712
|
- /opt/app-root/src/run-role.sh
|
|
713
713
|
- cp4d_service
|
|
714
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
714
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
715
715
|
imagePullPolicy: $(params.image_pull_policy)
|
|
716
716
|
workingDir: /workspace/configs
|
|
717
717
|
|
|
@@ -817,7 +817,7 @@ spec:
|
|
|
817
817
|
command:
|
|
818
818
|
- /opt/app-root/src/run-role.sh
|
|
819
819
|
- cp4d
|
|
820
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
820
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
821
821
|
imagePullPolicy: $(params.image_pull_policy)
|
|
822
822
|
# --------------------------------------------------------------------------------
|
|
823
823
|
# /home/runner/work/cli/cli/tekton/target/tasks/db2.yaml
|
|
@@ -1139,7 +1139,7 @@ spec:
|
|
|
1139
1139
|
command:
|
|
1140
1140
|
- /opt/app-root/src/run-role.sh
|
|
1141
1141
|
- db2
|
|
1142
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
1142
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
1143
1143
|
imagePullPolicy: $(params.image_pull_policy)
|
|
1144
1144
|
workingDir: /workspace/configs
|
|
1145
1145
|
|
|
@@ -1242,7 +1242,7 @@ spec:
|
|
|
1242
1242
|
command:
|
|
1243
1243
|
- /opt/app-root/src/run-role.sh
|
|
1244
1244
|
- eck
|
|
1245
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
1245
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
1246
1246
|
imagePullPolicy: $(params.image_pull_policy)
|
|
1247
1247
|
# --------------------------------------------------------------------------------
|
|
1248
1248
|
# /home/runner/work/cli/cli/tekton/target/tasks/gencfg-workspace.yaml
|
|
@@ -1331,7 +1331,7 @@ spec:
|
|
|
1331
1331
|
command:
|
|
1332
1332
|
- /opt/app-root/src/run-role.sh
|
|
1333
1333
|
- gencfg_workspace
|
|
1334
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
1334
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
1335
1335
|
imagePullPolicy: $(params.image_pull_policy)
|
|
1336
1336
|
workingDir: /workspace/configs
|
|
1337
1337
|
|
|
@@ -1435,7 +1435,7 @@ spec:
|
|
|
1435
1435
|
- -c
|
|
1436
1436
|
name: gitops-bootstrap
|
|
1437
1437
|
imagePullPolicy: IfNotPresent
|
|
1438
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
1438
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
1439
1439
|
workspaces:
|
|
1440
1440
|
- name: configs
|
|
1441
1441
|
# --------------------------------------------------------------------------------
|
|
@@ -1512,7 +1512,7 @@ spec:
|
|
|
1512
1512
|
- -c
|
|
1513
1513
|
name: gitops-cis-compliance
|
|
1514
1514
|
imagePullPolicy: IfNotPresent
|
|
1515
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
1515
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
1516
1516
|
workspaces:
|
|
1517
1517
|
- name: configs
|
|
1518
1518
|
# --------------------------------------------------------------------------------
|
|
@@ -1691,7 +1691,7 @@ spec:
|
|
|
1691
1691
|
- -c
|
|
1692
1692
|
name: gitops-cluster
|
|
1693
1693
|
imagePullPolicy: Always
|
|
1694
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
1694
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
1695
1695
|
workspaces:
|
|
1696
1696
|
- name: configs
|
|
1697
1697
|
# --------------------------------------------------------------------------------
|
|
@@ -1775,7 +1775,7 @@ spec:
|
|
|
1775
1775
|
- -c
|
|
1776
1776
|
name: gitops-cos
|
|
1777
1777
|
imagePullPolicy: IfNotPresent
|
|
1778
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
1778
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
1779
1779
|
workspaces:
|
|
1780
1780
|
- name: configs
|
|
1781
1781
|
# --------------------------------------------------------------------------------
|
|
@@ -1888,7 +1888,7 @@ spec:
|
|
|
1888
1888
|
- -c
|
|
1889
1889
|
name: gitops-cp4d-service
|
|
1890
1890
|
imagePullPolicy: IfNotPresent
|
|
1891
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
1891
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
1892
1892
|
workspaces:
|
|
1893
1893
|
- name: configs
|
|
1894
1894
|
- name: shared-gitops-configs
|
|
@@ -1997,7 +1997,7 @@ spec:
|
|
|
1997
1997
|
- -c
|
|
1998
1998
|
name: gitops-cp4d
|
|
1999
1999
|
imagePullPolicy: IfNotPresent
|
|
2000
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
2000
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
2001
2001
|
workspaces:
|
|
2002
2002
|
- name: configs
|
|
2003
2003
|
- name: shared-gitops-configs
|
|
@@ -2240,7 +2240,7 @@ spec:
|
|
|
2240
2240
|
- -c
|
|
2241
2241
|
name: gitops-db2u-database
|
|
2242
2242
|
imagePullPolicy: Always
|
|
2243
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
2243
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
2244
2244
|
workspaces:
|
|
2245
2245
|
- name: configs
|
|
2246
2246
|
- name: shared-gitops-configs
|
|
@@ -2333,7 +2333,7 @@ spec:
|
|
|
2333
2333
|
- -c
|
|
2334
2334
|
name: gitops-db2u
|
|
2335
2335
|
imagePullPolicy: IfNotPresent
|
|
2336
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
2336
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
2337
2337
|
workspaces:
|
|
2338
2338
|
- name: configs
|
|
2339
2339
|
# --------------------------------------------------------------------------------
|
|
@@ -2455,7 +2455,7 @@ spec:
|
|
|
2455
2455
|
- -c
|
|
2456
2456
|
name: gitops-delete-jdbc-config
|
|
2457
2457
|
imagePullPolicy: IfNotPresent
|
|
2458
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
2458
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
2459
2459
|
workspaces:
|
|
2460
2460
|
- name: configs
|
|
2461
2461
|
# --------------------------------------------------------------------------------
|
|
@@ -2553,7 +2553,7 @@ spec:
|
|
|
2553
2553
|
- -c
|
|
2554
2554
|
name: gitops-delete-kafka-config
|
|
2555
2555
|
imagePullPolicy: Always
|
|
2556
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
2556
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
2557
2557
|
workspaces:
|
|
2558
2558
|
- name: configs
|
|
2559
2559
|
|
|
@@ -2645,7 +2645,7 @@ spec:
|
|
|
2645
2645
|
- -c
|
|
2646
2646
|
name: gitops-deprovision-app-config
|
|
2647
2647
|
imagePullPolicy: IfNotPresent
|
|
2648
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
2648
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
2649
2649
|
workspaces:
|
|
2650
2650
|
- name: configs
|
|
2651
2651
|
# --------------------------------------------------------------------------------
|
|
@@ -2730,7 +2730,7 @@ spec:
|
|
|
2730
2730
|
- -c
|
|
2731
2731
|
name: gitops-deprovision-app-install
|
|
2732
2732
|
imagePullPolicy: IfNotPresent
|
|
2733
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
2733
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
2734
2734
|
workspaces:
|
|
2735
2735
|
- name: configs
|
|
2736
2736
|
# --------------------------------------------------------------------------------
|
|
@@ -2815,7 +2815,7 @@ spec:
|
|
|
2815
2815
|
- -c
|
|
2816
2816
|
name: gitops-deprovision-cluster
|
|
2817
2817
|
imagePullPolicy: IfNotPresent
|
|
2818
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
2818
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
2819
2819
|
workspaces:
|
|
2820
2820
|
- name: configs
|
|
2821
2821
|
# --------------------------------------------------------------------------------
|
|
@@ -2922,7 +2922,7 @@ spec:
|
|
|
2922
2922
|
- -c
|
|
2923
2923
|
name: gitops-deprovision-cos
|
|
2924
2924
|
imagePullPolicy: IfNotPresent
|
|
2925
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
2925
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
2926
2926
|
workspaces:
|
|
2927
2927
|
- name: configs
|
|
2928
2928
|
# --------------------------------------------------------------------------------
|
|
@@ -3010,7 +3010,7 @@ spec:
|
|
|
3010
3010
|
- -c
|
|
3011
3011
|
name: gitops-deprovision-db2u-database
|
|
3012
3012
|
imagePullPolicy: IfNotPresent
|
|
3013
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
3013
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
3014
3014
|
workspaces:
|
|
3015
3015
|
- name: configs
|
|
3016
3016
|
|
|
@@ -3093,7 +3093,7 @@ spec:
|
|
|
3093
3093
|
- -c
|
|
3094
3094
|
name: gitops-deprovision-db2u
|
|
3095
3095
|
imagePullPolicy: IfNotPresent
|
|
3096
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
3096
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
3097
3097
|
workspaces:
|
|
3098
3098
|
- name: configs
|
|
3099
3099
|
|
|
@@ -3169,7 +3169,7 @@ spec:
|
|
|
3169
3169
|
- -c
|
|
3170
3170
|
name: gitops-deprovision-efs
|
|
3171
3171
|
imagePullPolicy: IfNotPresent
|
|
3172
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
3172
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
3173
3173
|
workspaces:
|
|
3174
3174
|
- name: configs
|
|
3175
3175
|
|
|
@@ -3278,7 +3278,7 @@ spec:
|
|
|
3278
3278
|
- -c
|
|
3279
3279
|
name: gitops-deprovision-kafka
|
|
3280
3280
|
imagePullPolicy: IfNotPresent
|
|
3281
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
3281
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
3282
3282
|
workspaces:
|
|
3283
3283
|
- name: configs
|
|
3284
3284
|
# --------------------------------------------------------------------------------
|
|
@@ -3380,7 +3380,7 @@ spec:
|
|
|
3380
3380
|
- -c
|
|
3381
3381
|
name: gitops-deprovision-mongo
|
|
3382
3382
|
imagePullPolicy: IfNotPresent
|
|
3383
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
3383
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
3384
3384
|
workspaces:
|
|
3385
3385
|
- name: configs
|
|
3386
3386
|
|
|
@@ -3437,7 +3437,7 @@ spec:
|
|
|
3437
3437
|
- -c
|
|
3438
3438
|
name: gitops-deprovision-rosa
|
|
3439
3439
|
imagePullPolicy: IfNotPresent
|
|
3440
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
3440
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
3441
3441
|
workspaces:
|
|
3442
3442
|
- name: configs
|
|
3443
3443
|
# --------------------------------------------------------------------------------
|
|
@@ -3630,7 +3630,7 @@ spec:
|
|
|
3630
3630
|
- -c
|
|
3631
3631
|
name: gitops-deprovision-suite-config
|
|
3632
3632
|
imagePullPolicy: IfNotPresent
|
|
3633
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
3633
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
3634
3634
|
workspaces:
|
|
3635
3635
|
- name: configs
|
|
3636
3636
|
|
|
@@ -3728,7 +3728,7 @@ spec:
|
|
|
3728
3728
|
- -c
|
|
3729
3729
|
name: gitops-deprovision-suite-idp-config
|
|
3730
3730
|
imagePullPolicy: IfNotPresent
|
|
3731
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
3731
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
3732
3732
|
workspaces:
|
|
3733
3733
|
- name: configs
|
|
3734
3734
|
# --------------------------------------------------------------------------------
|
|
@@ -3820,7 +3820,7 @@ spec:
|
|
|
3820
3820
|
- -c
|
|
3821
3821
|
name: gitops-deprovision-suite-objectstorage-config
|
|
3822
3822
|
imagePullPolicy: IfNotPresent
|
|
3823
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
3823
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
3824
3824
|
workspaces:
|
|
3825
3825
|
- name: configs
|
|
3826
3826
|
# --------------------------------------------------------------------------------
|
|
@@ -3912,7 +3912,7 @@ spec:
|
|
|
3912
3912
|
- -c
|
|
3913
3913
|
name: gitops-deprovision-suite-smtp-config
|
|
3914
3914
|
imagePullPolicy: IfNotPresent
|
|
3915
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
3915
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
3916
3916
|
workspaces:
|
|
3917
3917
|
- name: configs
|
|
3918
3918
|
# --------------------------------------------------------------------------------
|
|
@@ -4005,7 +4005,7 @@ spec:
|
|
|
4005
4005
|
- -c
|
|
4006
4006
|
name: gitops-deprovision-suite-watson-studio-config
|
|
4007
4007
|
imagePullPolicy: IfNotPresent
|
|
4008
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
4008
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
4009
4009
|
workspaces:
|
|
4010
4010
|
- name: configs
|
|
4011
4011
|
# --------------------------------------------------------------------------------
|
|
@@ -4096,7 +4096,7 @@ spec:
|
|
|
4096
4096
|
- -c
|
|
4097
4097
|
name: gitops-deprovision-suite-workspace
|
|
4098
4098
|
imagePullPolicy: Always
|
|
4099
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
4099
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
4100
4100
|
workspaces:
|
|
4101
4101
|
- name: configs
|
|
4102
4102
|
# --------------------------------------------------------------------------------
|
|
@@ -4189,7 +4189,7 @@ spec:
|
|
|
4189
4189
|
- -c
|
|
4190
4190
|
name: gitops-deprovision-suite
|
|
4191
4191
|
imagePullPolicy: IfNotPresent
|
|
4192
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
4192
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
4193
4193
|
workspaces:
|
|
4194
4194
|
- name: configs
|
|
4195
4195
|
|
|
@@ -4292,7 +4292,7 @@ spec:
|
|
|
4292
4292
|
- -c
|
|
4293
4293
|
name: gitops-dro
|
|
4294
4294
|
imagePullPolicy: IfNotPresent
|
|
4295
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
4295
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
4296
4296
|
workspaces:
|
|
4297
4297
|
- name: configs
|
|
4298
4298
|
# --------------------------------------------------------------------------------
|
|
@@ -4374,7 +4374,7 @@ spec:
|
|
|
4374
4374
|
- -c
|
|
4375
4375
|
name: gitops-efs
|
|
4376
4376
|
imagePullPolicy: IfNotPresent
|
|
4377
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
4377
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
4378
4378
|
workspaces:
|
|
4379
4379
|
- name: configs
|
|
4380
4380
|
|
|
@@ -4504,7 +4504,7 @@ spec:
|
|
|
4504
4504
|
- -c
|
|
4505
4505
|
name: gitops-jdbc-config
|
|
4506
4506
|
imagePullPolicy: Always
|
|
4507
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
4507
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
4508
4508
|
workspaces:
|
|
4509
4509
|
- name: configs
|
|
4510
4510
|
- name: shared-gitops-configs
|
|
@@ -4600,7 +4600,7 @@ spec:
|
|
|
4600
4600
|
- -c
|
|
4601
4601
|
name: gitops-kafka-config
|
|
4602
4602
|
imagePullPolicy: Always
|
|
4603
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
4603
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
4604
4604
|
workspaces:
|
|
4605
4605
|
- name: configs
|
|
4606
4606
|
|
|
@@ -4721,7 +4721,7 @@ spec:
|
|
|
4721
4721
|
- -c
|
|
4722
4722
|
name: gitops-kafka
|
|
4723
4723
|
imagePullPolicy: IfNotPresent
|
|
4724
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
4724
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
4725
4725
|
workspaces:
|
|
4726
4726
|
- name: configs
|
|
4727
4727
|
# --------------------------------------------------------------------------------
|
|
@@ -4772,7 +4772,7 @@ spec:
|
|
|
4772
4772
|
- -c
|
|
4773
4773
|
name: gitops-license
|
|
4774
4774
|
imagePullPolicy: Always
|
|
4775
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
4775
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
4776
4776
|
workspaces:
|
|
4777
4777
|
- name: shared-entitlement
|
|
4778
4778
|
|
|
@@ -5229,7 +5229,7 @@ spec:
|
|
|
5229
5229
|
- -c
|
|
5230
5230
|
name: gitops-mas-fvt-preparer
|
|
5231
5231
|
imagePullPolicy: Always
|
|
5232
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
5232
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
5233
5233
|
workspaces:
|
|
5234
5234
|
- name: configs
|
|
5235
5235
|
- name: shared-additional-configs
|
|
@@ -5633,7 +5633,7 @@ spec:
|
|
|
5633
5633
|
- -c
|
|
5634
5634
|
name: gitops-mas-initiator
|
|
5635
5635
|
imagePullPolicy: IfNotPresent
|
|
5636
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
5636
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
5637
5637
|
workspaces:
|
|
5638
5638
|
- name: configs
|
|
5639
5639
|
# --------------------------------------------------------------------------------
|
|
@@ -5740,7 +5740,7 @@ spec:
|
|
|
5740
5740
|
- -c
|
|
5741
5741
|
name: gitops-mongo
|
|
5742
5742
|
imagePullPolicy: IfNotPresent
|
|
5743
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
5743
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
5744
5744
|
workspaces:
|
|
5745
5745
|
- name: configs
|
|
5746
5746
|
|
|
@@ -5852,7 +5852,7 @@ spec:
|
|
|
5852
5852
|
- -c
|
|
5853
5853
|
name: gitops-nvidia-gpu
|
|
5854
5854
|
imagePullPolicy: IfNotPresent
|
|
5855
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
5855
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
5856
5856
|
workspaces:
|
|
5857
5857
|
- name: configs
|
|
5858
5858
|
# --------------------------------------------------------------------------------
|
|
@@ -5969,7 +5969,7 @@ spec:
|
|
|
5969
5969
|
- -c
|
|
5970
5970
|
name: gitops-process-mongo-user
|
|
5971
5971
|
imagePullPolicy: IfNotPresent
|
|
5972
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
5972
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
5973
5973
|
workspaces:
|
|
5974
5974
|
- name: configs
|
|
5975
5975
|
# --------------------------------------------------------------------------------
|
|
@@ -6025,7 +6025,7 @@ spec:
|
|
|
6025
6025
|
- -c
|
|
6026
6026
|
name: gitops-rosa
|
|
6027
6027
|
imagePullPolicy: IfNotPresent
|
|
6028
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
6028
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
6029
6029
|
workspaces:
|
|
6030
6030
|
- name: configs
|
|
6031
6031
|
# --------------------------------------------------------------------------------
|
|
@@ -6192,7 +6192,7 @@ spec:
|
|
|
6192
6192
|
- -c
|
|
6193
6193
|
name: gitops-suite-app-config
|
|
6194
6194
|
imagePullPolicy: IfNotPresent
|
|
6195
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
6195
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
6196
6196
|
workspaces:
|
|
6197
6197
|
- name: configs
|
|
6198
6198
|
- name: shared-gitops-configs
|
|
@@ -6345,7 +6345,7 @@ spec:
|
|
|
6345
6345
|
- -c
|
|
6346
6346
|
name: gitops-suite-app-install
|
|
6347
6347
|
imagePullPolicy: Always
|
|
6348
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
6348
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
6349
6349
|
workspaces:
|
|
6350
6350
|
- name: configs
|
|
6351
6351
|
- name: shared-gitops-configs
|
|
@@ -6451,7 +6451,7 @@ spec:
|
|
|
6451
6451
|
- -c
|
|
6452
6452
|
name: gitops-suite-certs
|
|
6453
6453
|
imagePullPolicy: IfNotPresent
|
|
6454
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
6454
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
6455
6455
|
workspaces:
|
|
6456
6456
|
- name: configs
|
|
6457
6457
|
- name: certificates
|
|
@@ -6617,7 +6617,7 @@ spec:
|
|
|
6617
6617
|
- -c
|
|
6618
6618
|
name: gitops-suite-config
|
|
6619
6619
|
imagePullPolicy: IfNotPresent
|
|
6620
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
6620
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
6621
6621
|
workspaces:
|
|
6622
6622
|
- name: configs
|
|
6623
6623
|
- name: shared-additional-configs
|
|
@@ -6717,7 +6717,7 @@ spec:
|
|
|
6717
6717
|
- -c
|
|
6718
6718
|
name: gitops-suite-dns
|
|
6719
6719
|
imagePullPolicy: IfNotPresent
|
|
6720
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
6720
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
6721
6721
|
workspaces:
|
|
6722
6722
|
- name: configs
|
|
6723
6723
|
|
|
@@ -6841,7 +6841,7 @@ spec:
|
|
|
6841
6841
|
- -c
|
|
6842
6842
|
name: gitops-suite-idp-config
|
|
6843
6843
|
imagePullPolicy: IfNotPresent
|
|
6844
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
6844
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
6845
6845
|
workspaces:
|
|
6846
6846
|
- name: configs
|
|
6847
6847
|
- name: shared-additional-configs
|
|
@@ -6942,7 +6942,7 @@ spec:
|
|
|
6942
6942
|
- -c
|
|
6943
6943
|
name: gitops-suite-objectstorage-config
|
|
6944
6944
|
imagePullPolicy: IfNotPresent
|
|
6945
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
6945
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
6946
6946
|
workspaces:
|
|
6947
6947
|
- name: configs
|
|
6948
6948
|
- name: shared-gitops-configs
|
|
@@ -7086,7 +7086,7 @@ spec:
|
|
|
7086
7086
|
- -c
|
|
7087
7087
|
name: gitops-suite-smtp-config
|
|
7088
7088
|
imagePullPolicy: IfNotPresent
|
|
7089
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
7089
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
7090
7090
|
workspaces:
|
|
7091
7091
|
- name: configs
|
|
7092
7092
|
|
|
@@ -7195,7 +7195,7 @@ spec:
|
|
|
7195
7195
|
- -c
|
|
7196
7196
|
name: gitops-suite-watson-studio-config
|
|
7197
7197
|
imagePullPolicy: IfNotPresent
|
|
7198
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
7198
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
7199
7199
|
workspaces:
|
|
7200
7200
|
- name: configs
|
|
7201
7201
|
- name: shared-gitops-configs
|
|
@@ -7292,7 +7292,7 @@ spec:
|
|
|
7292
7292
|
- -c
|
|
7293
7293
|
name: gitops-suite-workspace
|
|
7294
7294
|
imagePullPolicy: IfNotPresent
|
|
7295
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
7295
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
7296
7296
|
workspaces:
|
|
7297
7297
|
- name: configs
|
|
7298
7298
|
# --------------------------------------------------------------------------------
|
|
@@ -7551,7 +7551,7 @@ spec:
|
|
|
7551
7551
|
- -c
|
|
7552
7552
|
name: gitops-suite
|
|
7553
7553
|
imagePullPolicy: IfNotPresent
|
|
7554
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
7554
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
7555
7555
|
workspaces:
|
|
7556
7556
|
- name: configs
|
|
7557
7557
|
- name: shared-gitops-configs
|
|
@@ -7601,7 +7601,7 @@ spec:
|
|
|
7601
7601
|
|
|
7602
7602
|
steps:
|
|
7603
7603
|
- name: grafana
|
|
7604
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
7604
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
7605
7605
|
imagePullPolicy: $(params.image_pull_policy)
|
|
7606
7606
|
command:
|
|
7607
7607
|
- /opt/app-root/src/run-role.sh
|
|
@@ -7735,7 +7735,7 @@ spec:
|
|
|
7735
7735
|
command:
|
|
7736
7736
|
- /opt/app-root/src/run-role.sh
|
|
7737
7737
|
- ibm_catalogs
|
|
7738
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
7738
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
7739
7739
|
imagePullPolicy: $(params.image_pull_policy)
|
|
7740
7740
|
workingDir: /workspace/configs
|
|
7741
7741
|
# --------------------------------------------------------------------------------
|
|
@@ -7977,7 +7977,7 @@ spec:
|
|
|
7977
7977
|
command:
|
|
7978
7978
|
- /opt/app-root/src/run-role.sh
|
|
7979
7979
|
- kafka
|
|
7980
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
7980
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
7981
7981
|
imagePullPolicy: $(params.image_pull_policy)
|
|
7982
7982
|
workingDir: /workspace/configs
|
|
7983
7983
|
|
|
@@ -8154,7 +8154,7 @@ spec:
|
|
|
8154
8154
|
command:
|
|
8155
8155
|
- /opt/app-root/src/run-role.sh
|
|
8156
8156
|
- mongodb
|
|
8157
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
8157
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
8158
8158
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8159
8159
|
workingDir: /workspace/configs
|
|
8160
8160
|
|
|
@@ -8197,7 +8197,7 @@ spec:
|
|
|
8197
8197
|
- $(params.base_output_dir)
|
|
8198
8198
|
- --extra-namespaces
|
|
8199
8199
|
- selenium
|
|
8200
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
8200
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
8201
8201
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8202
8202
|
env:
|
|
8203
8203
|
- name: DEVOPS_MONGO_URI
|
|
@@ -8314,7 +8314,7 @@ spec:
|
|
|
8314
8314
|
command:
|
|
8315
8315
|
- /opt/app-root/src/run-role.sh
|
|
8316
8316
|
- nvidia_gpu
|
|
8317
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
8317
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
8318
8318
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8319
8319
|
workingDir: /workspace/configs
|
|
8320
8320
|
|
|
@@ -8350,7 +8350,7 @@ spec:
|
|
|
8350
8350
|
# Verify Cluster
|
|
8351
8351
|
# -------------------------------------------------------------------------
|
|
8352
8352
|
- name: ocp-verify-cluster
|
|
8353
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
8353
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
8354
8354
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8355
8355
|
command:
|
|
8356
8356
|
- /opt/app-root/src/run-role.sh
|
|
@@ -8392,7 +8392,7 @@ spec:
|
|
|
8392
8392
|
# Verify Catalogs
|
|
8393
8393
|
# -------------------------------------------------------------------------
|
|
8394
8394
|
- name: ocp-verify-catalogs
|
|
8395
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
8395
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
8396
8396
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8397
8397
|
command:
|
|
8398
8398
|
- /opt/app-root/src/run-role.sh
|
|
@@ -8434,7 +8434,7 @@ spec:
|
|
|
8434
8434
|
# Verify Subscriptions
|
|
8435
8435
|
# -------------------------------------------------------------------------
|
|
8436
8436
|
- name: ocp-verify-subscriptions
|
|
8437
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
8437
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
8438
8438
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8439
8439
|
command:
|
|
8440
8440
|
- /opt/app-root/src/run-role.sh
|
|
@@ -8476,7 +8476,7 @@ spec:
|
|
|
8476
8476
|
# Verify Workloads
|
|
8477
8477
|
# -------------------------------------------------------------------------
|
|
8478
8478
|
- name: ocp-verify-workloads
|
|
8479
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
8479
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
8480
8480
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8481
8481
|
command:
|
|
8482
8482
|
- /opt/app-root/src/run-role.sh
|
|
@@ -8518,7 +8518,7 @@ spec:
|
|
|
8518
8518
|
# Verify Catalogs - Ingress TLS
|
|
8519
8519
|
# -------------------------------------------------------------------------
|
|
8520
8520
|
- name: ocp-verify-ingress
|
|
8521
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
8521
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
8522
8522
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8523
8523
|
command:
|
|
8524
8524
|
- /opt/app-root/src/run-role.sh
|
|
@@ -8644,7 +8644,7 @@ spec:
|
|
|
8644
8644
|
command:
|
|
8645
8645
|
- /opt/app-root/src/run-role.sh
|
|
8646
8646
|
- ocp_verify
|
|
8647
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
8647
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
8648
8648
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8649
8649
|
workingDir: /workspace/configs
|
|
8650
8650
|
# --------------------------------------------------------------------------------
|
|
@@ -8712,7 +8712,7 @@ spec:
|
|
|
8712
8712
|
command:
|
|
8713
8713
|
- /opt/app-root/src/run-role.sh
|
|
8714
8714
|
- ocs
|
|
8715
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
8715
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
8716
8716
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8717
8717
|
workingDir: /workspace/configs
|
|
8718
8718
|
|
|
@@ -8893,7 +8893,7 @@ spec:
|
|
|
8893
8893
|
command:
|
|
8894
8894
|
- /opt/app-root/src/run-role.sh
|
|
8895
8895
|
- sls
|
|
8896
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
8896
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
8897
8897
|
imagePullPolicy: $(params.image_pull_policy)
|
|
8898
8898
|
workingDir: /workspace/configs
|
|
8899
8899
|
|
|
@@ -9268,12 +9268,12 @@ spec:
|
|
|
9268
9268
|
command:
|
|
9269
9269
|
- /opt/app-root/src/run-role.sh
|
|
9270
9270
|
- suite_app_config
|
|
9271
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
9271
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
9272
9272
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9273
9273
|
|
|
9274
9274
|
# If configmap/approval-app-cfg-$(params.mas_app_id) exists then set CONFIGMAP_KEY=pending and wait for it to be changed to "approved"
|
|
9275
9275
|
- name: app-cfg-post-verify
|
|
9276
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
9276
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
9277
9277
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9278
9278
|
command:
|
|
9279
9279
|
- /opt/app-root/src/wait-for-configmap.sh
|
|
@@ -9474,7 +9474,7 @@ spec:
|
|
|
9474
9474
|
command:
|
|
9475
9475
|
- /opt/app-root/src/run-role.sh
|
|
9476
9476
|
- suite_app_install
|
|
9477
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
9477
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
9478
9478
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9479
9479
|
|
|
9480
9480
|
workspaces:
|
|
@@ -9563,7 +9563,7 @@ spec:
|
|
|
9563
9563
|
command:
|
|
9564
9564
|
- /opt/app-root/src/run-role.sh
|
|
9565
9565
|
- suite_app_rollback
|
|
9566
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
9566
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
9567
9567
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9568
9568
|
# --------------------------------------------------------------------------------
|
|
9569
9569
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-app-uninstall.yaml
|
|
@@ -9626,7 +9626,7 @@ spec:
|
|
|
9626
9626
|
command:
|
|
9627
9627
|
- /opt/app-root/src/run-role.sh
|
|
9628
9628
|
- suite_app_uninstall
|
|
9629
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
9629
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
9630
9630
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9631
9631
|
# --------------------------------------------------------------------------------
|
|
9632
9632
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-app-upgrade.yaml
|
|
@@ -9701,7 +9701,7 @@ spec:
|
|
|
9701
9701
|
command:
|
|
9702
9702
|
- /opt/app-root/src/run-role.sh
|
|
9703
9703
|
- suite_app_upgrade
|
|
9704
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
9704
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
9705
9705
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9706
9706
|
# --------------------------------------------------------------------------------
|
|
9707
9707
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-app-verify.yaml
|
|
@@ -9802,7 +9802,7 @@ spec:
|
|
|
9802
9802
|
command:
|
|
9803
9803
|
- /opt/app-root/src/run-role.sh
|
|
9804
9804
|
- suite_app_verify
|
|
9805
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
9805
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
9806
9806
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9807
9807
|
# --------------------------------------------------------------------------------
|
|
9808
9808
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-certs.yaml
|
|
@@ -9945,7 +9945,7 @@ spec:
|
|
|
9945
9945
|
command:
|
|
9946
9946
|
- /opt/app-root/src/run-role.sh
|
|
9947
9947
|
- suite_certs
|
|
9948
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
9948
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
9949
9949
|
imagePullPolicy: $(params.image_pull_policy)
|
|
9950
9950
|
|
|
9951
9951
|
workspaces:
|
|
@@ -10012,7 +10012,7 @@ spec:
|
|
|
10012
10012
|
command:
|
|
10013
10013
|
- /opt/app-root/src/run-role.sh
|
|
10014
10014
|
- suite_config
|
|
10015
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
10015
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
10016
10016
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10017
10017
|
workingDir: /workspace/configs
|
|
10018
10018
|
|
|
@@ -10083,7 +10083,7 @@ spec:
|
|
|
10083
10083
|
command:
|
|
10084
10084
|
- /opt/app-root/src/run-role.sh
|
|
10085
10085
|
- suite_db2_setup_for_manage
|
|
10086
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
10086
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
10087
10087
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10088
10088
|
# --------------------------------------------------------------------------------
|
|
10089
10089
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-dns.yaml
|
|
@@ -10273,7 +10273,7 @@ spec:
|
|
|
10273
10273
|
command:
|
|
10274
10274
|
- /opt/app-root/src/run-role.sh
|
|
10275
10275
|
- suite_dns
|
|
10276
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
10276
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
10277
10277
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10278
10278
|
# --------------------------------------------------------------------------------
|
|
10279
10279
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-install.yaml
|
|
@@ -10388,6 +10388,21 @@ spec:
|
|
|
10388
10388
|
- name: seamless_login
|
|
10389
10389
|
type: string
|
|
10390
10390
|
default: ''
|
|
10391
|
+
- name: sso_cookie_name
|
|
10392
|
+
type: string
|
|
10393
|
+
default: ''
|
|
10394
|
+
- name: allow_default_sso_cookie_name
|
|
10395
|
+
type: string
|
|
10396
|
+
default: ''
|
|
10397
|
+
- name: use_only_custom_cookie_name
|
|
10398
|
+
type: string
|
|
10399
|
+
default: ''
|
|
10400
|
+
- name: disable_ldap_cookie
|
|
10401
|
+
type: string
|
|
10402
|
+
default: ''
|
|
10403
|
+
- name: allow_custom_cache_key
|
|
10404
|
+
type: string
|
|
10405
|
+
default: ''
|
|
10391
10406
|
stepTemplate:
|
|
10392
10407
|
env:
|
|
10393
10408
|
- name: DEVOPS_MONGO_URI
|
|
@@ -10466,7 +10481,7 @@ spec:
|
|
|
10466
10481
|
|
|
10467
10482
|
- name: MAS_POD_TEMPLATES_DIR
|
|
10468
10483
|
value: /workspace/pod-templates
|
|
10469
|
-
|
|
10484
|
+
|
|
10470
10485
|
- name: IDLE_TIMEOUT
|
|
10471
10486
|
value: $(params.idle_timeout)
|
|
10472
10487
|
- name: IDP_SESSION_TIMEOUT
|
|
@@ -10479,14 +10494,25 @@ spec:
|
|
|
10479
10494
|
value: $(params.default_idp)
|
|
10480
10495
|
- name: SEAMLESS_LOGIN
|
|
10481
10496
|
value: $(params.seamless_login)
|
|
10482
|
-
|
|
10497
|
+
|
|
10498
|
+
- name: SSO_COOKIE_NAME
|
|
10499
|
+
value: $(params.sso_cookie_name)
|
|
10500
|
+
- name: ALLOW_DEFAULT_SSO_COOKIE_NAME
|
|
10501
|
+
value: $(params.allow_default_sso_cookie_name)
|
|
10502
|
+
- name: USE_ONLY_CUSTOM_COOKIE_NAME
|
|
10503
|
+
value: $(params.use_only_custom_cookie_name)
|
|
10504
|
+
- name: DISABLE_LDAP_COOKIE
|
|
10505
|
+
value: $(params.disable_ldap_cookie)
|
|
10506
|
+
- name: ALLOW_CUSTOM_CACHE_KEY
|
|
10507
|
+
value: $(params.allow_custom_cache_key)
|
|
10508
|
+
|
|
10483
10509
|
|
|
10484
10510
|
steps:
|
|
10485
10511
|
- name: suite-install
|
|
10486
10512
|
command:
|
|
10487
10513
|
- /opt/app-root/src/run-role.sh
|
|
10488
10514
|
- suite_install
|
|
10489
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
10515
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
10490
10516
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10491
10517
|
workingDir: /workspace/configs
|
|
10492
10518
|
|
|
@@ -10574,7 +10600,7 @@ spec:
|
|
|
10574
10600
|
command:
|
|
10575
10601
|
- /opt/app-root/src/run-role.sh
|
|
10576
10602
|
- suite_rollback
|
|
10577
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
10603
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
10578
10604
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10579
10605
|
# --------------------------------------------------------------------------------
|
|
10580
10606
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-uninstall.yaml
|
|
@@ -10639,7 +10665,7 @@ spec:
|
|
|
10639
10665
|
command:
|
|
10640
10666
|
- /opt/app-root/src/run-role.sh
|
|
10641
10667
|
- suite_uninstall
|
|
10642
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
10668
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
10643
10669
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10644
10670
|
# --------------------------------------------------------------------------------
|
|
10645
10671
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-upgrade.yaml
|
|
@@ -10709,7 +10735,7 @@ spec:
|
|
|
10709
10735
|
command:
|
|
10710
10736
|
- /opt/app-root/src/run-role.sh
|
|
10711
10737
|
- suite_upgrade
|
|
10712
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
10738
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
10713
10739
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10714
10740
|
# --------------------------------------------------------------------------------
|
|
10715
10741
|
# /home/runner/work/cli/cli/tekton/target/tasks/suite-verify.yaml
|
|
@@ -10771,12 +10797,12 @@ spec:
|
|
|
10771
10797
|
command:
|
|
10772
10798
|
- /opt/app-root/src/run-role.sh
|
|
10773
10799
|
- suite_verify
|
|
10774
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
10800
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
10775
10801
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10776
10802
|
|
|
10777
10803
|
# If configmap/approval-suite-verify exists then set CONFIGMAP_KEY=pending and wait for it to be changed to "approved"
|
|
10778
10804
|
- name: suite-post-verify
|
|
10779
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
10805
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
10780
10806
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10781
10807
|
command:
|
|
10782
10808
|
- /opt/app-root/src/wait-for-configmap.sh
|
|
@@ -10905,7 +10931,7 @@ spec:
|
|
|
10905
10931
|
command:
|
|
10906
10932
|
- /opt/app-root/src/run-role.sh
|
|
10907
10933
|
- turbonomic
|
|
10908
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
10934
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
10909
10935
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10910
10936
|
# --------------------------------------------------------------------------------
|
|
10911
10937
|
# /home/runner/work/cli/cli/tekton/target/tasks/uds.yaml
|
|
@@ -10986,7 +11012,7 @@ spec:
|
|
|
10986
11012
|
# IBM User Data Services (UDS)
|
|
10987
11013
|
# -------------------------------------------------------------------------
|
|
10988
11014
|
- name: uds
|
|
10989
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
11015
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
10990
11016
|
imagePullPolicy: $(params.image_pull_policy)
|
|
10991
11017
|
workingDir: /workspace/configs
|
|
10992
11018
|
command:
|
|
@@ -11049,7 +11075,7 @@ spec:
|
|
|
11049
11075
|
# IBM Data Reporter Operator (DRO)
|
|
11050
11076
|
# -------------------------------------------------------------------------
|
|
11051
11077
|
- name: dro
|
|
11052
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
11078
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
11053
11079
|
imagePullPolicy: $(params.image_pull_policy)
|
|
11054
11080
|
workingDir: /workspace/configs
|
|
11055
11081
|
command:
|
|
@@ -11135,7 +11161,7 @@ spec:
|
|
|
11135
11161
|
|
|
11136
11162
|
steps:
|
|
11137
11163
|
- name: update-configmap
|
|
11138
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
11164
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
11139
11165
|
command:
|
|
11140
11166
|
- /opt/app-root/src/update-configmap.sh
|
|
11141
11167
|
env:
|
|
@@ -11197,7 +11223,7 @@ spec:
|
|
|
11197
11223
|
|
|
11198
11224
|
steps:
|
|
11199
11225
|
- name: wait-for-configmap
|
|
11200
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
11226
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
11201
11227
|
command:
|
|
11202
11228
|
- /opt/app-root/src/wait-for-configmap.sh
|
|
11203
11229
|
env:
|
|
@@ -11261,7 +11287,7 @@ spec:
|
|
|
11261
11287
|
|
|
11262
11288
|
steps:
|
|
11263
11289
|
- name: wait
|
|
11264
|
-
image: quay.io/ibmmas/cli:10.4.
|
|
11290
|
+
image: quay.io/ibmmas/cli:10.4.4
|
|
11265
11291
|
command:
|
|
11266
11292
|
- /opt/app-root/src/wait-for-tekton.sh
|
|
11267
11293
|
env:
|
|
@@ -18984,6 +19010,21 @@ spec:
|
|
|
18984
19010
|
- name: seamless_login
|
|
18985
19011
|
type: string
|
|
18986
19012
|
default: ''
|
|
19013
|
+
- name: sso_cookie_name
|
|
19014
|
+
type: string
|
|
19015
|
+
default: ''
|
|
19016
|
+
- name: allow_default_sso_cookie_name
|
|
19017
|
+
type: string
|
|
19018
|
+
default: ''
|
|
19019
|
+
- name: use_only_custom_cookie_name
|
|
19020
|
+
type: string
|
|
19021
|
+
default: ''
|
|
19022
|
+
- name: disable_ldap_cookie
|
|
19023
|
+
type: string
|
|
19024
|
+
default: ''
|
|
19025
|
+
- name: allow_custom_cache_key
|
|
19026
|
+
type: string
|
|
19027
|
+
default: ''
|
|
18987
19028
|
|
|
18988
19029
|
# MAS Configuration - Superuser Account
|
|
18989
19030
|
# -----------------------------------------------------------------------------
|
|
@@ -20527,6 +20568,16 @@ spec:
|
|
|
20527
20568
|
value: $(params.default_idp)
|
|
20528
20569
|
- name: seamless_login
|
|
20529
20570
|
value: $(params.seamless_login)
|
|
20571
|
+
- name: sso_cookie_name
|
|
20572
|
+
value: $(params.sso_cookie_name)
|
|
20573
|
+
- name: allow_default_sso_cookie_name
|
|
20574
|
+
value: $(params.allow_default_sso_cookie_name)
|
|
20575
|
+
- name: use_only_custom_cookie_name
|
|
20576
|
+
value: $(params.use_only_custom_cookie_name)
|
|
20577
|
+
- name: disable_ldap_cookie
|
|
20578
|
+
value: $(params.disable_ldap_cookie)
|
|
20579
|
+
- name: allow_custom_cache_key
|
|
20580
|
+
value: $(params.allow_custom_cache_key)
|
|
20530
20581
|
- name: mas_manual_cert_mgmt
|
|
20531
20582
|
value: $(params.mas_manual_cert_mgmt)
|
|
20532
20583
|
- name: mas_trust_default_cas
|
mas/cli/validators.py
CHANGED
|
@@ -9,7 +9,6 @@
|
|
|
9
9
|
# *****************************************************************************
|
|
10
10
|
|
|
11
11
|
from re import match
|
|
12
|
-
import re
|
|
13
12
|
from os import path
|
|
14
13
|
|
|
15
14
|
# Use of the openshift client rather than the kubernetes client allows us access to "apply"
|
|
@@ -48,16 +47,18 @@ class WorkspaceIDFormatValidator(Validator):
|
|
|
48
47
|
if not match(r"^[a-z][a-z0-9]{2,11}$", instanceId):
|
|
49
48
|
raise ValidationError(message='Workspace ID does not meet the requirements', cursor_position=len(instanceId))
|
|
50
49
|
|
|
50
|
+
|
|
51
51
|
class TimeoutFormatValidator(Validator):
|
|
52
52
|
def validate(self, document):
|
|
53
53
|
"""
|
|
54
54
|
Validate that a MAS instance ID exists on the target cluster
|
|
55
55
|
"""
|
|
56
56
|
string_to_validate = document.text
|
|
57
|
-
if not match(r'^([0-9]+)([hm])$', string_to_validate):
|
|
57
|
+
if string_to_validate != "" and not match(r'^([0-9]+)([hm])$', string_to_validate):
|
|
58
58
|
message = f"Error: Your input: {string_to_validate} does not meet the required pattern. Please use it in hours or minutes format (e.g., 12h, 12m)."
|
|
59
59
|
raise ValidationError(message=message, cursor_position=len(string_to_validate))
|
|
60
60
|
|
|
61
|
+
|
|
61
62
|
class WorkspaceNameFormatValidator(Validator):
|
|
62
63
|
def validate(self, document):
|
|
63
64
|
"""
|
|
@@ -116,6 +117,7 @@ class FileExistsValidator(Validator):
|
|
|
116
117
|
if not path.isfile(response):
|
|
117
118
|
raise ValidationError(message=f"{response} does not exist, or is not a file", cursor_position=len(response))
|
|
118
119
|
|
|
120
|
+
|
|
119
121
|
class DirectoryExistsValidator(Validator):
|
|
120
122
|
def validate(self, document):
|
|
121
123
|
"""
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
mas/cli/__init__.py,sha256=
|
|
1
|
+
mas/cli/__init__.py,sha256=sikcqn9yqqk0rthUa45jPlWDuj3ZjjDJ3y-biFwrbr8,491
|
|
2
2
|
mas/cli/cli.py,sha256=vBEBcDulbl652CBBw66AMCB2KMiZKsXXYHTNLRLr5R0,10287
|
|
3
|
-
mas/cli/displayMixins.py,sha256=
|
|
3
|
+
mas/cli/displayMixins.py,sha256=ygDJ8KPLdJpip_JQ4JDPWbvo7ZIdsOZQfQoVnMdAauM,5594
|
|
4
4
|
mas/cli/gencfg.py,sha256=57ik5x73gQBFXPl_8h2byXmV_vhCgxfeSDZk4Wg5-Pw,2102
|
|
5
|
-
mas/cli/validators.py,sha256=
|
|
5
|
+
mas/cli/validators.py,sha256=vi1pFA8QtqMhqtGk1NlkkNDUrlFCi53kS5wJqFGDgOU,5108
|
|
6
6
|
mas/cli/install/__init__.py,sha256=tGH_qJ5ZqcSFpIlObRiye3Y-r4zU8rEplYFjwuHwBTY,494
|
|
7
|
-
mas/cli/install/app.py,sha256=
|
|
7
|
+
mas/cli/install/app.py,sha256=lhsmYisPuzhS1rkWS7jbi9WQ9JRL75jWikplrOKLspA,51596
|
|
8
8
|
mas/cli/install/argParser.py,sha256=FEmCUrRwaE5e-AHkpsQmgMpo6ta-nLYXTtuofVxsmMg,25381
|
|
9
9
|
mas/cli/install/summarizer.py,sha256=ydOnkiRmj3nPPcE9ZHNxHDMMgii_VYHKnyXV4JbVQ7s,18046
|
|
10
10
|
mas/cli/install/settings/__init__.py,sha256=eGdNVHVALUxJlZyGYkBet8LbHvVfa-1UjL_8Zl3d-lY,953
|
|
11
11
|
mas/cli/install/settings/additionalConfigs.py,sha256=-qn25IExNGDJ_VLTH1EmgPrFrIE3JFZ3MMb0RlTzVOg,9651
|
|
12
12
|
mas/cli/install/settings/db2Settings.py,sha256=mR0XL81Talvwvm1bekw0o9VOwV42QkS0jMyp055bx5U,10713
|
|
13
13
|
mas/cli/install/settings/kafkaSettings.py,sha256=bjAji5OZfSBpttiYHKM5B5Lvva8L8PUzi8QSs6opQcE,6997
|
|
14
|
-
mas/cli/install/settings/manageSettings.py,sha256=
|
|
14
|
+
mas/cli/install/settings/manageSettings.py,sha256=WZHI5VMVBwaHrQDT5kbthgxypCc2th4XEHEMVKTnh0g,13308
|
|
15
15
|
mas/cli/install/settings/turbonomicSettings.py,sha256=OC-sn6_Z6MAq0kf33OC3c96gqT8FT4P7A51PenPiCXw,1368
|
|
16
|
-
mas/cli/templates/ibm-mas-tekton.yaml,sha256=
|
|
16
|
+
mas/cli/templates/ibm-mas-tekton.yaml,sha256=oCxJ8CSgPaW_P15A-FF4zK_k7_xg2ppl0ReFb6EC_90,722360
|
|
17
17
|
mas/cli/templates/jdbccfg.yml.j2,sha256=cANbwkUkKEPQp-P3_BB_Llbt94457Ciagah2hOdySIM,1644
|
|
18
18
|
mas/cli/templates/pod-templates/best-effort/ibm-data-dictionary-assetdatadictionary.yml,sha256=8VG_FDFcEjWNaAOZTcS58Pe0tWOXC10SJLloNqzEMC8,757
|
|
19
19
|
mas/cli/templates/pod-templates/best-effort/ibm-mas-bascfg.yml,sha256=rkq8c2pVJoskgict9tCZzCchGSE2MBC-dJ47JyMYm7A,1559
|
|
@@ -94,8 +94,8 @@ mas/cli/update/argParser.py,sha256=k9-2i6KRvU4gxkiHJTgtjh1IkDaaLzgisrZe6-JORJA,3
|
|
|
94
94
|
mas/cli/upgrade/__init__.py,sha256=tGH_qJ5ZqcSFpIlObRiye3Y-r4zU8rEplYFjwuHwBTY,494
|
|
95
95
|
mas/cli/upgrade/app.py,sha256=lxMZYlO_sybzbOuZ4D7R0OCjGqnMg3MF1h2vSVZ1YmE,5328
|
|
96
96
|
mas/cli/upgrade/argParser.py,sha256=jl8SU0mXDMAkpfqXaKE4MPNUmVoD0LSsvMUSJjU1dbQ,1881
|
|
97
|
-
mas_cli-10.4.
|
|
98
|
-
mas_cli-10.4.
|
|
99
|
-
mas_cli-10.4.
|
|
100
|
-
mas_cli-10.4.
|
|
101
|
-
mas_cli-10.4.
|
|
97
|
+
mas_cli-10.4.4.data/scripts/mas-cli,sha256=sEPYV6KUzcq4ukiTM4tMLsYKv-d9Ms0aJI9Uhjg_G9Y,3436
|
|
98
|
+
mas_cli-10.4.4.dist-info/METADATA,sha256=sOOMiwB2tY0zXHyummhOgZBmZH4NjZ9ITCwRXJqfGXU,2076
|
|
99
|
+
mas_cli-10.4.4.dist-info/WHEEL,sha256=Wyh-_nZ0DJYolHNn1_hMa4lM7uDedD_RGVwbmTjyItk,91
|
|
100
|
+
mas_cli-10.4.4.dist-info/top_level.txt,sha256=_Hlsp7pvMvyV14LFg-vk1hULq30j61EILnnxMFIhhc8,4
|
|
101
|
+
mas_cli-10.4.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|