mas-cli 5.1.4__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 +11 -0
- mas/cli/aiservice/install/__init__.py +11 -0
- mas/cli/aiservice/install/app.py +894 -0
- mas/cli/aiservice/install/argBuilder.py +180 -0
- mas/cli/aiservice/install/argParser.py +507 -0
- mas/cli/aiservice/install/params.py +100 -0
- mas/cli/aiservice/install/summarizer.py +134 -0
- mas/cli/cli.py +432 -0
- mas/cli/displayMixins.py +132 -0
- mas/cli/gencfg.py +113 -0
- mas/cli/install/__init__.py +11 -0
- mas/cli/install/app.py +1316 -0
- mas/cli/install/argBuilder.py +465 -0
- mas/cli/install/argParser.py +1176 -0
- mas/cli/install/catalogs.py +27 -0
- mas/cli/install/params.py +172 -0
- mas/cli/install/settings/__init__.py +23 -0
- mas/cli/install/settings/additionalConfigs.py +227 -0
- mas/cli/install/settings/db2Settings.py +252 -0
- mas/cli/install/settings/kafkaSettings.py +103 -0
- mas/cli/install/settings/manageSettings.py +273 -0
- mas/cli/install/settings/mongodbSettings.py +46 -0
- mas/cli/install/settings/turbonomicSettings.py +29 -0
- mas/cli/install/summarizer.py +398 -0
- mas/cli/templates/facilities-configs.yml.j2 +25 -0
- mas/cli/templates/ibm-mas-tekton.yaml +49772 -0
- mas/cli/templates/jdbccfg.yml.j2 +52 -0
- mas/cli/templates/pod-templates/best-effort/ibm-data-dictionary-assetdatadictionary.yml +26 -0
- mas/cli/templates/pod-templates/best-effort/ibm-mas-bascfg.yml +56 -0
- mas/cli/templates/pod-templates/best-effort/ibm-mas-coreidp.yml +21 -0
- mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-actions.yml +28 -0
- mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-auth.yml +32 -0
- mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-datapower.yml +12 -0
- mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-devops.yml +14 -0
- mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-dm.yml +22 -0
- mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-dsc.yml +40 -0
- mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-edgeconfig.yml +10 -0
- mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-fpl.yml +24 -0
- mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-guardian.yml +20 -0
- mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-iot.yml +10 -0
- mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-mbgx.yml +18 -0
- mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-mfgx.yml +14 -0
- mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-monitor.yml +18 -0
- mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-orgmgmt.yml +48 -0
- mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-provision.yml +28 -0
- mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-registry.yml +26 -0
- mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-state.yml +40 -0
- mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-webui.yml +22 -0
- mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-healthextaccelerator.yml +13 -0
- mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-healthextworkspace.yml +10 -0
- mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-imagestitching.yml +10 -0
- mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-manageaccelerators.yml +10 -0
- mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-manageapp.yml +46 -0
- mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-manageworkspace.yml +48 -0
- mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-slackproxy.yml +10 -0
- mas/cli/templates/pod-templates/best-effort/ibm-mas-pushnotificationcfg.yml +13 -0
- mas/cli/templates/pod-templates/best-effort/ibm-mas-scimcfg.yml +14 -0
- mas/cli/templates/pod-templates/best-effort/ibm-mas-slscfg.yml +10 -0
- mas/cli/templates/pod-templates/best-effort/ibm-mas-smtpcfg.yml +10 -0
- mas/cli/templates/pod-templates/best-effort/ibm-mas-suite.yml +136 -0
- mas/cli/templates/pod-templates/best-effort/ibm-mas-visualinspection.yml +34 -0
- mas/cli/templates/pod-templates/best-effort/ibm-sls-licenseservice.yml +10 -0
- mas/cli/templates/pod-templates/guaranteed/ibm-data-dictionary-assetdatadictionary.yml +56 -0
- mas/cli/templates/pod-templates/guaranteed/ibm-mas-bascfg.yml +140 -0
- mas/cli/templates/pod-templates/guaranteed/ibm-mas-coreidp.yml +45 -0
- mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-actions.yml +70 -0
- mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-auth.yml +80 -0
- mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-datapower.yml +24 -0
- mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-devops.yml +26 -0
- mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-dm.yml +52 -0
- mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-dsc.yml +106 -0
- mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-edgeconfig.yml +16 -0
- mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-fpl.yml +62 -0
- mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-guardian.yml +44 -0
- mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-iot.yml +16 -0
- mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-mbgx.yml +42 -0
- mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-mfgx.yml +32 -0
- mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-monitor.yml +42 -0
- mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-orgmgmt.yml +126 -0
- mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-provision.yml +70 -0
- mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-registry.yml +62 -0
- mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-state.yml +106 -0
- mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-webui.yml +52 -0
- mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-healthextaccelerator.yml +28 -0
- mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-healthextworkspace.yml +18 -0
- mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-imagestitching.yml +16 -0
- mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-manageaccelerators.yml +16 -0
- mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-manageapp.yml +106 -0
- mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-manageworkspace.yml +126 -0
- mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-slackproxy.yml +16 -0
- mas/cli/templates/pod-templates/guaranteed/ibm-mas-pushnotificationcfg.yml +25 -0
- mas/cli/templates/pod-templates/guaranteed/ibm-mas-scimcfg.yml +26 -0
- mas/cli/templates/pod-templates/guaranteed/ibm-mas-slscfg.yml +16 -0
- mas/cli/templates/pod-templates/guaranteed/ibm-mas-smtpcfg.yml +16 -0
- mas/cli/templates/pod-templates/guaranteed/ibm-mas-suite.yml +340 -0
- mas/cli/templates/pod-templates/guaranteed/ibm-mas-visualinspection.yml +76 -0
- mas/cli/templates/pod-templates/guaranteed/ibm-sls-licenseservice.yml +16 -0
- mas/cli/templates/suite_mongocfg.yml.j2 +55 -0
- mas/cli/uninstall/__init__.py +11 -0
- mas/cli/uninstall/app.py +197 -0
- mas/cli/uninstall/argParser.py +115 -0
- mas/cli/update/__init__.py +11 -0
- mas/cli/update/app.py +673 -0
- mas/cli/update/argParser.py +156 -0
- mas/cli/upgrade/__init__.py +11 -0
- mas/cli/upgrade/app.py +164 -0
- mas/cli/upgrade/argParser.py +68 -0
- mas/cli/upgrade/settings/__init__.py +19 -0
- mas/cli/validators.py +151 -0
- mas_cli-5.1.4.data/scripts/mas-cli +87 -0
- mas_cli-5.1.4.dist-info/METADATA +73 -0
- mas_cli-5.1.4.dist-info/RECORD +114 -0
- mas_cli-5.1.4.dist-info/WHEEL +5 -0
- mas_cli-5.1.4.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
# podTemplates
|
|
2
|
+
# =============================================================================
|
|
3
|
+
# This list defines the resources for pod containers/initContainers that get
|
|
4
|
+
# assigned a QoS class of Guaranteed. More can be found here:
|
|
5
|
+
# https://kubernetes.io/docs/tasks/configure-pod-container/quality-service-pod
|
|
6
|
+
podTemplates:
|
|
7
|
+
- name: api-resourcecontroller
|
|
8
|
+
containers:
|
|
9
|
+
- name: api-resourcecontroller
|
|
10
|
+
resources:
|
|
11
|
+
requests:
|
|
12
|
+
cpu: 1
|
|
13
|
+
memory: 2Gi
|
|
14
|
+
limits:
|
|
15
|
+
cpu: 1
|
|
16
|
+
memory: 2Gi
|
|
17
|
+
- name: statsd
|
|
18
|
+
resources:
|
|
19
|
+
requests:
|
|
20
|
+
cpu: 0.2
|
|
21
|
+
memory: 512Mi
|
|
22
|
+
limits:
|
|
23
|
+
cpu: 0.2
|
|
24
|
+
memory: 512Mi
|
|
25
|
+
- name: api-s2s
|
|
26
|
+
containers:
|
|
27
|
+
- name: api-s2s
|
|
28
|
+
resources:
|
|
29
|
+
requests:
|
|
30
|
+
cpu: 1
|
|
31
|
+
memory: 2Gi
|
|
32
|
+
limits:
|
|
33
|
+
cpu: 1
|
|
34
|
+
memory: 2Gi
|
|
35
|
+
- name: statsd
|
|
36
|
+
resources:
|
|
37
|
+
requests:
|
|
38
|
+
cpu: 0.2
|
|
39
|
+
memory: 512Mi
|
|
40
|
+
limits:
|
|
41
|
+
cpu: 0.2
|
|
42
|
+
memory: 512Mi
|
|
43
|
+
- name: deprovagent-provision
|
|
44
|
+
containers:
|
|
45
|
+
- name: deprovagent-provision
|
|
46
|
+
resources:
|
|
47
|
+
requests:
|
|
48
|
+
cpu: 0.25
|
|
49
|
+
memory: 256Mi
|
|
50
|
+
limits:
|
|
51
|
+
cpu: 0.25
|
|
52
|
+
memory: 256Mi
|
|
53
|
+
- name: s2s-store
|
|
54
|
+
containers:
|
|
55
|
+
- name: s2s-store
|
|
56
|
+
resources:
|
|
57
|
+
requests:
|
|
58
|
+
cpu: 1
|
|
59
|
+
memory: 2Gi
|
|
60
|
+
limits:
|
|
61
|
+
cpu: 1
|
|
62
|
+
memory: 2Gi
|
|
63
|
+
- name: statsd
|
|
64
|
+
resources:
|
|
65
|
+
requests:
|
|
66
|
+
cpu: 0.2
|
|
67
|
+
memory: 512Mi
|
|
68
|
+
limits:
|
|
69
|
+
cpu: 0.2
|
|
70
|
+
memory: 512Mi
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
# podTemplates
|
|
2
|
+
# =============================================================================
|
|
3
|
+
# This list defines the resources for pod containers/initContainers that get
|
|
4
|
+
# assigned a QoS class of Guaranteed. More can be found here:
|
|
5
|
+
# https://kubernetes.io/docs/tasks/configure-pod-container/quality-service-pod
|
|
6
|
+
podTemplates:
|
|
7
|
+
- name: api-messagesight
|
|
8
|
+
containers:
|
|
9
|
+
- name: api-messagesight
|
|
10
|
+
resources:
|
|
11
|
+
requests:
|
|
12
|
+
cpu: 2
|
|
13
|
+
memory: 2Gi
|
|
14
|
+
limits:
|
|
15
|
+
cpu: 2
|
|
16
|
+
memory: 2Gi
|
|
17
|
+
- name: api-org
|
|
18
|
+
containers:
|
|
19
|
+
- name: api-org
|
|
20
|
+
resources:
|
|
21
|
+
requests:
|
|
22
|
+
cpu: 2
|
|
23
|
+
memory: 4Gi
|
|
24
|
+
limits:
|
|
25
|
+
cpu: 2
|
|
26
|
+
memory: 4Gi
|
|
27
|
+
- name: statsd
|
|
28
|
+
resources:
|
|
29
|
+
requests:
|
|
30
|
+
cpu: 0.2
|
|
31
|
+
memory: 512Mi
|
|
32
|
+
limits:
|
|
33
|
+
cpu: 0.2
|
|
34
|
+
memory: 512Mi
|
|
35
|
+
- name: deprovagent-registry
|
|
36
|
+
containers:
|
|
37
|
+
- name: deprovagent-registry
|
|
38
|
+
resources:
|
|
39
|
+
requests:
|
|
40
|
+
cpu: 0.25
|
|
41
|
+
memory: 256Mi
|
|
42
|
+
limits:
|
|
43
|
+
cpu: 0.25
|
|
44
|
+
memory: 256Mi
|
|
45
|
+
- name: device-store
|
|
46
|
+
containers:
|
|
47
|
+
- name: device-store
|
|
48
|
+
resources:
|
|
49
|
+
requests:
|
|
50
|
+
cpu: 2
|
|
51
|
+
memory: 2Gi
|
|
52
|
+
limits:
|
|
53
|
+
cpu: 2
|
|
54
|
+
memory: 2Gi
|
|
55
|
+
- name: statsd
|
|
56
|
+
resources:
|
|
57
|
+
requests:
|
|
58
|
+
cpu: 0.2
|
|
59
|
+
memory: 512Mi
|
|
60
|
+
limits:
|
|
61
|
+
cpu: 0.2
|
|
62
|
+
memory: 512Mi
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
# podTemplates
|
|
2
|
+
# =============================================================================
|
|
3
|
+
# This list defines the resources for pod containers/initContainers that get
|
|
4
|
+
# assigned a QoS class of Guaranteed. More can be found here:
|
|
5
|
+
# https://kubernetes.io/docs/tasks/configure-pod-container/quality-service-pod
|
|
6
|
+
podTemplates:
|
|
7
|
+
- name: api-schemas
|
|
8
|
+
containers:
|
|
9
|
+
- name: api-schemas
|
|
10
|
+
resources:
|
|
11
|
+
requests:
|
|
12
|
+
cpu: 2
|
|
13
|
+
memory: 2Gi
|
|
14
|
+
limits:
|
|
15
|
+
cpu: 2
|
|
16
|
+
memory: 2Gi
|
|
17
|
+
- name: statsd
|
|
18
|
+
resources:
|
|
19
|
+
requests:
|
|
20
|
+
cpu: 0.2
|
|
21
|
+
memory: 512Mi
|
|
22
|
+
limits:
|
|
23
|
+
cpu: 0.2
|
|
24
|
+
memory: 512Mi
|
|
25
|
+
- name: api-state
|
|
26
|
+
containers:
|
|
27
|
+
- name: api-state
|
|
28
|
+
resources:
|
|
29
|
+
requests:
|
|
30
|
+
cpu: 2
|
|
31
|
+
memory: 2Gi
|
|
32
|
+
limits:
|
|
33
|
+
cpu: 2
|
|
34
|
+
memory: 2Gi
|
|
35
|
+
- name: statsd
|
|
36
|
+
resources:
|
|
37
|
+
requests:
|
|
38
|
+
cpu: 0.2
|
|
39
|
+
memory: 512Mi
|
|
40
|
+
limits:
|
|
41
|
+
cpu: 0.2
|
|
42
|
+
memory: 512Mi
|
|
43
|
+
- name: deprovagent-state
|
|
44
|
+
containers:
|
|
45
|
+
- name: deprovagent-state
|
|
46
|
+
resources:
|
|
47
|
+
requests:
|
|
48
|
+
cpu: 2
|
|
49
|
+
memory: 2Gi
|
|
50
|
+
limits:
|
|
51
|
+
cpu: 2
|
|
52
|
+
memory: 2Gi
|
|
53
|
+
- name: mqtt-connector
|
|
54
|
+
containers:
|
|
55
|
+
- name: mqtt-connector
|
|
56
|
+
resources:
|
|
57
|
+
requests:
|
|
58
|
+
cpu: 2
|
|
59
|
+
memory: 2Gi
|
|
60
|
+
limits:
|
|
61
|
+
cpu: 2
|
|
62
|
+
memory: 2Gi
|
|
63
|
+
- name: statsd
|
|
64
|
+
resources:
|
|
65
|
+
requests:
|
|
66
|
+
cpu: 0.2
|
|
67
|
+
memory: 512Mi
|
|
68
|
+
limits:
|
|
69
|
+
cpu: 0.2
|
|
70
|
+
memory: 512Mi
|
|
71
|
+
- name: state-updater-devices
|
|
72
|
+
containers:
|
|
73
|
+
- name: state-updater
|
|
74
|
+
resources:
|
|
75
|
+
requests:
|
|
76
|
+
cpu: 2
|
|
77
|
+
memory: 2Gi
|
|
78
|
+
limits:
|
|
79
|
+
cpu: 2
|
|
80
|
+
memory: 2Gi
|
|
81
|
+
- name: statsd
|
|
82
|
+
resources:
|
|
83
|
+
requests:
|
|
84
|
+
cpu: 0.2
|
|
85
|
+
memory: 512Mi
|
|
86
|
+
limits:
|
|
87
|
+
cpu: 0.2
|
|
88
|
+
memory: 512Mi
|
|
89
|
+
- name: state-updater-things
|
|
90
|
+
containers:
|
|
91
|
+
- name: state-updater
|
|
92
|
+
resources:
|
|
93
|
+
requests:
|
|
94
|
+
cpu: 2
|
|
95
|
+
memory: 2Gi
|
|
96
|
+
limits:
|
|
97
|
+
cpu: 2
|
|
98
|
+
memory: 2Gi
|
|
99
|
+
- name: statsd
|
|
100
|
+
resources:
|
|
101
|
+
requests:
|
|
102
|
+
cpu: 0.2
|
|
103
|
+
memory: 512Mi
|
|
104
|
+
limits:
|
|
105
|
+
cpu: 0.2
|
|
106
|
+
memory: 512Mi
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# podTemplates
|
|
2
|
+
# =============================================================================
|
|
3
|
+
# This list defines the resources for pod containers/initContainers that get
|
|
4
|
+
# assigned a QoS class of Guaranteed. More can be found here:
|
|
5
|
+
# https://kubernetes.io/docs/tasks/configure-pod-container/quality-service-pod
|
|
6
|
+
podTemplates:
|
|
7
|
+
- name: api-dashboard
|
|
8
|
+
containers:
|
|
9
|
+
- name: api-dashboard
|
|
10
|
+
resources:
|
|
11
|
+
requests:
|
|
12
|
+
cpu: 2
|
|
13
|
+
memory: 2Gi
|
|
14
|
+
limits:
|
|
15
|
+
cpu: 2
|
|
16
|
+
memory: 2Gi
|
|
17
|
+
- name: statsd
|
|
18
|
+
resources:
|
|
19
|
+
requests:
|
|
20
|
+
cpu: 0.2
|
|
21
|
+
memory: 512Mi
|
|
22
|
+
limits:
|
|
23
|
+
cpu: 0.2
|
|
24
|
+
memory: 512Mi
|
|
25
|
+
- name: dashboard
|
|
26
|
+
containers:
|
|
27
|
+
- name: dashboard
|
|
28
|
+
resources:
|
|
29
|
+
requests:
|
|
30
|
+
cpu: 0.8
|
|
31
|
+
memory: 512Mi
|
|
32
|
+
limits:
|
|
33
|
+
cpu: 0.8
|
|
34
|
+
memory: 512Mi
|
|
35
|
+
- name: statsd
|
|
36
|
+
resources:
|
|
37
|
+
requests:
|
|
38
|
+
cpu: 0.2
|
|
39
|
+
memory: 512Mi
|
|
40
|
+
limits:
|
|
41
|
+
cpu: 0.2
|
|
42
|
+
memory: 512Mi
|
|
43
|
+
- name: deprovagent-webui
|
|
44
|
+
containers:
|
|
45
|
+
- name: deprovagent-webui
|
|
46
|
+
resources:
|
|
47
|
+
requests:
|
|
48
|
+
cpu: 0.25
|
|
49
|
+
memory: 256Mi
|
|
50
|
+
limits:
|
|
51
|
+
cpu: 0.25
|
|
52
|
+
memory: 256Mi
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# podTemplates
|
|
2
|
+
# ===================================================================================
|
|
3
|
+
# This list defines the resources for Deployment: Manage+Health - ManageApp CRD
|
|
4
|
+
# The pod gets tested for scaling and affinity.
|
|
5
|
+
podTemplates:
|
|
6
|
+
- name: health-acc-job
|
|
7
|
+
containers:
|
|
8
|
+
- name: health-acc-job
|
|
9
|
+
resources:
|
|
10
|
+
requests:
|
|
11
|
+
cpu: 0.2
|
|
12
|
+
memory: 128Mi
|
|
13
|
+
limits:
|
|
14
|
+
cpu: 0.2
|
|
15
|
+
memory: 128Mi
|
|
16
|
+
|
|
17
|
+
- name: uninstall-health-acc-job
|
|
18
|
+
containers:
|
|
19
|
+
- name: uninstall-health-acc-job
|
|
20
|
+
resources:
|
|
21
|
+
requests:
|
|
22
|
+
cpu: 0.2
|
|
23
|
+
memory: 128Mi
|
|
24
|
+
limits:
|
|
25
|
+
cpu: 0.2
|
|
26
|
+
memory: 128Mi
|
|
27
|
+
|
|
28
|
+
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# podTemplates
|
|
2
|
+
# ===================================================================================
|
|
3
|
+
# This list defines the resources for Deployment: Suite.
|
|
4
|
+
# The pod gets tested for scaling and affinity.
|
|
5
|
+
# The containers that get tested for resources - QoS class of Guaranteed and Burstable.
|
|
6
|
+
podTemplates:
|
|
7
|
+
- name: healthext-model-engine
|
|
8
|
+
containers:
|
|
9
|
+
- name: healthext-model-engine
|
|
10
|
+
resources:
|
|
11
|
+
requests:
|
|
12
|
+
cpu: 1000m
|
|
13
|
+
ephemeral-storage: 2Gi
|
|
14
|
+
memory: 1Gi
|
|
15
|
+
limits:
|
|
16
|
+
cpu: 1000m
|
|
17
|
+
ephemeral-storage: 2Gi
|
|
18
|
+
memory: 1Gi
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# podTemplates
|
|
2
|
+
# ===================================================================================
|
|
3
|
+
# This list defines the resources for Deployment: Suite.
|
|
4
|
+
# The pod gets tested for scaling and affinity.
|
|
5
|
+
# The containers that get tested for resources - QoS class of Guaranteed and Burstable.
|
|
6
|
+
podTemplates:
|
|
7
|
+
- name: imagestitching
|
|
8
|
+
containers:
|
|
9
|
+
- name: image-stitching
|
|
10
|
+
resources:
|
|
11
|
+
requests:
|
|
12
|
+
cpu: 3
|
|
13
|
+
memory: 16Gi
|
|
14
|
+
limits:
|
|
15
|
+
cpu: 3
|
|
16
|
+
memory: 16Gi
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# podTemplates
|
|
2
|
+
# ===================================================================================
|
|
3
|
+
# This list defines the resources for Deployment: Suite.
|
|
4
|
+
# The pod gets tested for scaling and affinity.
|
|
5
|
+
# The containers that get tested for resources - QoS class of Guaranteed and Burstable.
|
|
6
|
+
podTemplates:
|
|
7
|
+
- name: healthext-entitymgr-acc
|
|
8
|
+
containers:
|
|
9
|
+
- name: healthext-acc
|
|
10
|
+
resources:
|
|
11
|
+
requests:
|
|
12
|
+
cpu: 1
|
|
13
|
+
memory: 1024Mi
|
|
14
|
+
limits:
|
|
15
|
+
cpu: 1
|
|
16
|
+
memory: 1024Mi
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
# podTemplates
|
|
2
|
+
# ===================================================================================
|
|
3
|
+
# This list defines the resources for Deployment: Suite.
|
|
4
|
+
# The pod gets tested for scaling and affinity.
|
|
5
|
+
# The containers that get tested for resources - QoS class of Guaranteed and Burstable.
|
|
6
|
+
podTemplates:
|
|
7
|
+
- name: entitymgr-primary-entity
|
|
8
|
+
containers:
|
|
9
|
+
- name: manager
|
|
10
|
+
resources:
|
|
11
|
+
requests:
|
|
12
|
+
cpu: 0.2
|
|
13
|
+
memory: 512Mi
|
|
14
|
+
limits:
|
|
15
|
+
cpu: 0.2
|
|
16
|
+
memory: 512Mi
|
|
17
|
+
- name: entitymgr-appstatus
|
|
18
|
+
containers:
|
|
19
|
+
- name: manager
|
|
20
|
+
resources:
|
|
21
|
+
requests:
|
|
22
|
+
cpu: 0.8
|
|
23
|
+
memory: 1024Mi
|
|
24
|
+
limits:
|
|
25
|
+
cpu: 0.8
|
|
26
|
+
memory: 1024Mi
|
|
27
|
+
- name: entitymgr-bdi
|
|
28
|
+
containers:
|
|
29
|
+
- name: manager
|
|
30
|
+
resources:
|
|
31
|
+
requests:
|
|
32
|
+
cpu: 0.8
|
|
33
|
+
memory: 1024Mi
|
|
34
|
+
limits:
|
|
35
|
+
cpu: 0.8
|
|
36
|
+
memory: 1024Mi
|
|
37
|
+
- name: entitymgr-ws
|
|
38
|
+
containers:
|
|
39
|
+
- name: manager
|
|
40
|
+
resources:
|
|
41
|
+
requests:
|
|
42
|
+
cpu: 0.8
|
|
43
|
+
memory: 2Gi
|
|
44
|
+
limits:
|
|
45
|
+
cpu: 0.8
|
|
46
|
+
memory: 2Gi
|
|
47
|
+
- name: usersyncagent
|
|
48
|
+
containers:
|
|
49
|
+
- name: manage-usersyncagent
|
|
50
|
+
resources:
|
|
51
|
+
requests:
|
|
52
|
+
cpu: 0.25
|
|
53
|
+
memory: 256Mi
|
|
54
|
+
limits:
|
|
55
|
+
cpu: 0.25
|
|
56
|
+
memory: 256Mi
|
|
57
|
+
- name: groupsyncagent
|
|
58
|
+
containers:
|
|
59
|
+
- name: manage-groupsyncagent
|
|
60
|
+
resources:
|
|
61
|
+
requests:
|
|
62
|
+
cpu: 0.25
|
|
63
|
+
memory: 256Mi
|
|
64
|
+
limits:
|
|
65
|
+
cpu: 0.25
|
|
66
|
+
memory: 256Mi
|
|
67
|
+
- name: ibm-mas-imagestitching-operator
|
|
68
|
+
containers:
|
|
69
|
+
- name: imagestitching
|
|
70
|
+
resources:
|
|
71
|
+
requests:
|
|
72
|
+
cpu: 500m
|
|
73
|
+
memory: 1024Mi
|
|
74
|
+
limits:
|
|
75
|
+
cpu: 500m
|
|
76
|
+
memory: 1024Mi
|
|
77
|
+
- name: ibm-mas-slackproxy-operator
|
|
78
|
+
containers:
|
|
79
|
+
- name: slackproxy
|
|
80
|
+
resources:
|
|
81
|
+
requests:
|
|
82
|
+
cpu: 1
|
|
83
|
+
memory: 1024Mi
|
|
84
|
+
limits:
|
|
85
|
+
cpu: 1
|
|
86
|
+
memory: 1024Mi
|
|
87
|
+
- name: healthext-entitymgr-ws
|
|
88
|
+
containers:
|
|
89
|
+
- name: healthext
|
|
90
|
+
resources:
|
|
91
|
+
requests:
|
|
92
|
+
cpu: 1
|
|
93
|
+
memory: 1024Mi
|
|
94
|
+
limits:
|
|
95
|
+
cpu: 1
|
|
96
|
+
memory: 1024Mi
|
|
97
|
+
- name: entitymgr-acc
|
|
98
|
+
containers:
|
|
99
|
+
- name: manager
|
|
100
|
+
resources:
|
|
101
|
+
requests:
|
|
102
|
+
cpu: 1
|
|
103
|
+
memory: 1024Mi
|
|
104
|
+
limits:
|
|
105
|
+
cpu: 1
|
|
106
|
+
memory: 1024Mi
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
# podTemplates
|
|
2
|
+
# ===================================================================================
|
|
3
|
+
# This list defines the resources for Deployment: Suite.
|
|
4
|
+
# The pod gets tested for scaling and affinity.
|
|
5
|
+
# The containers that get tested for resources - QoS class of Guaranteed and Burstable.
|
|
6
|
+
podTemplates:
|
|
7
|
+
- name: monitoragent
|
|
8
|
+
containers:
|
|
9
|
+
- name: monitoragent
|
|
10
|
+
resources:
|
|
11
|
+
requests:
|
|
12
|
+
memory: 350Mi
|
|
13
|
+
cpu: 250m
|
|
14
|
+
limits:
|
|
15
|
+
memory: 350Mi
|
|
16
|
+
cpu: 250m
|
|
17
|
+
- name: manage-maxinst
|
|
18
|
+
containers:
|
|
19
|
+
- name: manage-maxinst-maxinst
|
|
20
|
+
resources:
|
|
21
|
+
requests:
|
|
22
|
+
cpu: "2"
|
|
23
|
+
memory: 4Gi
|
|
24
|
+
limits:
|
|
25
|
+
cpu: "2"
|
|
26
|
+
memory: 4Gi
|
|
27
|
+
- name: all
|
|
28
|
+
containers:
|
|
29
|
+
- name: all
|
|
30
|
+
resources:
|
|
31
|
+
requests:
|
|
32
|
+
cpu: "6"
|
|
33
|
+
memory: 10Gi
|
|
34
|
+
limits:
|
|
35
|
+
cpu: "6"
|
|
36
|
+
memory: 10Gi
|
|
37
|
+
- name: monitoragent
|
|
38
|
+
resources:
|
|
39
|
+
requests:
|
|
40
|
+
memory: "512Mi"
|
|
41
|
+
cpu: "1"
|
|
42
|
+
limits:
|
|
43
|
+
memory: "512Mi"
|
|
44
|
+
cpu: "1"
|
|
45
|
+
- name: ui
|
|
46
|
+
containers:
|
|
47
|
+
- name: ui
|
|
48
|
+
resources:
|
|
49
|
+
requests:
|
|
50
|
+
cpu: "6"
|
|
51
|
+
memory: 10Gi
|
|
52
|
+
limits:
|
|
53
|
+
cpu: "6"
|
|
54
|
+
memory: 10Gi
|
|
55
|
+
- name: monitoragent
|
|
56
|
+
resources:
|
|
57
|
+
requests:
|
|
58
|
+
memory: "512Mi"
|
|
59
|
+
cpu: "1"
|
|
60
|
+
limits:
|
|
61
|
+
memory: "512Mi"
|
|
62
|
+
cpu: "1"
|
|
63
|
+
- name: mea
|
|
64
|
+
containers:
|
|
65
|
+
- name: mea
|
|
66
|
+
resources:
|
|
67
|
+
requests:
|
|
68
|
+
cpu: "6"
|
|
69
|
+
memory: 10Gi
|
|
70
|
+
limits:
|
|
71
|
+
cpu: "6"
|
|
72
|
+
memory: 10Gi
|
|
73
|
+
- name: monitoragent
|
|
74
|
+
resources:
|
|
75
|
+
requests:
|
|
76
|
+
memory: "512Mi"
|
|
77
|
+
cpu: "1"
|
|
78
|
+
limits:
|
|
79
|
+
memory: "512Mi"
|
|
80
|
+
cpu: "1"
|
|
81
|
+
- name: rpt
|
|
82
|
+
containers:
|
|
83
|
+
- name: rpt
|
|
84
|
+
resources:
|
|
85
|
+
requests:
|
|
86
|
+
cpu: "6"
|
|
87
|
+
memory: 10Gi
|
|
88
|
+
limits:
|
|
89
|
+
cpu: "6"
|
|
90
|
+
memory: 10Gi
|
|
91
|
+
- name: monitoragent
|
|
92
|
+
resources:
|
|
93
|
+
requests:
|
|
94
|
+
memory: "512Mi"
|
|
95
|
+
cpu: "1"
|
|
96
|
+
limits:
|
|
97
|
+
memory: "512Mi"
|
|
98
|
+
cpu: "1"
|
|
99
|
+
- name: cron
|
|
100
|
+
containers:
|
|
101
|
+
- name: cron
|
|
102
|
+
resources:
|
|
103
|
+
requests:
|
|
104
|
+
cpu: "6"
|
|
105
|
+
memory: 10Gi
|
|
106
|
+
limits:
|
|
107
|
+
cpu: "6"
|
|
108
|
+
memory: 10Gi
|
|
109
|
+
- name: monitoragent
|
|
110
|
+
resources:
|
|
111
|
+
requests:
|
|
112
|
+
memory: "512Mi"
|
|
113
|
+
cpu: "1"
|
|
114
|
+
limits:
|
|
115
|
+
memory: "512Mi"
|
|
116
|
+
cpu: "1"
|
|
117
|
+
- name: jms
|
|
118
|
+
containers:
|
|
119
|
+
- name: jms
|
|
120
|
+
resources:
|
|
121
|
+
requests:
|
|
122
|
+
cpu: "6"
|
|
123
|
+
memory: 10Gi
|
|
124
|
+
limits:
|
|
125
|
+
cpu: "6"
|
|
126
|
+
memory: 10Gi
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# podTemplates
|
|
2
|
+
# ===================================================================================
|
|
3
|
+
# This list defines the resources for Deployment: Suite.
|
|
4
|
+
# The pod gets tested for scaling and affinity.
|
|
5
|
+
# The containers that get tested for resources - QoS class of Guaranteed and Burstable.
|
|
6
|
+
podTemplates:
|
|
7
|
+
- name: slackproxy
|
|
8
|
+
containers:
|
|
9
|
+
- name: slack-proxy
|
|
10
|
+
resources:
|
|
11
|
+
requests:
|
|
12
|
+
cpu: 3
|
|
13
|
+
memory: 16Gi
|
|
14
|
+
limits:
|
|
15
|
+
cpu: 3
|
|
16
|
+
memory: 16Gi
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# podTemplates
|
|
2
|
+
# =============================================================================
|
|
3
|
+
# This list defines the resources for pod containers/initContainers that get
|
|
4
|
+
# assigned a QoS class of Guaranteed. More can be found here:
|
|
5
|
+
# https://kubernetes.io/docs/tasks/configure-pod-container/quality-service-pod
|
|
6
|
+
podTemplates:
|
|
7
|
+
- name: push-notification-service
|
|
8
|
+
containers:
|
|
9
|
+
- name: push-notification-service
|
|
10
|
+
resources:
|
|
11
|
+
requests:
|
|
12
|
+
cpu: 0.8
|
|
13
|
+
memory: 256Mi
|
|
14
|
+
limits:
|
|
15
|
+
cpu: 0.8
|
|
16
|
+
memory: 256Mi
|
|
17
|
+
initContainers:
|
|
18
|
+
- name: push-notification-service-init
|
|
19
|
+
resources:
|
|
20
|
+
requests:
|
|
21
|
+
cpu: 0.4
|
|
22
|
+
memory: 256Mi
|
|
23
|
+
limits:
|
|
24
|
+
cpu: 0.4
|
|
25
|
+
memory: 256Mi
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# podTemplates
|
|
2
|
+
# =============================================================================
|
|
3
|
+
# This list defines the resources for pod containers/initContainers that get
|
|
4
|
+
# assigned a QoS class of Guaranteed. More can be found here:
|
|
5
|
+
# https://kubernetes.io/docs/tasks/configure-pod-container/quality-service-pod
|
|
6
|
+
podTemplates:
|
|
7
|
+
- name: scim-cronjob
|
|
8
|
+
containers:
|
|
9
|
+
- name: scimsync
|
|
10
|
+
resources:
|
|
11
|
+
requests:
|
|
12
|
+
cpu: 0.4
|
|
13
|
+
memory: 256Mi
|
|
14
|
+
limits:
|
|
15
|
+
cpu: 0.4
|
|
16
|
+
memory: 256Mi
|
|
17
|
+
- name: scimsync
|
|
18
|
+
containers:
|
|
19
|
+
- name: scimsync
|
|
20
|
+
resources:
|
|
21
|
+
requests:
|
|
22
|
+
cpu: 0.5
|
|
23
|
+
memory: 500Mi
|
|
24
|
+
limits:
|
|
25
|
+
cpu: 0.5
|
|
26
|
+
memory: 500Mi
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# podTemplates
|
|
2
|
+
# =============================================================================
|
|
3
|
+
# This list defines the resources for pod containers/initContainers that get
|
|
4
|
+
# assigned a QoS class of Guaranteed. More can be found here:
|
|
5
|
+
# https://kubernetes.io/docs/tasks/configure-pod-container/quality-service-pod
|
|
6
|
+
podTemplates:
|
|
7
|
+
- name: licensing-mediator
|
|
8
|
+
containers:
|
|
9
|
+
- name: licensing-mediator
|
|
10
|
+
resources:
|
|
11
|
+
requests:
|
|
12
|
+
cpu: 0.4
|
|
13
|
+
memory: 1Gi
|
|
14
|
+
limits:
|
|
15
|
+
cpu: 0.4
|
|
16
|
+
memory: 1Gi
|