mas-cli 15.1.3__py3-none-any.whl → 15.1.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/aiservice/install/app.py +4 -3
- mas/cli/cli.py +1 -1
- mas/cli/templates/ibm-mas-tekton.yaml +162 -194
- {mas_cli-15.1.3.dist-info → mas_cli-15.1.4.dist-info}/METADATA +1 -1
- {mas_cli-15.1.3.dist-info → mas_cli-15.1.4.dist-info}/RECORD +9 -9
- {mas_cli-15.1.3.data → mas_cli-15.1.4.data}/scripts/mas-cli +0 -0
- {mas_cli-15.1.3.dist-info → mas_cli-15.1.4.dist-info}/WHEEL +0 -0
- {mas_cli-15.1.3.dist-info → mas_cli-15.1.4.dist-info}/top_level.txt +0 -0
mas/cli/__init__.py
CHANGED
mas/cli/aiservice/install/app.py
CHANGED
|
@@ -121,7 +121,7 @@ class AiServiceInstallApp(BaseApp, aiServiceInstallArgBuilderMixin, aiServiceIns
|
|
|
121
121
|
|
|
122
122
|
@logMethodCall
|
|
123
123
|
def configAibroker(self):
|
|
124
|
-
self.printH1("Configure
|
|
124
|
+
self.printH1("Configure AI Service Instance")
|
|
125
125
|
self.printDescription([
|
|
126
126
|
"Instance ID restrictions:",
|
|
127
127
|
" - Must be 3-12 characters long",
|
|
@@ -143,6 +143,7 @@ class AiServiceInstallApp(BaseApp, aiServiceInstallArgBuilderMixin, aiServiceIns
|
|
|
143
143
|
|
|
144
144
|
self.storageClassProvider = "custom"
|
|
145
145
|
self.slsLicenseFileLocal = None
|
|
146
|
+
self.showAdvancedOptions = True
|
|
146
147
|
|
|
147
148
|
# Catalog
|
|
148
149
|
self.configCatalog()
|
|
@@ -383,7 +384,7 @@ class AiServiceInstallApp(BaseApp, aiServiceInstallArgBuilderMixin, aiServiceIns
|
|
|
383
384
|
if not self.devMode:
|
|
384
385
|
self.printDescription([
|
|
385
386
|
"",
|
|
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
|
+
"<ForestGreen>Coming Soon! We are busy putting the finishing touches on Maximo AI Service 9.1 ahead of a re-launch planned for the 28 August 2025 catalog update</ForestGreen>",
|
|
387
388
|
""
|
|
388
389
|
])
|
|
389
390
|
exit(1)
|
|
@@ -874,7 +875,7 @@ class AiServiceInstallApp(BaseApp, aiServiceInstallArgBuilderMixin, aiServiceIns
|
|
|
874
875
|
|
|
875
876
|
@logMethodCall
|
|
876
877
|
def configAppChannel(self, appId):
|
|
877
|
-
self.params[
|
|
878
|
+
self.params["aiservice_channel"] = prompt(HTML('<Yellow>Custom channel for AI Service</Yellow> '))
|
|
878
879
|
|
|
879
880
|
@logMethodCall
|
|
880
881
|
def configOperationMode(self):
|
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.4"
|
|
121
121
|
self.h1count = 0
|
|
122
122
|
self.h2count = 0
|
|
123
123
|
|