mas-cli 15.1.1__py3-none-any.whl → 15.1.3__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/aiservice/install/app.py +21 -15
- mas/cli/cli.py +1 -1
- mas/cli/templates/ibm-mas-tekton.yaml +162 -162
- {mas_cli-15.1.1.dist-info → mas_cli-15.1.3.dist-info}/METADATA +1 -1
- {mas_cli-15.1.1.dist-info → mas_cli-15.1.3.dist-info}/RECORD +9 -9
- {mas_cli-15.1.1.data → mas_cli-15.1.3.data}/scripts/mas-cli +0 -0
- {mas_cli-15.1.1.dist-info → mas_cli-15.1.3.dist-info}/WHEEL +0 -0
- {mas_cli-15.1.1.dist-info → mas_cli-15.1.3.dist-info}/top_level.txt +0 -0
mas/cli/__init__.py
CHANGED
mas/cli/aiservice/install/app.py
CHANGED
|
@@ -144,24 +144,11 @@ class AiServiceInstallApp(BaseApp, aiServiceInstallArgBuilderMixin, aiServiceIns
|
|
|
144
144
|
self.storageClassProvider = "custom"
|
|
145
145
|
self.slsLicenseFileLocal = None
|
|
146
146
|
|
|
147
|
-
self.printDescription([
|
|
148
|
-
"The AI Broker (introduced with MAS 9.0) has been replaced with Maximo AI Service as of Aug 1 2025.",
|
|
149
|
-
"To continue using the features that were enabled by the AI broker after that time, you must deploy and use Maximo AI Service 9.1:",
|
|
150
|
-
" - Maximo AI Service 9.1 is compatible with both Maximo Application Suite 9.0 and 9.1 releases.",
|
|
151
|
-
" - If Maximo AI Service is deployed with Maximo Application Suite 9.0, you can use only the AI features that were included in Maximo Application Suite 9.0.",
|
|
152
|
-
"The Maximo AI Service 9.1 includes a limited use license to watsonx.ai and incurs an additional AppPoint cost"
|
|
153
|
-
])
|
|
154
|
-
|
|
155
147
|
# Catalog
|
|
156
148
|
self.configCatalog()
|
|
157
149
|
if not self.devMode:
|
|
158
|
-
self.
|
|
159
|
-
|
|
160
|
-
"We are busy putting the finishing touches on Maximo AI Service ahead of a re-launch planned for the August 2025 catalog update."
|
|
161
|
-
])
|
|
162
|
-
exit(0)
|
|
163
|
-
# self.validateCatalogSource()
|
|
164
|
-
# self.licensePrompt()
|
|
150
|
+
self.validateCatalogSource()
|
|
151
|
+
self.licensePrompt()
|
|
165
152
|
|
|
166
153
|
# Storage Classes
|
|
167
154
|
self.configStorageClasses()
|
|
@@ -382,6 +369,25 @@ class AiServiceInstallApp(BaseApp, aiServiceInstallArgBuilderMixin, aiServiceIns
|
|
|
382
369
|
self.licenseAccepted = args.accept_license
|
|
383
370
|
self.devMode = args.dev_mode
|
|
384
371
|
|
|
372
|
+
self.printDescription([
|
|
373
|
+
"<B><U>AI Broker 9.0 Deprecation Notice</U></B>",
|
|
374
|
+
"",
|
|
375
|
+
"Maximo AI Broker (introduced with MAS 9.0) has been replaced with Maximo AI Service as of Aug 1 2025",
|
|
376
|
+
"To continue using the features that were enabled by the AI broker after that time, you must deploy and use Maximo AI Service 9.1:",
|
|
377
|
+
" - Maximo AI Service 9.1 is compatible with both Maximo Application Suite 9.0 and 9.1 releases",
|
|
378
|
+
" - If Maximo AI Service is deployed with Maximo Application Suite 9.0, you can use only the AI features that were included in Maximo Application Suite 9.0",
|
|
379
|
+
"",
|
|
380
|
+
"Note: Maximo AI Service 9.1 includes a limited-use license to watsonx.ai and incurs an additional AppPoint cost"
|
|
381
|
+
])
|
|
382
|
+
|
|
383
|
+
if not self.devMode:
|
|
384
|
+
self.printDescription([
|
|
385
|
+
"",
|
|
386
|
+
"<ForestGreen>Coming Soon! We are busy putting the finishing touches on Maximo AI Service 9.1 ahead of a re-launch planned for the August 2025 catalog update</ForestGreen>",
|
|
387
|
+
""
|
|
388
|
+
])
|
|
389
|
+
exit(1)
|
|
390
|
+
|
|
385
391
|
# Set image_pull_policy of the CLI in interactive mode
|
|
386
392
|
if args.image_pull_policy and args.image_pull_policy != "":
|
|
387
393
|
self.setParam("image_pull_policy", args.image_pull_policy)
|
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 = "15.1.
|
|
120
|
+
self.version = "15.1.3"
|
|
121
121
|
self.h1count = 0
|
|
122
122
|
self.h2count = 0
|
|
123
123
|
|