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

Files changed (95) hide show
  1. mas/cli/__init__.py +1 -1
  2. mas/cli/cli.py +82 -65
  3. mas/cli/displayMixins.py +110 -0
  4. mas/cli/gencfg.py +65 -0
  5. mas/cli/install/__init__.py +9 -0
  6. mas/cli/install/argParser.py +792 -0
  7. mas/cli/install/settings/__init__.py +21 -0
  8. mas/cli/install/settings/additionalConfigs.py +150 -0
  9. mas/cli/install/settings/db2Settings.py +173 -0
  10. mas/cli/install/settings/kafkaSettings.py +103 -0
  11. mas/cli/install/settings/manageSettings.py +218 -0
  12. mas/cli/install/settings/turbonomicSettings.py +25 -0
  13. mas/cli/install/summarizer.py +328 -0
  14. mas/cli/templates/ibm-mas-tekton.yaml +10813 -0
  15. mas/cli/templates/jdbccfg.yml.j2 +52 -0
  16. mas/cli/templates/pod-templates/best-effort/ibm-data-dictionary-assetdatadictionary.yml +26 -0
  17. mas/cli/templates/pod-templates/best-effort/ibm-mas-bascfg.yml +56 -0
  18. mas/cli/templates/pod-templates/best-effort/ibm-mas-coreidp.yml +21 -0
  19. mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-actions.yml +28 -0
  20. mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-auth.yml +32 -0
  21. mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-datapower.yml +12 -0
  22. mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-devops.yml +14 -0
  23. mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-dm.yml +22 -0
  24. mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-dsc.yml +40 -0
  25. mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-edgeconfig.yml +10 -0
  26. mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-fpl.yml +24 -0
  27. mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-guardian.yml +20 -0
  28. mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-iot.yml +10 -0
  29. mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-mbgx.yml +18 -0
  30. mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-mfgx.yml +14 -0
  31. mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-monitor.yml +18 -0
  32. mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-orgmgmt.yml +48 -0
  33. mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-provision.yml +28 -0
  34. mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-registry.yml +26 -0
  35. mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-state.yml +40 -0
  36. mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-webui.yml +22 -0
  37. mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-healthextaccelerator.yml +13 -0
  38. mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-healthextworkspace.yml +10 -0
  39. mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-imagestitching.yml +10 -0
  40. mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-manageaccelerators.yml +10 -0
  41. mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-manageapp.yml +46 -0
  42. mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-manageworkspace.yml +48 -0
  43. mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-slackproxy.yml +10 -0
  44. mas/cli/templates/pod-templates/best-effort/ibm-mas-pushnotificationcfg.yml +13 -0
  45. mas/cli/templates/pod-templates/best-effort/ibm-mas-scimcfg.yml +14 -0
  46. mas/cli/templates/pod-templates/best-effort/ibm-mas-slscfg.yml +10 -0
  47. mas/cli/templates/pod-templates/best-effort/ibm-mas-smtpcfg.yml +10 -0
  48. mas/cli/templates/pod-templates/best-effort/ibm-mas-suite.yml +136 -0
  49. mas/cli/templates/pod-templates/best-effort/ibm-mas-visualinspection.yml +34 -0
  50. mas/cli/templates/pod-templates/best-effort/ibm-sls-licenseservice.yml +10 -0
  51. mas/cli/templates/pod-templates/guaranteed/ibm-data-dictionary-assetdatadictionary.yml +56 -0
  52. mas/cli/templates/pod-templates/guaranteed/ibm-mas-bascfg.yml +140 -0
  53. mas/cli/templates/pod-templates/guaranteed/ibm-mas-coreidp.yml +45 -0
  54. mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-actions.yml +70 -0
  55. mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-auth.yml +80 -0
  56. mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-datapower.yml +24 -0
  57. mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-devops.yml +26 -0
  58. mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-dm.yml +52 -0
  59. mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-dsc.yml +106 -0
  60. mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-edgeconfig.yml +16 -0
  61. mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-fpl.yml +62 -0
  62. mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-guardian.yml +44 -0
  63. mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-iot.yml +16 -0
  64. mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-mbgx.yml +42 -0
  65. mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-mfgx.yml +32 -0
  66. mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-monitor.yml +42 -0
  67. mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-orgmgmt.yml +126 -0
  68. mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-provision.yml +70 -0
  69. mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-registry.yml +62 -0
  70. mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-state.yml +106 -0
  71. mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-webui.yml +52 -0
  72. mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-healthextaccelerator.yml +28 -0
  73. mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-healthextworkspace.yml +18 -0
  74. mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-imagestitching.yml +16 -0
  75. mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-manageaccelerators.yml +16 -0
  76. mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-manageapp.yml +106 -0
  77. mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-manageworkspace.yml +126 -0
  78. mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-slackproxy.yml +16 -0
  79. mas/cli/templates/pod-templates/guaranteed/ibm-mas-pushnotificationcfg.yml +25 -0
  80. mas/cli/templates/pod-templates/guaranteed/ibm-mas-scimcfg.yml +26 -0
  81. mas/cli/templates/pod-templates/guaranteed/ibm-mas-slscfg.yml +16 -0
  82. mas/cli/templates/pod-templates/guaranteed/ibm-mas-smtpcfg.yml +16 -0
  83. mas/cli/templates/pod-templates/guaranteed/ibm-mas-suite.yml +340 -0
  84. mas/cli/templates/pod-templates/guaranteed/ibm-mas-visualinspection.yml +76 -0
  85. mas/cli/templates/pod-templates/guaranteed/ibm-sls-licenseservice.yml +16 -0
  86. mas/cli/templates/pod-templates/saas-essentials/ibm-mas-visualinspection.yml +46 -0
  87. mas/cli/validators.py +126 -0
  88. mas_cli-10.0.0.data/scripts/mas-install +978 -0
  89. {mas_cli-9.5.0.data → mas_cli-10.0.0.data}/scripts/mas-uninstall +11 -8
  90. {mas_cli-9.5.0.data → mas_cli-10.0.0.data}/scripts/mas-upgrade +6 -4
  91. {mas_cli-9.5.0.dist-info → mas_cli-10.0.0.dist-info}/METADATA +2 -1
  92. mas_cli-10.0.0.dist-info/RECORD +94 -0
  93. mas_cli-9.5.0.dist-info/RECORD +0 -8
  94. {mas_cli-9.5.0.dist-info → mas_cli-10.0.0.dist-info}/WHEEL +0 -0
  95. {mas_cli-9.5.0.dist-info → mas_cli-10.0.0.dist-info}/top_level.txt +0 -0
@@ -19,7 +19,8 @@ from prompt_toolkit.completion import WordCompleter
19
19
  from halo import Halo
20
20
 
21
21
  from mas.cli import __version__ as packageVersion
22
- from mas.cli.cli import InstanceIDValidator, YesNoValidator, BaseApp, getHelpFormatter
22
+ from mas.cli.cli import BaseApp, getHelpFormatter
23
+ from mas.cli.validators import InstanceIDValidator, YesNoValidator
23
24
  from mas.devops.ocp import createNamespace
24
25
  from mas.devops.mas import listMasInstances, verifyMasInstance
25
26
  from mas.devops.tekton import installOpenShiftPipelines, updateTektonDefinitions, launchUninstallPipeline
@@ -33,7 +34,8 @@ class App(BaseApp):
33
34
  Uninstall MAS instance
34
35
  """
35
36
  instanceId = args.instance_id
36
- noConfirm = args.no_confirm
37
+ self.noConfirm = args.no_confirm
38
+
37
39
  if args.uninstall_all_deps:
38
40
  uninstallGrafana = True
39
41
  uninstallIBMCatalog = True
@@ -54,7 +56,7 @@ class App(BaseApp):
54
56
  if instanceId is None:
55
57
  self.printH1("Set Target OpenShift Cluster")
56
58
  # Connect to the target cluster
57
- self.connect(noConfirm)
59
+ self.connect()
58
60
  else:
59
61
  logger.debug("MAS instance ID is set, so we assume already connected to the desired OCP")
60
62
 
@@ -114,14 +116,15 @@ class App(BaseApp):
114
116
 
115
117
  # Default to Red Hat Cert-Manager, and check if IBM cert-manager is installed
116
118
  certManagerProvider="redhat"
117
- namespaceAPI = self.dynamicClient.resources.get(api_version="v1", kind="Namespace")
118
119
  try:
119
120
  # Check if 'ibm-common-services' namespace exist, this will throw NotFoundError exception when not found.
121
+ namespaceAPI = self.dynamicClient.resources.get(api_version="v1", kind="Namespace")
120
122
  namespaceAPI.get(name="ibm-common-services")
123
+
121
124
  podsAPI = self.dynamicClient.resources.get(api_version="v1", kind="Pod")
122
125
  podsList = podsAPI.get(namespace="ibm-common-services")
123
- for pod in podsList:
124
- if pod is not None and pod.metadata.name.contains("cert-manager-cainjector"):
126
+ for pod in podsList.items:
127
+ if pod is not None and "cert-manager-cainjector" in pod.metadata.name:
125
128
  certManagerProvider = "ibm"
126
129
  except NotFoundError:
127
130
  print()
@@ -137,11 +140,11 @@ class App(BaseApp):
137
140
  print_formatted_text(HTML(f"<LightSlateGrey>Uninstall MongoDb ............... {uninstallMongoDb}</LightSlateGrey>"))
138
141
  print_formatted_text(HTML(f"<LightSlateGrey>Uninstall SLS ................... {uninstallSLS}</LightSlateGrey>"))
139
142
 
140
- if not noConfirm:
143
+ if not self.noConfirm:
141
144
  print()
142
145
  continueWithUninstall = prompt(HTML(f'<Yellow>Proceed with these settings?</Yellow> '), validator=YesNoValidator(), validate_while_typing=False)
143
146
 
144
- if noConfirm or continueWithUninstall in ["y", "yes"]:
147
+ if self.noConfirm or continueWithUninstall in ["y", "yes"]:
145
148
  self.printH1("Launch uninstall")
146
149
  pipelinesNamespace = f"mas-{instanceId}-pipelines"
147
150
 
@@ -19,7 +19,8 @@ from prompt_toolkit.completion import WordCompleter
19
19
  from halo import Halo
20
20
 
21
21
  from mas.cli import __version__ as packageVersion
22
- from mas.cli.cli import InstanceIDValidator, YesNoValidator, BaseApp, getHelpFormatter
22
+ from mas.cli.cli import BaseApp, getHelpFormatter
23
+ from mas.cli.validators import InstanceIDValidator, YesNoValidator
23
24
  from mas.devops.ocp import createNamespace
24
25
  from mas.devops.mas import listMasInstances, verifyMasInstance
25
26
  from mas.devops.tekton import installOpenShiftPipelines, updateTektonDefinitions, launchUpgradePipeline
@@ -31,11 +32,12 @@ class App(BaseApp):
31
32
  """
32
33
  Upgrade MAS instance
33
34
  """
35
+ self.noConfirm = noConfirm
34
36
 
35
37
  if instanceId is None:
36
38
  self.printH1("Set Target OpenShift Cluster")
37
39
  # Connect to the target cluster
38
- self.connect(noConfirm)
40
+ self.connect()
39
41
  else:
40
42
  logger.debug("MAS instance ID is set, so we assume already connected to the desired OCP")
41
43
 
@@ -71,11 +73,11 @@ class App(BaseApp):
71
73
  print_formatted_text(HTML(f"<LightSlateGrey>Instance ID ..................... {instanceId}</LightSlateGrey>"))
72
74
  print_formatted_text(HTML(f"<LightSlateGrey>Skip Pre-Upgrade Checks ......... {skipPreCheck}</LightSlateGrey>"))
73
75
 
74
- if not noConfirm:
76
+ if not self.noConfirm:
75
77
  print()
76
78
  continueWithUpgrade = prompt(HTML(f'<Yellow>Proceed with these settings?</Yellow> '), validator=YesNoValidator(), validate_while_typing=False)
77
79
 
78
- if noConfirm or continueWithUpgrade in ["y", "yes"]:
80
+ if self.noConfirm or continueWithUpgrade in ["y", "yes"]:
79
81
  self.printH1("Launch Upgrade")
80
82
  pipelinesNamespace = f"mas-{instanceId}-pipelines"
81
83
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mas-cli
3
- Version: 9.5.0
3
+ Version: 10.0.0
4
4
  Summary: Python Admin CLI for Maximo Application Suite
5
5
  Home-page: https://github.com/ibm-mas/cli
6
6
  Author: David Parker
@@ -22,6 +22,7 @@ Requires-Dist: halo
22
22
  Requires-Dist: prompt-toolkit
23
23
  Requires-Dist: openshift
24
24
  Requires-Dist: kubernetes
25
+ Requires-Dist: tabulate
25
26
  Provides-Extra: dev
26
27
  Requires-Dist: build ; extra == 'dev'
27
28
  Requires-Dist: flake8 ; extra == 'dev'
@@ -0,0 +1,94 @@
1
+ mas/cli/__init__.py,sha256=JDpukVAfrN-OEanFjPj_-tTJPs8mIU1VAYFONxQ9mQU,491
2
+ mas/cli/cli.py,sha256=DEIMWmIt0dyhmJL2CDWHABRx3AG61LSZr10UBxNbDmY,8355
3
+ mas/cli/displayMixins.py,sha256=Dcr-q02wjGA9Mec2nGqZD42vWKyjqLtmh92s2ZhWHZw,5013
4
+ mas/cli/gencfg.py,sha256=57ik5x73gQBFXPl_8h2byXmV_vhCgxfeSDZk4Wg5-Pw,2102
5
+ mas/cli/validators.py,sha256=5QwiDQn2EIqJABJyDbHGGaSvlkE38IeJ98d1Czz682A,4550
6
+ mas/cli/install/__init__.py,sha256=55HhFzQjZrWuEIYRC5-fyGRpiMmC5g17MZJlH9_w7rk,467
7
+ mas/cli/install/argParser.py,sha256=FmGhFJDFsSN7QCiW9bWBXayM06Mm1FuFSiXKOL5opJA,18766
8
+ mas/cli/install/summarizer.py,sha256=iDdyiYkgGgLeYfl5asDkmGRUXAYGZAMPxF1PIGjF74c,17781
9
+ mas/cli/install/settings/__init__.py,sha256=eGdNVHVALUxJlZyGYkBet8LbHvVfa-1UjL_8Zl3d-lY,953
10
+ mas/cli/install/settings/additionalConfigs.py,sha256=ewwZew58q0k5AL3jxz8Uw8KxbM4ZPFZmYn_Sp3PiffM,6840
11
+ mas/cli/install/settings/db2Settings.py,sha256=R5g_Mxiu27ilP1eHikSgvuPsdsCbE660om6bi9i71M4,10716
12
+ mas/cli/install/settings/kafkaSettings.py,sha256=OJ5JRR_6f0PiXNfCJoZdurO2WGjGPBfRUpFdspm37Os,7125
13
+ mas/cli/install/settings/manageSettings.py,sha256=LTink4BKos2s4wVw2J9Z2kGFC5xGhgtFmTtCIXkj5rs,13214
14
+ mas/cli/install/settings/turbonomicSettings.py,sha256=OC-sn6_Z6MAq0kf33OC3c96gqT8FT4P7A51PenPiCXw,1368
15
+ mas/cli/templates/ibm-mas-tekton.yaml,sha256=9lBAfE-N6y-qPo1S8Q2yDVFy9eL_Q6AK9PzYEWMH2rY,332729
16
+ mas/cli/templates/jdbccfg.yml.j2,sha256=cANbwkUkKEPQp-P3_BB_Llbt94457Ciagah2hOdySIM,1644
17
+ mas/cli/templates/pod-templates/best-effort/ibm-data-dictionary-assetdatadictionary.yml,sha256=8VG_FDFcEjWNaAOZTcS58Pe0tWOXC10SJLloNqzEMC8,757
18
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-bascfg.yml,sha256=rkq8c2pVJoskgict9tCZzCchGSE2MBC-dJ47JyMYm7A,1559
19
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-coreidp.yml,sha256=9fBqmd6t8WNOpFlZ2imZVeXH2Z-wui6QVRw3RxBubBw,648
20
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-actions.yml,sha256=VlZGhG9fFE35BFKVTKZmw8b11K_39y7AepDkptjKqdg,829
21
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-auth.yml,sha256=BkD9Hb6R8jOa6mtPhrqfuB7jqvxct3A-SlDU4ooIYUc,922
22
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-datapower.yml,sha256=ALiYzZIjVmGJvhq55wsie5mBCfrIR_VsR2wWGYEY48Y,462
23
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-devops.yml,sha256=JOwPyTiuvOSpVbETCdUbWaXnlfWl31lLNwz2zTgvx8E,495
24
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-dm.yml,sha256=JF1yTmIPOwbM8m2qEn8DrF13a7KFJmekK4FiwRVTmws,695
25
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-dsc.yml,sha256=4LuI67s3g0jJQCBOn73pJaH3BxM9grF_mQ9cqZbw9FI,1168
26
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-edgeconfig.yml,sha256=oaVZXH-5BRjRF8B8nkBSCKzN7sVVl86WAf9Q8Lj8bso,425
27
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-fpl.yml,sha256=CjLQJSulhb5E7GNpAvxaMFfSJkeG7--Ikf2mr4ClwHU,742
28
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-guardian.yml,sha256=SBY7o1LVd7R56Q6zIBxFJgc84kNE2zk_DOQEsI3X-Q4,686
29
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-iot.yml,sha256=Fi9kzKa1zRySRDGbF9kavXVuYzY0nw-2Qq0d1QNoviY,415
30
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-mbgx.yml,sha256=-8rJ33T6-FeOYZqmJyvayyi6RmxvjUHkceUWu9jlblc,599
31
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-mfgx.yml,sha256=7O9v2MJL1aLVRIDHtqMEmPn_wMtvJfm-KtnNdfH6wdo,492
32
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-monitor.yml,sha256=T245FTimwCK1yEit-s6f5dbs7UvFvoSVua-7WdIwiuE,601
33
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-orgmgmt.yml,sha256=qi7WoCnK9Oql4-bGsidZhDi-FTdeNBDBbBFOC8ScJJs,1256
34
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-provision.yml,sha256=RnvoCrCIN0S-k9LM0Z4wSG-VxhRTSzQFZJ-iADHqnTw,830
35
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-registry.yml,sha256=2yCyfHtmEoBt4rT9GtIiB4fICK1ZAdcFsWoZgTjWi5M,779
36
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-state.yml,sha256=d4AsEd_BWJN6N6BurqQOvGQnTaCFErdGqFkn3djHGjg,1095
37
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-webui.yml,sha256=ydkFbjxNDogM3sI-gKXsVEN6BHKNZeR2eUkVF1w7H1I,683
38
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-healthextaccelerator.yml,sha256=yMeHwgWvAR3kwP3PiMJI6KN5VjIxPld4cIPzGj5nHuc,447
39
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-healthextworkspace.yml,sha256=ZcpfzfwQ6C4hmr-CqQHKHeAQGHn0IfzNlCYQ3Wnmkoc,416
40
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-imagestitching.yml,sha256=q8EFHeenFNlr7yeG4dBYYfWdmTXRs7Ya43lydcxdS4Y,401
41
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-manageaccelerators.yml,sha256=t2-K9ifDBq8SdPoe5lQsRAcTSMtoTQ0YlTxM0uzEiPk,418
42
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-manageapp.yml,sha256=kwFGuUrlA7D325ZoWL3RaRQIPsXoeFRIAtrUQ27BRWQ,1244
43
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-manageworkspace.yml,sha256=GgFJ6GlvPQxhphJOWywn5SA-Hv--f-gim19TiO2cP_Q,1161
44
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-slackproxy.yml,sha256=bBl7Mogmff0OgCobZTuhDmHWJaNJPzuoo7b1j-o2tNE,393
45
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-pushnotificationcfg.yml,sha256=W-h_Yopebpfh80sPw_noBdZvj78vFsqirWnrA8eBw3Q,528
46
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-scimcfg.yml,sha256=VV4yZTWjvNqrKQhIbnwbW_TZ4AKQwRAHRCaN0h_HCBE,491
47
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-slscfg.yml,sha256=zeg5WuigItEduuU0KxzHyYXnQfTz88V8Wfz9XmR8Edg,427
48
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-smtpcfg.yml,sha256=Plf_cZEToo_eFe6KgupIPlWyOsx9k24uePjvf45gR9c,413
49
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-suite.yml,sha256=hh1wkEt2rur-OWsBhgsPxTt8GmCi-mQnPgbvtI3hu3c,3288
50
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-visualinspection.yml,sha256=-37W0_o6E-F3LjEP55jeyD3HVZzkesr2kMtoJXYZZZg,1049
51
+ mas/cli/templates/pod-templates/best-effort/ibm-sls-licenseservice.yml,sha256=11juNTgjJlkcIDQcCiIVM0aQrmXB48W6GF7-J8eWenw,426
52
+ mas/cli/templates/pod-templates/guaranteed/ibm-data-dictionary-assetdatadictionary.yml,sha256=ShHBqL0WeIarUbKw_whi-gbNBnm_cOOzBuUVPyFiqsQ,1364
53
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-bascfg.yml,sha256=oAK9pCgtKlhptX9affv42l3EHupY1Wf2XT6PyY8ibh4,3333
54
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-coreidp.yml,sha256=I8z7-3Fde57sWyT-NvKrh5pNdwJi5SQEHGuEGqwY2Mg,1160
55
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-actions.yml,sha256=kHb1EymjlTS311-RF2zuMeNDr1Z_51bBKwJxYnJhlLY,1710
56
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-auth.yml,sha256=FKem1Qh9a3X6q15ZmSyWodeD8LkBAe8mjunljVicO5Q,1924
57
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-datapower.yml,sha256=mTv1rfjc3HYrSOPyqOOsClbwMz6jnFY12pU3BKScpE0,718
58
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-devops.yml,sha256=cP0HghyD3QCPU6LN05rHRMr8r4eLgv51-fwfD1jY_yg,737
59
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-dm.yml,sha256=Msg-YpfD6sm1_E-Ytuawr31MWH15visKDLFex8ikppk,1316
60
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-dsc.yml,sha256=wfC3YBOkhkSkaGaATjrXlZ4nzff5mDE3DSEby-zpKjQ,2539
61
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-edgeconfig.yml,sha256=b14mASqFIWDIWdejSYrvaVzsXsCBRXfq-FCNDzBbaHA,546
62
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-fpl.yml,sha256=jxOUAGes5QxVzLed6F7Basl-6ek0tg1jy_JzC3YsmDw,1533
63
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-guardian.yml,sha256=9JyLKMRGalhF3SxuKwEP0RmquDVgjScPKfvoOazFc0U,1198
64
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-iot.yml,sha256=Gml99aRmXr_HsX_AL62YmG4z9lEIlEDGQk0nG5V9VwM,544
65
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-mbgx.yml,sha256=0EvOHdae2yqKs3JBVfe1ZiSjIXtt33cbIbdKer6wxCg,1103
66
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-mfgx.yml,sha256=nKS8NePj7fTxF4T9bSsMjGSU0Fs6Bob6bliZO-BvaCA,867
67
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-monitor.yml,sha256=zHqzip8xHCZY9HhEuQBSH3YCaf6QNFpiuAvP2eAqO5U,1101
68
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-orgmgmt.yml,sha256=HicbSWVtk4of3bDyLx67BpMdcEr7187i_-xerpbsElE,2869
69
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-provision.yml,sha256=sRd0WIFAS-6gSxeXLXO93WNycDgi26iLBU8RmWI_lnc,1711
70
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-registry.yml,sha256=g3qk-q4WBJ7A8DrmcMDzhQa3NHIA2lLQZhVivUN5tDc,1531
71
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-state.yml,sha256=9pabyziABGRR2tqGG0SE7zBm9-nFCipwMqRcq4Z2t7M,2466
72
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-webui.yml,sha256=a8qN3b3E3JpufFUcODU_1n2GNslssy-pBsY1wu32wR8,1322
73
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-healthextaccelerator.yml,sha256=g1X3z-lu7baYVWmBTcv5rziVKYtYmQIpQUSk2FiGFQo,708
74
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-healthextworkspace.yml,sha256=w2-1-EdEouiNto9ay1miPtxRpIHbA2l0G3tk1zuMjVo,615
75
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-imagestitching.yml,sha256=A_0fmur1Bo8WbIN6Md34ywr_PzoV2BKES5vraWVEuGw,524
76
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-manageaccelerators.yml,sha256=Md1uRJ_boeE0fw99Mt21rnHD1tQj2_GVaiEIj47q6qg,551
77
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-manageapp.yml,sha256=Mg_kVBQh_66Y8_B6TeyJGFeDUX3z-OndqmLkxL4E3TY,2537
78
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-manageworkspace.yml,sha256=g8Pim2v1MOqxOqwO-EW3dRLV9mP1Xie0hH8pk56_YxI,2844
79
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-slackproxy.yml,sha256=uCcq85P8T7fIqvDdbUk0CnHepxFTHEU-PBVSinfzUio,516
80
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-pushnotificationcfg.yml,sha256=wpqfKOflsUgfxgWwh97yVnGikyCjDwxDE5TNItZ8BBI,786
81
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-scimcfg.yml,sha256=U8761Wiqe4dD7kxUvW5yoh-JS4k2A_kNrNUi2bNEwJg,749
82
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-slscfg.yml,sha256=TmVdo6BlefZVXjRY_Is5c1ullOTHRuunMqJOnCpnC3k,552
83
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-smtpcfg.yml,sha256=fbBe8S5iHHk9qHTzW9AmKVwUpHhHafG2gnBT4dCmWEc,538
84
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-suite.yml,sha256=aB-buCWUAqD0PV9zcGrPI5gm8QWUHZgxdriw_HG85q0,7656
85
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-visualinspection.yml,sha256=NiXBlXKe3j2RvroEcx3kCSuD92G6WB-jcpNAYGAg3T0,1975
86
+ mas/cli/templates/pod-templates/guaranteed/ibm-sls-licenseservice.yml,sha256=CKt1yim4L3ClloVcQDHiXLD8EMvmKXIltmDxJTxNdDs,546
87
+ mas/cli/templates/pod-templates/saas-essentials/ibm-mas-visualinspection.yml,sha256=4skVNh-8HG55ik0O0QG4jAwiQBRxxrPSRaUwllPYZ_I,1270
88
+ mas_cli-10.0.0.data/scripts/mas-install,sha256=h4eTbCg5iLZ1TYuA_o84n8J980-aBepWZZ4z_Xqb5Q0,46068
89
+ mas_cli-10.0.0.data/scripts/mas-uninstall,sha256=U4eZcs8UHo3K_h4VyQURMJ4P8OoZZKBOvTUSd7vWaQI,13217
90
+ mas_cli-10.0.0.data/scripts/mas-upgrade,sha256=piUrsPtEZR_LWPkK6p1j_mQK3Cg-SNyTTcxGgHGFYqc,6900
91
+ mas_cli-10.0.0.dist-info/METADATA,sha256=pPPuHtqOieTDt056vUKxUT7x1Ga-5kY8mnPSmJ4QCS0,2076
92
+ mas_cli-10.0.0.dist-info/WHEEL,sha256=mguMlWGMX-VHnMpKOjjQidIo1ssRlCFu4a4mBpz1s2M,91
93
+ mas_cli-10.0.0.dist-info/top_level.txt,sha256=_Hlsp7pvMvyV14LFg-vk1hULq30j61EILnnxMFIhhc8,4
94
+ mas_cli-10.0.0.dist-info/RECORD,,
@@ -1,8 +0,0 @@
1
- mas/cli/__init__.py,sha256=gtCpZLbQvVbt2Kyub5QSZEF-tEs4fZvBlYW9rtVzHAg,490
2
- mas/cli/cli.py,sha256=6FoiYRG297LN2P02p5f28qjTQ__4x_WV0f8yBjZEX2I,8649
3
- mas_cli-9.5.0.data/scripts/mas-uninstall,sha256=aCySCt7zJvoB2HMPR0Ftt9O0hKT5a1-GTFbMw2ZJ33k,13176
4
- mas_cli-9.5.0.data/scripts/mas-upgrade,sha256=5zMbjueTAzwmaSxa1F3oiaQvOeiPobsOtwUxXqrg36Y,6834
5
- mas_cli-9.5.0.dist-info/METADATA,sha256=5mVGmPn5jL1w4SdYqqpO_e2-L-Mn5CsORfiTTPpniWc,2051
6
- mas_cli-9.5.0.dist-info/WHEEL,sha256=mguMlWGMX-VHnMpKOjjQidIo1ssRlCFu4a4mBpz1s2M,91
7
- mas_cli-9.5.0.dist-info/top_level.txt,sha256=_Hlsp7pvMvyV14LFg-vk1hULq30j61EILnnxMFIhhc8,4
8
- mas_cli-9.5.0.dist-info/RECORD,,