mas-cli 13.16.0__py3-none-any.whl → 13.17.2__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/__init__.py +11 -0
- mas/cli/aiservice/install/app.py +810 -0
- mas/cli/aiservice/install/argBuilder.py +232 -0
- mas/cli/aiservice/install/argParser.py +742 -0
- mas/cli/aiservice/install/params.py +120 -0
- mas/cli/aiservice/install/summarizer.py +193 -0
- mas/cli/cli.py +19 -3
- mas/cli/gencfg.py +23 -0
- mas/cli/install/app.py +129 -30
- mas/cli/install/argBuilder.py +57 -9
- mas/cli/install/argParser.py +116 -140
- mas/cli/install/catalogs.py +7 -4
- mas/cli/install/params.py +20 -3
- mas/cli/install/settings/additionalConfigs.py +4 -0
- mas/cli/install/settings/db2Settings.py +82 -36
- mas/cli/install/settings/manageSettings.py +9 -33
- mas/cli/install/settings/mongodbSettings.py +1 -1
- mas/cli/install/summarizer.py +36 -27
- mas/cli/templates/facilities-configs.yml.j2 +25 -0
- mas/cli/templates/ibm-mas-tekton.yaml +11693 -4677
- mas/cli/update/app.py +11 -6
- mas/cli/upgrade/app.py +42 -8
- mas/cli/upgrade/argParser.py +7 -0
- mas/cli/upgrade/settings/__init__.py +19 -0
- mas/cli/validators.py +13 -0
- {mas_cli-13.16.0.data → mas_cli-13.17.2.data}/scripts/mas-cli +4 -0
- {mas_cli-13.16.0.dist-info → mas_cli-13.17.2.dist-info}/METADATA +1 -1
- {mas_cli-13.16.0.dist-info → mas_cli-13.17.2.dist-info}/RECORD +31 -23
- {mas_cli-13.16.0.dist-info → mas_cli-13.17.2.dist-info}/WHEEL +1 -1
- {mas_cli-13.16.0.dist-info → mas_cli-13.17.2.dist-info}/top_level.txt +0 -0
mas/cli/__init__.py
CHANGED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# *****************************************************************************
|
|
2
|
+
# Copyright (c) 2024, 2025 IBM Corporation and other Contributors.
|
|
3
|
+
#
|
|
4
|
+
# All rights reserved. This program and the accompanying materials
|
|
5
|
+
# are made available under the terms of the Eclipse Public License v1.0
|
|
6
|
+
# which accompanies this distribution, and is available at
|
|
7
|
+
# http://www.eclipse.org/legal/epl-v10.html
|
|
8
|
+
#
|
|
9
|
+
# *****************************************************************************
|
|
10
|
+
|
|
11
|
+
from ...cli import BaseApp # noqa: F401
|