mas-cli 11.2.1__py3-none-any.whl → 11.4.0__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 +45 -45
- mas/cli/templates/ibm-mas-tekton.yaml +441 -106
- mas/cli/uninstall/app.py +3 -1
- mas/cli/uninstall/argParser.py +7 -0
- mas/cli/update/app.py +29 -11
- mas/cli/update/argParser.py +28 -0
- {mas_cli-11.2.1.dist-info → mas_cli-11.4.0.dist-info}/METADATA +1 -1
- {mas_cli-11.2.1.dist-info → mas_cli-11.4.0.dist-info}/RECORD +13 -13
- {mas_cli-11.2.1.data → mas_cli-11.4.0.data}/scripts/mas-cli +0 -0
- {mas_cli-11.2.1.dist-info → mas_cli-11.4.0.dist-info}/WHEEL +0 -0
- {mas_cli-11.2.1.dist-info → mas_cli-11.4.0.dist-info}/top_level.txt +0 -0
mas/cli/__init__.py
CHANGED
mas/cli/cli.py
CHANGED
mas/cli/install/app.py
CHANGED
|
@@ -190,7 +190,7 @@ class InstallApp(BaseApp, InstallSettingsMixin, InstallSummarizerMixin, ConfigGe
|
|
|
190
190
|
self.yesOrNo("Do you want to allow special characters for user IDs and usernames?", "mas_special_characters")
|
|
191
191
|
|
|
192
192
|
def configCP4D(self):
|
|
193
|
-
if self.getParam("mas_catalog_version") in ["v9-240625-amd64", "v9-240730-amd64", "v9-240827-amd64"]:
|
|
193
|
+
if self.getParam("mas_catalog_version") in ["v9-240625-amd64", "v9-240730-amd64", "v9-240827-amd64", "v9-241003-amd64"]:
|
|
194
194
|
logger.debug(f"Using automatic CP4D product version: {self.getParam('cpd_product_version')}")
|
|
195
195
|
self.setParam("cpd_product_version", "4.8.0")
|
|
196
196
|
elif self.getParam("cpd_product_version") == "":
|
|
@@ -929,6 +929,45 @@ class InstallApp(BaseApp, InstallSettingsMixin, InstallSummarizerMixin, ConfigGe
|
|
|
929
929
|
self.installOptions = [
|
|
930
930
|
{
|
|
931
931
|
"#": 1,
|
|
932
|
+
"catalog": "v9-241003-amd64",
|
|
933
|
+
"release": "9.0.x",
|
|
934
|
+
"core": "9.0.3",
|
|
935
|
+
"assist": "9.0.2",
|
|
936
|
+
"iot": "9.0.3",
|
|
937
|
+
"manage": "9.0.3",
|
|
938
|
+
"monitor": "9.0.3",
|
|
939
|
+
"optimizer": "9.0.3",
|
|
940
|
+
"predict": "9.0.2",
|
|
941
|
+
"inspection": "9.0.3"
|
|
942
|
+
},
|
|
943
|
+
{
|
|
944
|
+
"#": 2,
|
|
945
|
+
"catalog": "v9-241003-amd64",
|
|
946
|
+
"release": "8.11.x",
|
|
947
|
+
"core": "8.11.15",
|
|
948
|
+
"assist": "8.8.6",
|
|
949
|
+
"iot": "8.8.13",
|
|
950
|
+
"manage": "8.7.12",
|
|
951
|
+
"monitor": "8.11.11",
|
|
952
|
+
"optimizer": "8.5.9",
|
|
953
|
+
"predict": "8.9.5",
|
|
954
|
+
"inspection": "8.9.6"
|
|
955
|
+
},
|
|
956
|
+
{
|
|
957
|
+
"#": 3,
|
|
958
|
+
"catalog": "v9-241003-amd64",
|
|
959
|
+
"release": "8.10.x",
|
|
960
|
+
"core": "8.10.18",
|
|
961
|
+
"assist": "8.7.7",
|
|
962
|
+
"iot": "8.7.17",
|
|
963
|
+
"manage": "8.6.18",
|
|
964
|
+
"monitor": "8.10.14",
|
|
965
|
+
"optimizer": "8.4.10",
|
|
966
|
+
"predict": "8.8.3",
|
|
967
|
+
"inspection": "8.8.4"
|
|
968
|
+
},
|
|
969
|
+
{
|
|
970
|
+
"#": 4,
|
|
932
971
|
"catalog": "v9-240827-amd64",
|
|
933
972
|
"release": "9.0.x",
|
|
934
973
|
"core": "9.0.2",
|
|
@@ -941,7 +980,7 @@ class InstallApp(BaseApp, InstallSettingsMixin, InstallSummarizerMixin, ConfigGe
|
|
|
941
980
|
"inspection": "9.0.2"
|
|
942
981
|
},
|
|
943
982
|
{
|
|
944
|
-
"#":
|
|
983
|
+
"#": 5,
|
|
945
984
|
"catalog": "v9-240827-amd64",
|
|
946
985
|
"release": "8.11.x",
|
|
947
986
|
"core": "8.11.14",
|
|
@@ -954,7 +993,7 @@ class InstallApp(BaseApp, InstallSettingsMixin, InstallSummarizerMixin, ConfigGe
|
|
|
954
993
|
"inspection": "8.9.5"
|
|
955
994
|
},
|
|
956
995
|
{
|
|
957
|
-
"#":
|
|
996
|
+
"#": 6,
|
|
958
997
|
"catalog": "v9-240827-amd64",
|
|
959
998
|
"release": "8.10.x",
|
|
960
999
|
"core": "8.10.17",
|
|
@@ -967,7 +1006,7 @@ class InstallApp(BaseApp, InstallSettingsMixin, InstallSummarizerMixin, ConfigGe
|
|
|
967
1006
|
"inspection": "8.8.4"
|
|
968
1007
|
},
|
|
969
1008
|
{
|
|
970
|
-
"#":
|
|
1009
|
+
"#": 7,
|
|
971
1010
|
"catalog": "v9-240730-amd64",
|
|
972
1011
|
"release": "9.0.x",
|
|
973
1012
|
"core": "9.0.1",
|
|
@@ -980,7 +1019,7 @@ class InstallApp(BaseApp, InstallSettingsMixin, InstallSummarizerMixin, ConfigGe
|
|
|
980
1019
|
"inspection": "9.0.0"
|
|
981
1020
|
},
|
|
982
1021
|
{
|
|
983
|
-
"#":
|
|
1022
|
+
"#": 8,
|
|
984
1023
|
"catalog": "v9-240730-amd64",
|
|
985
1024
|
"release": "8.11.x",
|
|
986
1025
|
"core": "8.11.13",
|
|
@@ -993,7 +1032,7 @@ class InstallApp(BaseApp, InstallSettingsMixin, InstallSummarizerMixin, ConfigGe
|
|
|
993
1032
|
"inspection": "8.9.4"
|
|
994
1033
|
},
|
|
995
1034
|
{
|
|
996
|
-
"#":
|
|
1035
|
+
"#": 9,
|
|
997
1036
|
"catalog": "v9-240730-amd64",
|
|
998
1037
|
"release": "8.10.x",
|
|
999
1038
|
"core": "8.10.16",
|
|
@@ -1004,45 +1043,6 @@ class InstallApp(BaseApp, InstallSettingsMixin, InstallSummarizerMixin, ConfigGe
|
|
|
1004
1043
|
"optimizer": "8.4.8",
|
|
1005
1044
|
"predict": "8.8.3",
|
|
1006
1045
|
"inspection": "8.8.4"
|
|
1007
|
-
},
|
|
1008
|
-
{
|
|
1009
|
-
"#": 7,
|
|
1010
|
-
"catalog": "v9-240625-amd64",
|
|
1011
|
-
"release": "9.0.x",
|
|
1012
|
-
"core": "9.0.0",
|
|
1013
|
-
"assist": "9.0.0",
|
|
1014
|
-
"iot": "9.0.0",
|
|
1015
|
-
"manage": "9.0.0",
|
|
1016
|
-
"monitor": "9.0.0",
|
|
1017
|
-
"optimizer": "9.0.0",
|
|
1018
|
-
"predict": "9.0.0",
|
|
1019
|
-
"inspection": "9.0.0"
|
|
1020
|
-
},
|
|
1021
|
-
{
|
|
1022
|
-
"#": 8,
|
|
1023
|
-
"catalog": "v9-240625-amd64",
|
|
1024
|
-
"release": "8.11.x",
|
|
1025
|
-
"core": "8.11.12",
|
|
1026
|
-
"assist": "N/A",
|
|
1027
|
-
"iot": "8.8.10",
|
|
1028
|
-
"manage": "8.7.9",
|
|
1029
|
-
"monitor": "8.11.8",
|
|
1030
|
-
"optimizer": "8.5.6",
|
|
1031
|
-
"predict": "8.9.3",
|
|
1032
|
-
"inspection": "8.9.3"
|
|
1033
|
-
},
|
|
1034
|
-
{
|
|
1035
|
-
"#": 9,
|
|
1036
|
-
"catalog": "v9-240625-amd64",
|
|
1037
|
-
"release": "8.10.x",
|
|
1038
|
-
"core": "8.10.15",
|
|
1039
|
-
"assist": "N/A",
|
|
1040
|
-
"iot": "8.7.14",
|
|
1041
|
-
"manage": "8.6.15",
|
|
1042
|
-
"monitor": "8.10.11",
|
|
1043
|
-
"optimizer": "8.4.7",
|
|
1044
|
-
"predict": "N/A",
|
|
1045
|
-
"inspection": "8.8.4"
|
|
1046
1046
|
}
|
|
1047
1047
|
]
|
|
1048
1048
|
|