mas-cli 11.5.0__py3-none-any.whl → 11.7.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.

@@ -96,7 +96,15 @@ class installArgBuilderMixin():
96
96
  command += f" --disable-ca-trust{newline}"
97
97
 
98
98
  if self.getParam('mas_manual_cert_mgmt') is True:
99
- command += f" --manual-certificates \"{self.getParam('mas_manual_cert_dir')}\"{newline}"
99
+ command += f" --manual-certificates \"{self.manualCertsDir}\"{newline}"
100
+
101
+ if self.getParam('mas_domain') is True:
102
+ command += f" --domain \"{self.getParam('mas_domain')}\"{newline}"
103
+
104
+ if self.getParam('--dns-provider') == "cis":
105
+ command += f" --dns-provider cis --cis-apikey \"{self.getParam('cis_apikey')}"
106
+ command += f" --cis-subdomain \"{self.getParam('cis_subdomain')}"
107
+ command += f" --cis-crn \"{self.getParam('cis_crn')}\"{newline}"
100
108
 
101
109
  if self.getParam('mas_enable_walkme') == "false":
102
110
  command += f" --disable-walkme{newline}"
@@ -111,6 +119,8 @@ class installArgBuilderMixin():
111
119
  # IBM Suite License Service
112
120
  # -----------------------------------------------------------------------------
113
121
  command += f" --license-file \"{self.slsLicenseFileLocal}\"{newline}"
122
+ if self.getParam("sls_namespace") != "ibm-sls":
123
+ command += f" --sls-namespace \"{self.getParam('sls_namespace')}\"{newline}"
114
124
 
115
125
  # IBM Data Reporting Operator (DRO)
116
126
  # -----------------------------------------------------------------------------
@@ -307,7 +317,7 @@ class installArgBuilderMixin():
307
317
  # -----------------------------------------------------------------------------
308
318
  if self.getParam('cos_type') != "":
309
319
  command += f" --cos \"{self.getParam('cos_type')}\""
310
- if self.getParam('cos_resourcegroup') != "":
320
+ if self.getParam('ibmcos_resourcegroup') != "":
311
321
  command += f" --cos-resourcegroup \"{self.getParam('cos_resourcegroup')}\""
312
322
  command += newline
313
323
 
@@ -366,6 +376,8 @@ class installArgBuilderMixin():
366
376
  command += f" --skip-pre-check{newline}"
367
377
  if self.getParam('skip_grafana_install') is True:
368
378
  command += f" --skip-grafana-install{newline}"
379
+ if self.getParam('image_pull_policy') != "":
380
+ command += f" --image-pull-policy {self.getParam('image_pull_policy')}{newline}"
369
381
 
370
382
  command += " --accept-license --no-confirm"
371
383
  return command
@@ -164,6 +164,13 @@ masAdvancedArgGroup.add_argument(
164
164
  required=False,
165
165
  help="Path to directory containing the certificates to be applied"
166
166
  )
167
+ masAdvancedArgGroup.add_argument(
168
+ "--domain",
169
+ dest="mas_domain",
170
+ required=False,
171
+ help="Configure MAS with a custom domain"
172
+ )
173
+
167
174
  masAdvancedArgGroup.add_argument(
168
175
  "--disable-walkme",
169
176
  dest="mas_enable_walkme",
@@ -173,6 +180,42 @@ masAdvancedArgGroup.add_argument(
173
180
  const="false"
174
181
  )
175
182
 
183
+ masAdvancedArgGroup.add_argument(
184
+ "--dns-provider",
185
+ dest="dns_provider",
186
+ required=False,
187
+ help="Enable Automatic DNS management (see DNS Configuration options)",
188
+ choices=["cloudflare", "cis", "route53"]
189
+ )
190
+
191
+ # DNS Configuration - IBM CIS
192
+ # -----------------------------------------------------------------------------
193
+ cisArgGroup = installArgParser.add_argument_group("DNS Configuration - CIS")
194
+ cisArgGroup.add_argument(
195
+ "--cis-email",
196
+ dest="cis_email",
197
+ required=False,
198
+ help="Required when DNS provider is CIS and you want to use a Let's Encrypt ClusterIssuer"
199
+ )
200
+ cisArgGroup.add_argument(
201
+ "--cis-apikey",
202
+ dest="cis_apikey",
203
+ required=False,
204
+ help="Required when DNS provider is CIS"
205
+ )
206
+ cisArgGroup.add_argument(
207
+ "--cis-crn",
208
+ dest="cis_crn",
209
+ required=False,
210
+ help="Required when DNS provider is CIS"
211
+ )
212
+ cisArgGroup.add_argument(
213
+ "--cis-subdomain",
214
+ dest="cis_subdomain",
215
+ required=False,
216
+ help="Optionally setup MAS instance as a subdomain under a multi-tenant CIS DNS record"
217
+ )
218
+
176
219
  # Storage
177
220
  # -----------------------------------------------------------------------------
178
221
  storageArgGroup = installArgParser.add_argument_group("Storage")
@@ -207,6 +250,12 @@ slsArgGroup.add_argument(
207
250
  help="Path to MAS license file",
208
251
  type=lambda x: isValidFile(installArgParser, x)
209
252
  )
253
+ slsArgGroup.add_argument(
254
+ "--sls-namespace",
255
+ required=False,
256
+ help="Customize the SLS install namespace",
257
+ default="ibm-sls"
258
+ )
210
259
 
211
260
  # IBM Data Reporting Operator (DRO)
212
261
  # -----------------------------------------------------------------------------
@@ -244,7 +293,6 @@ mongoArgGroup.add_argument(
244
293
  help=""
245
294
  )
246
295
 
247
-
248
296
  # OCP Configuration
249
297
  # -----------------------------------------------------------------------------
250
298
  ocpArgGroup = installArgParser.add_argument_group("OCP Configuration")
@@ -298,6 +346,147 @@ masAppsArgGroup.add_argument(
298
346
  choices=["full", "limited"],
299
347
  help="Install plan for Maximo Optimizer"
300
348
  )
349
+ masAppsArgGroup.add_argument(
350
+ "--aibroker-channel",
351
+ required=False,
352
+ help="Subscription channel for Maximo Ai Broker"
353
+ )
354
+
355
+ # AI Broker
356
+ # -----------------------------------------------------------------------------
357
+ aibrokerArgGroup = installArgParser.add_argument_group("Maximo AI Broker")
358
+ aibrokerArgGroup.add_argument(
359
+ "--mas-aibroker-storage-provider",
360
+ dest="mas_aibroker_storage_provider",
361
+ required=False,
362
+ help="Customize Manage database encryption keys"
363
+ )
364
+ aibrokerArgGroup.add_argument(
365
+ "--mas-aibroker-storage-accesskey",
366
+ dest="mas_aibroker_storage_accesskey",
367
+ required=False,
368
+ help="Customize Manage database encryption keys"
369
+ )
370
+ aibrokerArgGroup.add_argument(
371
+ "--mas-aibroker-storage-secretkey",
372
+ dest="mas_aibroker_storage_secretkey",
373
+ required=False,
374
+ help="Customize Manage database encryption keys"
375
+ )
376
+ aibrokerArgGroup.add_argument(
377
+ "--mas-aibroker-storage-host",
378
+ dest="mas_aibroker_storage_host",
379
+ required=False,
380
+ help="Customize Manage database encryption keys"
381
+ )
382
+ aibrokerArgGroup.add_argument(
383
+ "--mas-aibroker-storage-port",
384
+ dest="mas_aibroker_storage_port",
385
+ required=False,
386
+ help="Customize Manage database encryption keys"
387
+ )
388
+ aibrokerArgGroup.add_argument(
389
+ "--mas-aibroker-storage-ssl",
390
+ dest="mas_aibroker_storage_ssl",
391
+ required=False,
392
+ help="Customize Manage database encryption keys"
393
+ )
394
+ aibrokerArgGroup.add_argument(
395
+ "--mas-aibroker-storage-region",
396
+ dest="mas_aibroker_storage_region",
397
+ required=False,
398
+ help="Customize Manage database encryption keys"
399
+ )
400
+ aibrokerArgGroup.add_argument(
401
+ "--mas-aibroker-storage-pipelines-bucket",
402
+ dest="mas_aibroker_storage_pipelines_bucket",
403
+ required=False,
404
+ help="Customize Manage database encryption keys"
405
+ )
406
+ aibrokerArgGroup.add_argument(
407
+ "--mas-aibroker-storage-tenants-bucket",
408
+ dest="mas_aibroker_storage_tenants_bucket",
409
+ required=False,
410
+ help="Customize Manage database encryption keys"
411
+ )
412
+ aibrokerArgGroup.add_argument(
413
+ "--mas-aibroker-storage-templates-bucket",
414
+ dest="mas_aibroker_storage_templates_bucket",
415
+ required=False,
416
+ help="Customize Manage database encryption keys"
417
+ )
418
+ aibrokerArgGroup.add_argument(
419
+ "--mas-aibroker-tenant-name",
420
+ dest="mas_aibroker_tenant_name",
421
+ required=False,
422
+ help="Customize Manage database encryption keys"
423
+ )
424
+ aibrokerArgGroup.add_argument(
425
+ "--mas-aibroker-watsonxai-apikey",
426
+ dest="mas_aibroker_watsonxai_apikey",
427
+ required=False,
428
+ help="Customize Manage database encryption keys"
429
+ )
430
+ aibrokerArgGroup.add_argument(
431
+ "--mas-aibroker-watsonxai-url",
432
+ dest="mas_aibroker_watsonxai_url",
433
+ required=False,
434
+ help="Customize Manage database encryption keys"
435
+ )
436
+ aibrokerArgGroup.add_argument(
437
+ "--mas-aibroker-watsonxai-project-id",
438
+ dest="mas_aibroker_watsonxai_project_id",
439
+ required=False,
440
+ help="Customize Manage database encryption keys"
441
+ )
442
+ aibrokerArgGroup.add_argument(
443
+ "--mas-aibroker-watsonx-action",
444
+ dest="mas_aibroker_watsonx_action",
445
+ required=False,
446
+ help="Customize Manage database encryption keys"
447
+ )
448
+ aibrokerArgGroup.add_argument(
449
+ "--mas-aibroker-db-host",
450
+ dest="mas_aibroker_db_host",
451
+ required=False,
452
+ help="Customize Manage database encryption keys"
453
+ )
454
+ aibrokerArgGroup.add_argument(
455
+ "--mas-aibroker-db-port",
456
+ dest="mas_aibroker_db_port",
457
+ required=False,
458
+ help="Customize Manage database encryption keys"
459
+ )
460
+ aibrokerArgGroup.add_argument(
461
+ "--mas-aibroker-db-user",
462
+ dest="mas_aibroker_db_user",
463
+ required=False,
464
+ help="Customize Manage database encryption keys"
465
+ )
466
+ aibrokerArgGroup.add_argument(
467
+ "--mas-aibroker-db-database",
468
+ dest="mas_aibroker_db_database",
469
+ required=False,
470
+ help="Customize Manage database encryption keys"
471
+ )
472
+ aibrokerArgGroup.add_argument(
473
+ "--mas-aibroker-db-secret-name",
474
+ dest="mas_aibroker_db_secret_name",
475
+ required=False,
476
+ help="Customize Manage database encryption keys"
477
+ )
478
+ aibrokerArgGroup.add_argument(
479
+ "--mas-aibroker-db-secret-key",
480
+ dest="mas_aibroker_db_secret_key",
481
+ required=False,
482
+ help="Customize Manage database encryption keys"
483
+ )
484
+ aibrokerArgGroup.add_argument(
485
+ "--mas-aibroker-db-secret-value",
486
+ dest="mas_aibroker_db_secret_value",
487
+ required=False,
488
+ help="Customize Manage database encryption keys"
489
+ )
301
490
 
302
491
  # Arcgis
303
492
  # -----------------------------------------------------------------------------
@@ -728,6 +917,7 @@ cosArgGroup.add_argument(
728
917
  )
729
918
  cosArgGroup.add_argument(
730
919
  "--cos-resourcegroup",
920
+ dest="ibmcos_resourcegroup",
731
921
  required=False,
732
922
  help="When using IBM COS, set the resource group where the instance will run"
733
923
  )
@@ -857,6 +1047,19 @@ approvalsGroup.add_argument(
857
1047
  # More Options
858
1048
  # -----------------------------------------------------------------------------
859
1049
  otherArgGroup = installArgParser.add_argument_group("More")
1050
+ otherArgGroup.add_argument(
1051
+ "--advanced",
1052
+ action="store_true",
1053
+ default=False,
1054
+ help="Show advanced install options (in interactve mode)"
1055
+ )
1056
+ otherArgGroup.add_argument(
1057
+ "--simplified",
1058
+ action="store_true",
1059
+ default=False,
1060
+ help="Don't show advanced install options (in interactve mode)"
1061
+ )
1062
+
860
1063
  otherArgGroup.add_argument(
861
1064
  "--accept-license",
862
1065
  action="store_true",
@@ -895,6 +1098,12 @@ otherArgGroup.add_argument(
895
1098
  default=False,
896
1099
  help="Launch the upgrade without prompting for confirmation",
897
1100
  )
1101
+ otherArgGroup.add_argument(
1102
+ "--image-pull-policy",
1103
+ dest="image_pull_policy",
1104
+ required=False,
1105
+ help="Manually set the image pull policy used in the Tekton Pipeline",
1106
+ )
898
1107
 
899
1108
  otherArgGroup.add_argument(
900
1109
  "-h", "--help",
@@ -0,0 +1,141 @@
1
+ # *****************************************************************************
2
+ # Copyright (c) 2024 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
+ catalogChoices = {
12
+ "amd64": [
13
+ {
14
+ "#": 1,
15
+ "catalog": "v9-241107-amd64",
16
+ "release": "9.0.x",
17
+ "core": "9.0.5",
18
+ "assist": "9.0.2",
19
+ "iot": "9.0.4",
20
+ "manage": "9.0.5",
21
+ "monitor": "9.0.4",
22
+ "optimizer": "9.0.4",
23
+ "predict": "9.0.2",
24
+ "inspection": "9.0.4",
25
+ "aibroker": "9.0.3"
26
+ },
27
+ {
28
+ "#": 2,
29
+ "catalog": "v9-241107-amd64",
30
+ "release": "8.11.x",
31
+ "core": "8.11.16",
32
+ "assist": "8.8.6",
33
+ "iot": "8.8.14",
34
+ "manage": "8.7.13",
35
+ "monitor": "8.11.12",
36
+ "optimizer": "8.5.10",
37
+ "predict": "8.9.5",
38
+ "inspection": "8.9.7"
39
+ },
40
+ {
41
+ "#": 3,
42
+ "catalog": "v9-241107-amd64",
43
+ "release": "8.10.x",
44
+ "core": "8.10.19",
45
+ "assist": "8.7.7",
46
+ "iot": "8.7.18",
47
+ "manage": "8.6.19",
48
+ "monitor": "8.10.14",
49
+ "optimizer": "8.4.11",
50
+ "predict": "8.8.4",
51
+ "inspection": "8.8.4"
52
+ },
53
+ {
54
+ "#": 4,
55
+ "catalog": "v9-241003-amd64",
56
+ "release": "9.0.x",
57
+ "core": "9.0.3",
58
+ "assist": "9.0.2",
59
+ "iot": "9.0.3",
60
+ "manage": "9.0.3",
61
+ "monitor": "9.0.3",
62
+ "optimizer": "9.0.3",
63
+ "predict": "9.0.2",
64
+ "inspection": "9.0.3"
65
+ },
66
+ {
67
+ "#": 5,
68
+ "catalog": "v9-241003-amd64",
69
+ "release": "8.11.x",
70
+ "core": "8.11.15",
71
+ "assist": "8.8.6",
72
+ "iot": "8.8.13",
73
+ "manage": "8.7.12",
74
+ "monitor": "8.11.11",
75
+ "optimizer": "8.5.9",
76
+ "predict": "8.9.5",
77
+ "inspection": "8.9.6"
78
+ },
79
+ {
80
+ "#": 6,
81
+ "catalog": "v9-241003-amd64",
82
+ "release": "8.10.x",
83
+ "core": "8.10.18",
84
+ "assist": "8.7.7",
85
+ "iot": "8.7.17",
86
+ "manage": "8.6.18",
87
+ "monitor": "8.10.14",
88
+ "optimizer": "8.4.10",
89
+ "predict": "8.8.3",
90
+ "inspection": "8.8.4"
91
+ },
92
+ {
93
+ "#": 7,
94
+ "catalog": "v9-240827-amd64",
95
+ "release": "9.0.x",
96
+ "core": "9.0.2",
97
+ "assist": "9.0.2",
98
+ "iot": "9.0.2",
99
+ "manage": "9.0.2",
100
+ "monitor": "9.0.2",
101
+ "optimizer": "9.0.2",
102
+ "predict": "9.0.1",
103
+ "inspection": "9.0.2"
104
+ },
105
+ {
106
+ "#": 8,
107
+ "catalog": "v9-240827-amd64",
108
+ "release": "8.11.x",
109
+ "core": "8.11.14",
110
+ "assist": "8.8.6",
111
+ "iot": "8.8.12",
112
+ "manage": "8.7.11",
113
+ "monitor": "8.11.10",
114
+ "optimizer": "8.5.8",
115
+ "predict": "8.9.3",
116
+ "inspection": "8.9.5"
117
+ },
118
+ {
119
+ "#": 9,
120
+ "catalog": "v9-240827-amd64",
121
+ "release": "8.10.x",
122
+ "core": "8.10.17",
123
+ "assist": "8.7.7",
124
+ "iot": "8.7.16",
125
+ "manage": "8.6.17",
126
+ "monitor": "8.10.13",
127
+ "optimizer": "8.4.9",
128
+ "predict": "8.8.3",
129
+ "inspection": "8.8.4"
130
+ }
131
+ ],
132
+ "s390x": [
133
+ {
134
+ "#": 1,
135
+ "catalog": "v9-241107-s390x",
136
+ "release": "9.0.x",
137
+ "core": "9.0.5",
138
+ "manage": "9.0.5"
139
+ }
140
+ ]
141
+ }
@@ -0,0 +1,168 @@
1
+ # *****************************************************************************
2
+ # Copyright (c) 2024 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
+ requiredParams = [
12
+ # MAS
13
+ "mas_catalog_version",
14
+ "mas_channel",
15
+ "mas_instance_id",
16
+ "mas_workspace_id",
17
+ "mas_workspace_name",
18
+ # Storage classes
19
+ "storage_class_rwo",
20
+ "storage_class_rwx",
21
+ # Entitlement
22
+ "ibm_entitlement_key",
23
+ # DRO
24
+ "uds_contact_email",
25
+ "uds_contact_firstname",
26
+ "uds_contact_lastname"
27
+ ]
28
+
29
+ optionalParams = [
30
+ # Pipeline
31
+ "image_pull_policy",
32
+ # OpenShift
33
+ "ocp_ingress_tls_secret_name",
34
+ # MAS
35
+ "mas_catalog_digest",
36
+ "mas_superuser_username",
37
+ "mas_superuser_password",
38
+ "mas_trust_default_cas",
39
+ "mas_app_settings_server_bundles_size",
40
+ "mas_app_settings_default_jms",
41
+ "mas_app_settings_persistent_volumes_flag",
42
+ "mas_app_settings_demodata",
43
+ "mas_app_settings_customization_archive_name",
44
+ "mas_app_settings_customization_archive_url",
45
+ "mas_app_settings_customization_archive_username",
46
+ "mas_app_settings_customization_archive_password",
47
+ "mas_app_settings_tablespace",
48
+ "mas_app_settings_indexspace",
49
+ "mas_app_settings_db2_schema",
50
+ "mas_app_settings_crypto_key",
51
+ "mas_app_settings_cryptox_key",
52
+ "mas_app_settings_old_crypto_key",
53
+ "mas_app_settings_old_cryptox_key",
54
+ "mas_app_settings_override_encryption_secrets_flag",
55
+ "mas_app_settings_base_lang",
56
+ "mas_app_settings_secondary_langs",
57
+ "mas_app_settings_server_timezone",
58
+ "mas_appws_bindings_jdbc_manage",
59
+ "mas_appws_components",
60
+ "mas_domain",
61
+ # SLS
62
+ "sls_namespace",
63
+ # DNS Providers
64
+ # TODO: Add CloudFlare and Route53 support
65
+ "dns_provider",
66
+ "cis_email",
67
+ "cis_apikey",
68
+ "cis_crn",
69
+ "cis_subdomain",
70
+ # DRO
71
+ "dro_namespace",
72
+ # MongoDb
73
+ "mongodb_namespace",
74
+ # Db2
75
+ "db2_action_system",
76
+ "db2_action_manage",
77
+ "db2_type",
78
+ "db2_timezone",
79
+ "db2_namespace",
80
+ "db2_channel",
81
+ "db2_affinity_key",
82
+ "db2_affinity_value",
83
+ "db2_tolerate_key",
84
+ "db2_tolerate_value",
85
+ "db2_tolerate_effect",
86
+ "db2_cpu_requests",
87
+ "db2_cpu_limits",
88
+ "db2_memory_requests",
89
+ "db2_memory_limits",
90
+ "db2_backup_storage_size",
91
+ "db2_data_storage_size",
92
+ "db2_logs_storage_size",
93
+ "db2_meta_storage_size",
94
+ "db2_temp_storage_size",
95
+ # CP4D
96
+ "cpd_product_version",
97
+ "cpd_install_cognos",
98
+ "cpd_install_openscale",
99
+ "cpd_install_spss",
100
+ # Kafka
101
+ "kafka_namespace",
102
+ "kafka_version",
103
+ "aws_msk_instance_type",
104
+ "aws_msk_instance_number",
105
+ "aws_msk_volume_size",
106
+ "aws_msk_cidr_az1",
107
+ "aws_msk_cidr_az2",
108
+ "aws_msk_cidr_az3",
109
+ "aws_msk_egress_cidr",
110
+ "aws_msk_ingress_cidr",
111
+ "eventstreams_resource_group",
112
+ "eventstreams_instance_name",
113
+ "eventstreams_instance_location",
114
+ # COS
115
+ "cos_type",
116
+ "ibmcos_resourcegroup",
117
+ # ECK
118
+ "eck_action",
119
+ "eck_enable_logstash",
120
+ "eck_remote_es_hosts",
121
+ "eck_remote_es_username",
122
+ "eck_remote_es_password",
123
+ # Turbonomic
124
+ "turbonomic_target_name",
125
+ "turbonomic_server_url",
126
+ "turbonomic_server_version",
127
+ "turbonomic_username",
128
+ "turbonomic_password",
129
+ # Cloud Providers
130
+ "ibmcloud_apikey",
131
+ "aws_region",
132
+ "aws_access_key_id",
133
+ "secret_access_key",
134
+ "aws_vpc_id",
135
+ # Dev Mode
136
+ "artifactory_username",
137
+ "artifactory_token",
138
+ # TODO: The way arcgis has been implemented needs to be fixed
139
+ "install_arcgis",
140
+ "mas_arcgis_channel",
141
+ # Guided Tour
142
+ "mas_enable_walkme",
143
+ # Aibroker
144
+ "mas_aibroker_storage_provider",
145
+ "mas_aibroker_storage_accesskey",
146
+ "mas_aibroker_storage_secretkey",
147
+ "mas_aibroker_storage_host",
148
+ "mas_aibroker_storage_port",
149
+ "mas_aibroker_storage_ssl",
150
+ "mas_aibroker_storage_region",
151
+ "mas_aibroker_storage_pipelines_bucket",
152
+ "mas_aibroker_storage_tenants_bucket",
153
+ "mas_aibroker_storage_templates_bucket",
154
+ "mas_aibroker_tenant_name",
155
+ "mas_aibroker_watsonxai_apikey",
156
+ "mas_aibroker_watsonxai_url",
157
+ "mas_aibroker_watsonxai_project_id",
158
+ "mas_aibroker_watsonx_action",
159
+ "mas_aibroker_db_host",
160
+ "mas_aibroker_db_port",
161
+ "mas_aibroker_db_user",
162
+ "mas_aibroker_db_database",
163
+ "mas_aibroker_db_secret_name",
164
+ "mas_aibroker_db_secret_key",
165
+ "mas_aibroker_db_secret_value",
166
+ # Special chars
167
+ "mas_special_characters"
168
+ ]
@@ -9,13 +9,14 @@
9
9
  # *****************************************************************************
10
10
 
11
11
  from .db2Settings import Db2SettingsMixin
12
+ from .mongodbSettings import MongoDbSettingsMixin
12
13
  from .kafkaSettings import KafkaSettingsMixin
13
14
  from .manageSettings import ManageSettingsMixin
14
15
  from .turbonomicSettings import TurbonomicSettingsMixin
15
16
  from .additionalConfigs import AdditionalConfigsMixin
16
17
 
17
18
 
18
- class InstallSettingsMixin(Db2SettingsMixin, KafkaSettingsMixin, ManageSettingsMixin, TurbonomicSettingsMixin, AdditionalConfigsMixin):
19
+ class InstallSettingsMixin(Db2SettingsMixin, MongoDbSettingsMixin, KafkaSettingsMixin, ManageSettingsMixin, TurbonomicSettingsMixin, AdditionalConfigsMixin):
19
20
  """
20
21
  This class collects all the Mixins providing interactive prompts for mas-install
21
22
  """