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
@@ -0,0 +1,46 @@
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
+ - name: entitymgr-appstatus
12
+ containers:
13
+ - name: manager
14
+ resources: {}
15
+ - name: entitymgr-bdi
16
+ containers:
17
+ - name: manager
18
+ resources: {}
19
+ - name: entitymgr-ws
20
+ containers:
21
+ - name: manager
22
+ resources: {}
23
+ - name: usersyncagent
24
+ containers:
25
+ - name: manage-usersyncagent
26
+ resources: {}
27
+ - name: groupsyncagent
28
+ containers:
29
+ - name: manage-groupsyncagent
30
+ resources: {}
31
+ - name: ibm-mas-imagestitching-operator
32
+ containers:
33
+ - name: imagestitching
34
+ resources: {}
35
+ - name: ibm-mas-slackproxy-operator
36
+ containers:
37
+ - name: slackproxy
38
+ resources: {}
39
+ - name: healthext-entitymgr-ws
40
+ containers:
41
+ - name: healthext
42
+ resources: {}
43
+ - name: entitymgr-acc
44
+ containers:
45
+ - name: manager
46
+ resources: {}
@@ -0,0 +1,48 @@
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
+ - name: manage-maxinst
12
+ containers:
13
+ - name: manage-maxinst-maxinst
14
+ resources: {}
15
+ - name: all
16
+ containers:
17
+ - name: all
18
+ resources: {}
19
+ - name: monitoragent
20
+ resources: {}
21
+ - name: ui
22
+ containers:
23
+ - name: ui
24
+ resources: {}
25
+ - name: monitoragent
26
+ resources: {}
27
+ - name: mea
28
+ containers:
29
+ - name: mea
30
+ resources: {}
31
+ - name: monitoragent
32
+ resources: {}
33
+ - name: rpt
34
+ containers:
35
+ - name: rpt
36
+ resources: {}
37
+ - name: monitoragent
38
+ resources: {}
39
+ - name: cron
40
+ containers:
41
+ - name: cron
42
+ resources: {}
43
+ - name: monitoragent
44
+ resources: {}
45
+ - name: jms
46
+ containers:
47
+ - name: jms
48
+ resources: {}
@@ -0,0 +1,10 @@
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: {}
@@ -0,0 +1,13 @@
1
+ # podTemplates
2
+ # =============================================================================
3
+ # This list defines the resources for pod containers/initContainers that get
4
+ # assigned a QoS class of BestEffort. 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
+ initContainers:
12
+ - name: push-notification-service-init
13
+ resources: {}
@@ -0,0 +1,14 @@
1
+ # podTemplates
2
+ # =============================================================================
3
+ # This list defines the resources for pod containers/initContainers that get
4
+ # assigned a QoS class of BestEffort. 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
+ - name: scimsync
12
+ containers:
13
+ - name: scimsync
14
+ resources: {}
@@ -0,0 +1,10 @@
1
+ # podTemplates
2
+ # =============================================================================
3
+ # This list defines the resources for pod containers/initContainers that get
4
+ # assigned a QoS class of BestEffort. 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: {}
@@ -0,0 +1,10 @@
1
+ # podTemplates
2
+ # =============================================================================
3
+ # This list defines the resources for pod containers/initContainers that get
4
+ # assigned a QoS class of BestEffort. More can be found here:
5
+ # https://kubernetes.io/docs/tasks/configure-pod-container/quality-service-pod
6
+ podTemplates:
7
+ - name: sendmailapi
8
+ containers:
9
+ - name: sendmailapi
10
+ resources: {}
@@ -0,0 +1,136 @@
1
+ # podTemplates
2
+ # =============================================================================
3
+ # This list defines the resources for pod containers/initContainers that get
4
+ # assigned a QoS class of BestEffort. More can be found here:
5
+ # https://kubernetes.io/docs/tasks/configure-pod-container/quality-service-pod
6
+ podTemplates:
7
+ - name: entitymgr-suite
8
+ containers:
9
+ - name: manager
10
+ resources: {}
11
+ - name: entitymgr-addons
12
+ containers:
13
+ - name: manager
14
+ resources: {}
15
+ - name: entitymgr-bascfg
16
+ containers:
17
+ - name: manager
18
+ resources: {}
19
+ - name: entitymgr-coreidp
20
+ containers:
21
+ - name: manager
22
+ resources: {}
23
+ - name: entitymgr-idpcfg
24
+ containers:
25
+ - name: manager
26
+ resources: {}
27
+ - name: entitymgr-jdbccfg
28
+ containers:
29
+ - name: manager
30
+ resources: {}
31
+ - name: entitymgr-kafkacfg
32
+ containers:
33
+ - name: manager
34
+ resources: {}
35
+ - name: entitymgr-mongocfg
36
+ containers:
37
+ - name: manager
38
+ resources: {}
39
+ - name: entitymgr-objectstorage
40
+ containers:
41
+ - name: manager
42
+ resources: {}
43
+ - name: entitymgr-pushnotificationcfg
44
+ containers:
45
+ - name: manager
46
+ resources: {}
47
+ - name: entitymgr-scimcfg
48
+ containers:
49
+ - name: manager
50
+ resources: {}
51
+ - name: entitymgr-slscfg
52
+ containers:
53
+ - name: manager
54
+ resources: {}
55
+ - name: entitymgr-smtpcfg
56
+ containers:
57
+ - name: manager
58
+ resources: {}
59
+ - name: entitymgr-watsonstudiocfg
60
+ containers:
61
+ - name: manager
62
+ resources: {}
63
+ - name: entitymgr-ws
64
+ containers:
65
+ - name: manager
66
+ resources: {}
67
+ - name: coreapi
68
+ containers:
69
+ - name: coreapi
70
+ resources: {}
71
+ - name: internalapi
72
+ containers:
73
+ - name: internalapi
74
+ resources: {}
75
+ - name: mobileapi
76
+ containers:
77
+ - name: mobileapi
78
+ resources: {}
79
+ initContainers:
80
+ - name: mobileapi-init
81
+ resources: {}
82
+ - name: catalogapi
83
+ containers:
84
+ - name: catalogapi
85
+ resources: {}
86
+ initContainers:
87
+ - name: catalogapi-init
88
+ resources: {}
89
+ - name: catalogmgr
90
+ containers:
91
+ - name: catalogmgr
92
+ resources: {}
93
+ initContainers:
94
+ - name: catalogmgr-init
95
+ resources: {}
96
+ - name: groupsync-coordinator
97
+ containers:
98
+ - name: groupsync-coordinator
99
+ resources: {}
100
+ initContainers:
101
+ - name: groupsync-coordinator-init
102
+ resources: {}
103
+ - name: usersync-coordinator
104
+ containers:
105
+ - name: usersync-coordinator
106
+ resources: {}
107
+ initContainers:
108
+ - name: usersync-coordinator-init
109
+ resources: {}
110
+ - name: workspace-coordinator
111
+ containers:
112
+ - name: workspace-coordinator
113
+ resources: {}
114
+ initContainers:
115
+ - name: workspace-coordinator-init
116
+ resources: {}
117
+ - name: monagent-mas
118
+ containers:
119
+ - name: monagent-mas
120
+ resources: {}
121
+ - name: admin-dashboard
122
+ containers:
123
+ - name: admin-dashboard
124
+ resources: {}
125
+ - name: homepage
126
+ containers:
127
+ - name: homepage
128
+ resources: {}
129
+ - name: navigator
130
+ containers:
131
+ - name: navigator
132
+ resources: {}
133
+ - name: ltpakeygenerator
134
+ containers:
135
+ - name: liberty
136
+ resources: {}
@@ -0,0 +1,34 @@
1
+ # supportedPodKeys
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: vision-service
8
+ containers:
9
+ - name: vision-service
10
+ resources: {}
11
+ - name: vision-ui
12
+ containers:
13
+ - name: vision-ui
14
+ resources: {}
15
+ - name: vision-video-microservice
16
+ containers:
17
+ - name: vision-video-microservice
18
+ resources: {}
19
+ - name: vision-dataset-summarization
20
+ containers:
21
+ - name: vision-dataset-summarization
22
+ resources: {}
23
+ - name: vision-edgeman
24
+ containers:
25
+ - name: vision-edgeman
26
+ resources: {}
27
+ - name: vision-dataset-feature
28
+ containers:
29
+ - name: vision-dataset-feature
30
+ resources: {}
31
+ - name: vision-model-conversion
32
+ containers:
33
+ - name: vision-model-conversion
34
+ resources: {}
@@ -0,0 +1,10 @@
1
+ # supportedPodTemplates
2
+ # =============================================================================
3
+ # This list defines the resources for pod containers/initContainers that get
4
+ # assigned a QoS class of BestEffort. More can be found here:
5
+ # https://kubernetes.io/docs/tasks/configure-pod-container/quality-service-pod
6
+ podTemplates:
7
+ - name: api-licensing
8
+ containers:
9
+ - name: api-licensing
10
+ resources: {}
@@ -0,0 +1,56 @@
1
+ # podTemplates
2
+ # =============================================================================
3
+ # This list defines the resources for pod containers/initContainers that get
4
+ # assigned a QoS class of BestEffort. More can be found here:
5
+ # https://kubernetes.io/docs/tasks/configure-pod-container/quality-service-pod
6
+ podTemplates:
7
+ - name: graph-store
8
+ containers:
9
+ - name: graph-store
10
+ resources:
11
+ requests:
12
+ cpu: 4
13
+ memory: 10Gi
14
+ limits:
15
+ cpu: 4
16
+ memory: 10Gi
17
+ - name: user-store
18
+ containers:
19
+ - name: user-store
20
+ resources:
21
+ requests:
22
+ cpu: 2
23
+ memory: 4Gi
24
+ limits:
25
+ cpu: 2
26
+ memory: 4Gi
27
+ - name: series-store
28
+ containers:
29
+ - name: series-store
30
+ resources:
31
+ requests:
32
+ cpu: 2
33
+ memory: 4Gi
34
+ limits:
35
+ cpu: 2
36
+ memory: 4Gi
37
+ - name: router
38
+ containers:
39
+ - name: router
40
+ resources:
41
+ requests:
42
+ cpu: 2
43
+ memory: 4Gi
44
+ limits:
45
+ cpu: 2
46
+ memory: 4Gi
47
+ - name: maximo-connector
48
+ containers:
49
+ - name: maximo-connector
50
+ resources:
51
+ requests:
52
+ cpu: 2
53
+ memory: 4Gi
54
+ limits:
55
+ cpu: 2
56
+ memory: 4Gi
@@ -0,0 +1,140 @@
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: accapppoints
8
+ containers:
9
+ - name: accapppoints
10
+ resources:
11
+ requests:
12
+ cpu: 0.4
13
+ memory: 1Gi
14
+ limits:
15
+ cpu: 0.4
16
+ memory: 1Gi
17
+ initContainers:
18
+ - name: accapppoints-init
19
+ resources:
20
+ requests:
21
+ cpu: 0.4
22
+ memory: 256Mi
23
+ limits:
24
+ cpu: 0.4
25
+ memory: 256Mi
26
+ - name: usage-daily
27
+ containers:
28
+ - name: usage-daily
29
+ resources:
30
+ requests:
31
+ cpu: 0.4
32
+ memory: 1Gi
33
+ limits:
34
+ cpu: 0.4
35
+ memory: 1Gi
36
+ initContainers:
37
+ - name: adoptionusagemetering-daily-init
38
+ resources:
39
+ requests:
40
+ cpu: 0.4
41
+ memory: 256Mi
42
+ limits:
43
+ cpu: 0.4
44
+ memory: 256Mi
45
+ - name: usage-historical
46
+ containers:
47
+ - name: usage-historical
48
+ resources:
49
+ requests:
50
+ cpu: 0.4
51
+ memory: 1Gi
52
+ limits:
53
+ cpu: 0.4
54
+ memory: 1Gi
55
+ initContainers:
56
+ - name: adoptionusagemetering-historical-init
57
+ resources:
58
+ requests:
59
+ cpu: 0.4
60
+ memory: 256Mi
61
+ limits:
62
+ cpu: 0.4
63
+ memory: 256Mi
64
+ - name: usage-hourly
65
+ containers:
66
+ - name: usage-hourly
67
+ resources:
68
+ requests:
69
+ cpu: 0.4
70
+ memory: 1Gi
71
+ limits:
72
+ cpu: 0.4
73
+ memory: 1Gi
74
+ initContainers:
75
+ - name: adoptionusagemetering-hourly-init
76
+ resources:
77
+ requests:
78
+ cpu: 0.4
79
+ memory: 256Mi
80
+ limits:
81
+ cpu: 0.4
82
+ memory: 256Mi
83
+ - name: adoptionusage-reporter
84
+ containers:
85
+ - name: adoptionusage-reporter
86
+ resources:
87
+ requests:
88
+ cpu: 0.4
89
+ memory: 1Gi
90
+ limits:
91
+ cpu: 0.4
92
+ memory: 1Gi
93
+ initContainers:
94
+ - name: adoptionusagereporter-init
95
+ resources:
96
+ requests:
97
+ cpu: 0.4
98
+ memory: 256Mi
99
+ limits:
100
+ cpu: 0.4
101
+ memory: 256Mi
102
+ - name: adoptionusageapi
103
+ containers:
104
+ - name: adoptionusageapi
105
+ resources:
106
+ requests:
107
+ cpu: 0.4
108
+ memory: 1Gi
109
+ limits:
110
+ cpu: 0.4
111
+ memory: 1Gi
112
+ initContainers:
113
+ - name: adoptionusageapi-init
114
+ resources:
115
+ requests:
116
+ cpu: 0.4
117
+ memory: 256Mi
118
+ limits:
119
+ cpu: 0.4
120
+ memory: 256Mi
121
+ - name: milestonesapi
122
+ containers:
123
+ - name: milestonesapi
124
+ resources:
125
+ requests:
126
+ cpu: 0.4
127
+ memory: 1Gi
128
+ limits:
129
+ cpu: 0.4
130
+ memory: 1Gi
131
+ - name: suds
132
+ containers:
133
+ - name: suds
134
+ resources:
135
+ requests:
136
+ cpu: 0.4
137
+ memory: 1Gi
138
+ limits:
139
+ cpu: 0.4
140
+ memory: 1Gi
@@ -0,0 +1,45 @@
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: coreidp
8
+ containers:
9
+ - name: coreidp
10
+ resources:
11
+ requests:
12
+ cpu: 1.5
13
+ memory: 1Gi
14
+ limits:
15
+ cpu: 1.5
16
+ memory: 1Gi
17
+ initContainers:
18
+ - name: coreidp-init
19
+ resources:
20
+ requests:
21
+ cpu: 0.4
22
+ memory: 512Mi
23
+ limits:
24
+ cpu: 0.4
25
+ memory: 512Mi
26
+ - name: coreidp-login
27
+ containers:
28
+ - name: coreidp-login
29
+ resources:
30
+ requests:
31
+ cpu: 0.8
32
+ memory: 512Mi
33
+ limits:
34
+ cpu: 0.8
35
+ memory: 512Mi
36
+ - name: oidcclientreg
37
+ containers:
38
+ - name: liberty
39
+ resources:
40
+ requests:
41
+ cpu: 0.2
42
+ memory: 256Mi
43
+ limits:
44
+ cpu: 0.2
45
+ memory: 256Mi
@@ -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: action-mgr-invoker
8
+ containers:
9
+ - name: action-mgr
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: action-mgr-resolver
26
+ containers:
27
+ - name: action-mgr
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: api-actions
44
+ containers:
45
+ - name: api-actions
46
+ resources:
47
+ requests:
48
+ cpu: 2
49
+ memory: 2Gi
50
+ limits:
51
+ cpu: 2
52
+ memory: 2Gi
53
+ - name: statsd
54
+ resources:
55
+ requests:
56
+ cpu: 0.2
57
+ memory: 512Mi
58
+ limits:
59
+ cpu: 0.2
60
+ memory: 512Mi
61
+ - name: deprovagent-actions
62
+ containers:
63
+ - name: deprovagent-actions
64
+ resources:
65
+ requests:
66
+ cpu: 0.25
67
+ memory: 256Mi
68
+ limits:
69
+ cpu: 0.25
70
+ memory: 256Mi