mas-cli 10.8.0__py3-none-any.whl → 10.9.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 +89 -3
- mas/cli/install/app.py +72 -43
- mas/cli/install/argBuilder.py +367 -0
- mas/cli/install/argParser.py +26 -6
- mas/cli/install/settings/additionalConfigs.py +3 -4
- mas/cli/install/settings/manageSettings.py +17 -9
- mas/cli/install/settings/turbonomicSettings.py +5 -1
- mas/cli/install/summarizer.py +13 -0
- mas/cli/templates/ibm-mas-tekton.yaml +116 -719
- mas/cli/uninstall/app.py +2 -0
- mas/cli/update/app.py +11 -8
- mas/cli/upgrade/app.py +2 -0
- {mas_cli-10.8.0.dist-info → mas_cli-10.9.0.dist-info}/METADATA +1 -1
- {mas_cli-10.8.0.dist-info → mas_cli-10.9.0.dist-info}/RECORD +18 -17
- {mas_cli-10.8.0.dist-info → mas_cli-10.9.0.dist-info}/WHEEL +1 -1
- {mas_cli-10.8.0.data → mas_cli-10.9.0.data}/scripts/mas-cli +0 -0
- {mas_cli-10.8.0.dist-info → mas_cli-10.9.0.dist-info}/top_level.txt +0 -0
mas/cli/uninstall/app.py
CHANGED
|
@@ -156,6 +156,8 @@ class UninstallApp(BaseApp):
|
|
|
156
156
|
continueWithUninstall = self.yesOrNo("Proceed with these settings")
|
|
157
157
|
|
|
158
158
|
if self.noConfirm or continueWithUninstall:
|
|
159
|
+
self.createTektonFileWithDigest()
|
|
160
|
+
|
|
159
161
|
self.printH1("Launch uninstall")
|
|
160
162
|
pipelinesNamespace = f"mas-{instanceId}-pipelines"
|
|
161
163
|
|
mas/cli/update/app.py
CHANGED
|
@@ -168,6 +168,8 @@ class UpdateApp(BaseApp):
|
|
|
168
168
|
|
|
169
169
|
# Prepare the namespace and launch the installation pipeline
|
|
170
170
|
if self.noConfirm or continueWithUpdate:
|
|
171
|
+
self.createTektonFileWithDigest()
|
|
172
|
+
|
|
171
173
|
self.printH1("Launch Update")
|
|
172
174
|
pipelinesNamespace = f"mas-pipelines"
|
|
173
175
|
|
|
@@ -233,13 +235,13 @@ class UpdateApp(BaseApp):
|
|
|
233
235
|
self.printH1("Select IBM Maximo Operator Catalog Version")
|
|
234
236
|
self.printDescription([
|
|
235
237
|
"Select MAS Catalog",
|
|
236
|
-
" 1)
|
|
237
|
-
" 2)
|
|
238
|
-
" 3)
|
|
238
|
+
" 1) Aug 27 2024 Update (MAS 9.0.2, 8.11.14, & 8.10.17)",
|
|
239
|
+
" 2) July 30 2024 Update (MAS 9.0.1, 8.11.13, & 8.10.16)",
|
|
240
|
+
" 3) June 25 2024 Update (MAS 9.0.0, 8.11.12, & 8.10.15)"
|
|
239
241
|
])
|
|
240
242
|
|
|
241
243
|
catalogOptions = [
|
|
242
|
-
"v9-
|
|
244
|
+
"v9-240827-amd64", "v9-240730-amd64", "v9-240625-amd64"
|
|
243
245
|
]
|
|
244
246
|
self.promptForListSelect("Select catalog version", catalogOptions, "mas_catalog_version", default=1)
|
|
245
247
|
|
|
@@ -331,9 +333,9 @@ class UpdateApp(BaseApp):
|
|
|
331
333
|
# Longer term we will centralise this information inside the mas-devops python collection,
|
|
332
334
|
# where it can be made available to both the ansible collection and this python package.
|
|
333
335
|
mongoVersions = {
|
|
334
|
-
"v8-240528-amd64": "5.0.23",
|
|
335
336
|
"v9-240625-amd64": "6.0.12",
|
|
336
|
-
"v9-240730-amd64": "6.0.12"
|
|
337
|
+
"v9-240730-amd64": "6.0.12",
|
|
338
|
+
"v9-240827-amd64": "6.0.12"
|
|
337
339
|
}
|
|
338
340
|
|
|
339
341
|
targetMongoVersion = mongoVersions[self.getParam('mas_catalog_version')]
|
|
@@ -445,9 +447,10 @@ class UpdateApp(BaseApp):
|
|
|
445
447
|
# Longer term we will centralise this information inside the mas-devops python collection,
|
|
446
448
|
# where it can be made available to both the ansible collection and this python package.
|
|
447
449
|
cp4dVersions = {
|
|
448
|
-
"v8-240528-amd64": "4.6.6",
|
|
449
450
|
"v9-240625-amd64": "4.8.0",
|
|
450
|
-
"v9-240730-amd64": "4.8.0"
|
|
451
|
+
"v9-240730-amd64": "4.8.0",
|
|
452
|
+
"v9-240827-amd64": "4.8.0"
|
|
453
|
+
|
|
451
454
|
}
|
|
452
455
|
|
|
453
456
|
with Halo(text='Checking for IBM Cloud Pak for Data', spinner=self.spinner) as h:
|
mas/cli/upgrade/app.py
CHANGED
|
@@ -81,6 +81,8 @@ class UpgradeApp(BaseApp):
|
|
|
81
81
|
continueWithUpgrade = prompt(HTML(f'<Yellow>Proceed with these settings?</Yellow> '), validator=YesNoValidator(), validate_while_typing=False)
|
|
82
82
|
|
|
83
83
|
if self.noConfirm or continueWithUpgrade in ["y", "yes"]:
|
|
84
|
+
self.createTektonFileWithDigest()
|
|
85
|
+
|
|
84
86
|
self.printH1("Launch Upgrade")
|
|
85
87
|
pipelinesNamespace = f"mas-{instanceId}-pipelines"
|
|
86
88
|
|
|
@@ -1,19 +1,20 @@
|
|
|
1
|
-
mas/cli/__init__.py,sha256=
|
|
2
|
-
mas/cli/cli.py,sha256=
|
|
1
|
+
mas/cli/__init__.py,sha256=GTbRzK4gzB3WEYzxelnyV7pW3HkCq607mGlYmen8z-I,526
|
|
2
|
+
mas/cli/cli.py,sha256=7n9kbUanlxb5Cm9PA-2JyH-KfXLD1PqWFbh7Vq5dniI,14563
|
|
3
3
|
mas/cli/displayMixins.py,sha256=ygDJ8KPLdJpip_JQ4JDPWbvo7ZIdsOZQfQoVnMdAauM,5594
|
|
4
4
|
mas/cli/gencfg.py,sha256=57ik5x73gQBFXPl_8h2byXmV_vhCgxfeSDZk4Wg5-Pw,2102
|
|
5
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=
|
|
8
|
-
mas/cli/install/
|
|
9
|
-
mas/cli/install/
|
|
7
|
+
mas/cli/install/app.py,sha256=ruIZE8Gc2Tsq6BffeTuRVGFhoDhg0ixWFfBPqLOCJ70,54763
|
|
8
|
+
mas/cli/install/argBuilder.py,sha256=WHlFwqg35-cTMaSj2AbeqkzmUqnaQ8k1DyaHO7NgIoU,22574
|
|
9
|
+
mas/cli/install/argParser.py,sha256=TMTRSSksZeujGsDX7g0oWfIibVUxVqkcuL5iRRRWzEE,26446
|
|
10
|
+
mas/cli/install/summarizer.py,sha256=9dxRDOdGGH4TOsNWAwIigqusqVUMa-R8tj9TPPKTx_4,18907
|
|
10
11
|
mas/cli/install/settings/__init__.py,sha256=eGdNVHVALUxJlZyGYkBet8LbHvVfa-1UjL_8Zl3d-lY,953
|
|
11
|
-
mas/cli/install/settings/additionalConfigs.py,sha256
|
|
12
|
+
mas/cli/install/settings/additionalConfigs.py,sha256=cdOWpOXJeVqpSFxAAwyEBhd7H1Y9r9H1NnMBNBowd2A,9625
|
|
12
13
|
mas/cli/install/settings/db2Settings.py,sha256=mR0XL81Talvwvm1bekw0o9VOwV42QkS0jMyp055bx5U,10713
|
|
13
14
|
mas/cli/install/settings/kafkaSettings.py,sha256=bjAji5OZfSBpttiYHKM5B5Lvva8L8PUzi8QSs6opQcE,6997
|
|
14
|
-
mas/cli/install/settings/manageSettings.py,sha256=
|
|
15
|
-
mas/cli/install/settings/turbonomicSettings.py,sha256=
|
|
16
|
-
mas/cli/templates/ibm-mas-tekton.yaml,sha256=
|
|
15
|
+
mas/cli/install/settings/manageSettings.py,sha256=TSByaLXVF9hRH0hqhX-eBc7dIHrOf4zgviOq2YrjSHc,13658
|
|
16
|
+
mas/cli/install/settings/turbonomicSettings.py,sha256=eqMDocZxJnGEnWh41Yh8rmmVKVR_JnA8qrbfRrFAOaQ,1588
|
|
17
|
+
mas/cli/templates/ibm-mas-tekton.yaml,sha256=2Ukg0fJjVPdchEBgV4vl9jyw5-O5L8DzrEkNlXsdSPM,707138
|
|
17
18
|
mas/cli/templates/jdbccfg.yml.j2,sha256=cANbwkUkKEPQp-P3_BB_Llbt94457Ciagah2hOdySIM,1644
|
|
18
19
|
mas/cli/templates/pod-templates/best-effort/ibm-data-dictionary-assetdatadictionary.yml,sha256=8VG_FDFcEjWNaAOZTcS58Pe0tWOXC10SJLloNqzEMC8,757
|
|
19
20
|
mas/cli/templates/pod-templates/best-effort/ibm-mas-bascfg.yml,sha256=rkq8c2pVJoskgict9tCZzCchGSE2MBC-dJ47JyMYm7A,1559
|
|
@@ -86,16 +87,16 @@ mas/cli/templates/pod-templates/guaranteed/ibm-mas-suite.yml,sha256=aB-buCWUAqD0
|
|
|
86
87
|
mas/cli/templates/pod-templates/guaranteed/ibm-mas-visualinspection.yml,sha256=NiXBlXKe3j2RvroEcx3kCSuD92G6WB-jcpNAYGAg3T0,1975
|
|
87
88
|
mas/cli/templates/pod-templates/guaranteed/ibm-sls-licenseservice.yml,sha256=CKt1yim4L3ClloVcQDHiXLD8EMvmKXIltmDxJTxNdDs,546
|
|
88
89
|
mas/cli/uninstall/__init__.py,sha256=tGH_qJ5ZqcSFpIlObRiye3Y-r4zU8rEplYFjwuHwBTY,494
|
|
89
|
-
mas/cli/uninstall/app.py,sha256=
|
|
90
|
+
mas/cli/uninstall/app.py,sha256=obuGe-czCnXpa7j_N8QC9zZBuD0s3xXmNRUWt-f6omI,9981
|
|
90
91
|
mas/cli/uninstall/argParser.py,sha256=VO6_u8Qv_munelgZMxBw9mdJBwF_9j688b6nUxQD2RM,3298
|
|
91
92
|
mas/cli/update/__init__.py,sha256=tGH_qJ5ZqcSFpIlObRiye3Y-r4zU8rEplYFjwuHwBTY,494
|
|
92
|
-
mas/cli/update/app.py,sha256=
|
|
93
|
+
mas/cli/update/app.py,sha256=JEq2nMV6w5cunzC0sXDSNaB0Im9In3qGn9dw7OjO8Us,36666
|
|
93
94
|
mas/cli/update/argParser.py,sha256=k9-2i6KRvU4gxkiHJTgtjh1IkDaaLzgisrZe6-JORJA,3641
|
|
94
95
|
mas/cli/upgrade/__init__.py,sha256=tGH_qJ5ZqcSFpIlObRiye3Y-r4zU8rEplYFjwuHwBTY,494
|
|
95
|
-
mas/cli/upgrade/app.py,sha256=
|
|
96
|
+
mas/cli/upgrade/app.py,sha256=AjRI1uCVfl--edonhUb9ZTrp_QifJTQPp-ORT1S_uO8,5375
|
|
96
97
|
mas/cli/upgrade/argParser.py,sha256=jl8SU0mXDMAkpfqXaKE4MPNUmVoD0LSsvMUSJjU1dbQ,1881
|
|
97
|
-
mas_cli-10.
|
|
98
|
-
mas_cli-10.
|
|
99
|
-
mas_cli-10.
|
|
100
|
-
mas_cli-10.
|
|
101
|
-
mas_cli-10.
|
|
98
|
+
mas_cli-10.9.0.data/scripts/mas-cli,sha256=sEPYV6KUzcq4ukiTM4tMLsYKv-d9Ms0aJI9Uhjg_G9Y,3436
|
|
99
|
+
mas_cli-10.9.0.dist-info/METADATA,sha256=4IcXMYXLszFesAOhMmoZeHsyLIfp3Gq7kuwV3MzBqf4,2076
|
|
100
|
+
mas_cli-10.9.0.dist-info/WHEEL,sha256=UvcQYKBHoFqaQd6LKyqHw9fxEolWLQnlzP0h_LgJAfI,91
|
|
101
|
+
mas_cli-10.9.0.dist-info/top_level.txt,sha256=_Hlsp7pvMvyV14LFg-vk1hULq30j61EILnnxMFIhhc8,4
|
|
102
|
+
mas_cli-10.9.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|