mas-cli 15.6.1__py3-none-any.whl → 15.6.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/cli.py +1 -1
- mas/cli/install/app.py +1 -1
- mas/cli/install/summarizer.py +1 -2
- mas/cli/templates/ibm-mas-tekton.yaml +1102 -1214
- {mas_cli-15.6.1.dist-info → mas_cli-15.6.3.dist-info}/METADATA +1 -1
- {mas_cli-15.6.1.dist-info → mas_cli-15.6.3.dist-info}/RECORD +10 -10
- {mas_cli-15.6.1.data → mas_cli-15.6.3.data}/scripts/mas-cli +0 -0
- {mas_cli-15.6.1.dist-info → mas_cli-15.6.3.dist-info}/WHEEL +0 -0
- {mas_cli-15.6.1.dist-info → mas_cli-15.6.3.dist-info}/top_level.txt +0 -0
mas/cli/__init__.py
CHANGED
mas/cli/cli.py
CHANGED
|
@@ -118,7 +118,7 @@ class BaseApp(PrintMixin, PromptMixin):
|
|
|
118
118
|
logging.getLogger('asyncio').setLevel(logging.INFO)
|
|
119
119
|
|
|
120
120
|
# Supports extended semver, unlike mas.cli.__version__
|
|
121
|
-
self.version = "15.6.
|
|
121
|
+
self.version = "15.6.3"
|
|
122
122
|
self.h1count = 0
|
|
123
123
|
self.h2count = 0
|
|
124
124
|
|
mas/cli/install/app.py
CHANGED
|
@@ -1146,7 +1146,7 @@ class InstallApp(BaseApp, InstallSettingsMixin, InstallSummarizerMixin, ConfigGe
|
|
|
1146
1146
|
self.licensePrompt()
|
|
1147
1147
|
|
|
1148
1148
|
# Version before 9.1 cannot have empty components
|
|
1149
|
-
if (self.getParam("mas_channel").startswith("8.") or self.getParam("mas_channel").startswith("9.0")) and self.getParam("mas_appws_components") == "":
|
|
1149
|
+
if (self.getParam("mas_channel").startswith("8.") or self.getParam("mas_channel").startswith("9.0")) and (self.getParam("mas_app_channel_manage") is not None and self.getParam("mas_app_channel_manage") != "") and self.getParam("mas_appws_components") == "":
|
|
1150
1150
|
self.fatalError("--manage-components must be set for versions earlier than 9.1.0")
|
|
1151
1151
|
|
|
1152
1152
|
# An error should be raised if "health" is not specified when installing Predict.
|
mas/cli/install/summarizer.py
CHANGED
|
@@ -193,8 +193,7 @@ class InstallSummarizerMixin():
|
|
|
193
193
|
self.printParamSummary("+ Additional Languages", "mas_app_settings_secondary_langs")
|
|
194
194
|
|
|
195
195
|
print_formatted_text(HTML(" <SkyBlue>+ Database Settings</SkyBlue>"))
|
|
196
|
-
self.printParamSummary(" + Schema", "
|
|
197
|
-
self.printParamSummary(" + Username", "mas_app_settings_db2_schema")
|
|
196
|
+
self.printParamSummary(" + Schema", "mas_app_settings_db2_schema")
|
|
198
197
|
self.printParamSummary(" + Tablespace", "mas_app_settings_tablespace")
|
|
199
198
|
self.printParamSummary(" + Indexspace", "mas_app_settings_indexspace")
|
|
200
199
|
else:
|