mas-cli 15.1.11__py3-none-any.whl → 15.1.13__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 +0 -2
- mas/cli/aiservice/install/argBuilder.py +0 -2
- mas/cli/aiservice/install/argParser.py +0 -7
- mas/cli/aiservice/install/params.py +0 -1
- mas/cli/aiservice/install/summarizer.py +0 -1
- mas/cli/cli.py +1 -1
- mas/cli/templates/ibm-mas-tekton.yaml +161 -173
- {mas_cli-15.1.11.dist-info → mas_cli-15.1.13.dist-info}/METADATA +1 -1
- {mas_cli-15.1.11.dist-info → mas_cli-15.1.13.dist-info}/RECORD +13 -13
- {mas_cli-15.1.11.data → mas_cli-15.1.13.data}/scripts/mas-cli +0 -0
- {mas_cli-15.1.11.dist-info → mas_cli-15.1.13.dist-info}/WHEEL +0 -0
- {mas_cli-15.1.11.dist-info → mas_cli-15.1.13.dist-info}/top_level.txt +0 -0
mas/cli/__init__.py
CHANGED
mas/cli/aiservice/install/app.py
CHANGED
|
@@ -556,7 +556,6 @@ class AiServiceInstallApp(BaseApp, aiServiceInstallArgBuilderMixin, aiServiceIns
|
|
|
556
556
|
self.promptForString("Storage ssl", "aiservice_s3_ssl")
|
|
557
557
|
self.promptForString("Storage region", "aiservice_s3_region")
|
|
558
558
|
self.promptForString("Storage bucket prefix", "aiservice_s3_bucket_prefix")
|
|
559
|
-
self.promptForString("Storage pipelines bucket", "aiservice_s3_pipelines_bucket")
|
|
560
559
|
self.promptForString("Storage tenants bucket", "aiservice_s3_tenants_bucket")
|
|
561
560
|
self.promptForString("Storage templates bucket", "aiservice_s3_templates_bucket")
|
|
562
561
|
|
|
@@ -626,7 +625,6 @@ class AiServiceInstallApp(BaseApp, aiServiceInstallArgBuilderMixin, aiServiceIns
|
|
|
626
625
|
self.setParam("aiservice_s3_bucket_prefix", "aiservice")
|
|
627
626
|
|
|
628
627
|
# Set default bucket names
|
|
629
|
-
self.setParam("aiservice_s3_pipelines_bucket", "km-pipelines")
|
|
630
628
|
self.setParam("aiservice_s3_tenants_bucket", "km-tenants")
|
|
631
629
|
self.setParam("aiservice_s3_templates_bucket", "km-templates")
|
|
632
630
|
|
|
@@ -121,8 +121,6 @@ class aiServiceInstallArgBuilderMixin():
|
|
|
121
121
|
command += f" --s3-region \"{self.getParam('aiservice_s3_region')}\"{newline}"
|
|
122
122
|
if self.getParam('aiservice_s3_bucket_prefix') != "":
|
|
123
123
|
command += f" --s3-bucket-prefix \"{self.getParam('aiservice_s3_bucket_prefix')}\"{newline}"
|
|
124
|
-
if self.getParam('aiservice_s3_pipelines_bucket') != "":
|
|
125
|
-
command += f" --s3-pipelines-bucket \"{self.getParam('aiservice_s3_pipelines_bucket')}\"{newline}"
|
|
126
124
|
if self.getParam('aiservice_s3_tenants_bucket') != "":
|
|
127
125
|
command += f" --s3-tenants-bucket \"{self.getParam('aiservice_s3_tenants_bucket')}\"{newline}"
|
|
128
126
|
if self.getParam('aiservice_s3_templates_bucket') != "":
|
|
@@ -257,13 +257,6 @@ s3ArgGroup.add_argument(
|
|
|
257
257
|
|
|
258
258
|
# S3 - Bucket Naming
|
|
259
259
|
# -----------------------------------------------------------------------------
|
|
260
|
-
s3ArgGroup.add_argument(
|
|
261
|
-
"--s3-pipelines-bucket",
|
|
262
|
-
dest="aiservice_s3_pipelines_bucket",
|
|
263
|
-
required=False,
|
|
264
|
-
default="km-pipelines",
|
|
265
|
-
help="Name of the S3 bucket for pipelines storage"
|
|
266
|
-
)
|
|
267
260
|
s3ArgGroup.add_argument(
|
|
268
261
|
"--s3-tenants-bucket",
|
|
269
262
|
dest="aiservice_s3_tenants_bucket",
|
|
@@ -58,7 +58,6 @@ class aiServiceInstallSummarizerMixin():
|
|
|
58
58
|
self.printParamSummary("Storage ssl", "aiservice_s3_ssl")
|
|
59
59
|
self.printParamSummary("Storage region", "aiservice_s3_region")
|
|
60
60
|
self.printParamSummary("S3 bucket prefix", "aiservice_s3_bucket_prefix")
|
|
61
|
-
self.printParamSummary("Storage pipelines bucket", "aiservice_s3_pipelines_bucket")
|
|
62
61
|
self.printParamSummary("Storage tenants bucket", "aiservice_s3_tenants_bucket")
|
|
63
62
|
self.printParamSummary("Storage templates bucket", "aiservice_s3_templates_bucket")
|
|
64
63
|
print()
|
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.13"
|
|
121
121
|
self.h1count = 0
|
|
122
122
|
self.h2count = 0
|
|
123
123
|
|