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,52 @@
1
+ ---
2
+ apiVersion: v1
3
+ kind: Secret
4
+ type: Opaque
5
+ metadata:
6
+ {%- if scope == "system" %}
7
+ name: "jdbc-system-credentials"
8
+ {%- elif scope == "workspace-application" %}
9
+ name: "jdbc-{{ mas_workspace_id}}-{{ mas_application_id }}-credentials"
10
+ {%- endif %}
11
+ namespace: "mas-{{ mas_instance_id }}-core"
12
+ stringData:
13
+ username: "{{ jdbc_username }}"
14
+ password: "{{ jdbc_password }}"
15
+ ---
16
+ apiVersion: config.mas.ibm.com/v1
17
+ kind: JdbcCfg
18
+ metadata:
19
+ {%- if scope == "system" %}
20
+ name: "{{ mas_instance_id }}-jdbc-system"
21
+ {%- elif scope == "workspace-application" %}
22
+ name: "{{ mas_instance_id }}-jdbc-wsapp-{{ mas_workspace_id }}-{{ mas_application_id }}"
23
+ {%- endif %}
24
+ namespace: "mas-{{ mas_instance_id }}-core"
25
+ labels:
26
+ 'mas.ibm.com/configScope': 'system'
27
+ 'mas.ibm.com/instanceId': '{{ mas_instance_id }}'
28
+ {%- if scope == "workspace-application" %}
29
+ 'mas.ibm.com/workspaceId': '{{ mas_workspace_id }}'
30
+ 'mas.ibm.com/applicationId': '{{ mas_application_id }}'
31
+ {%- endif %}
32
+ spec:
33
+ displayName: "{{ cfg_display_name }}"
34
+ config:
35
+ url: "{{ jdbc_url }}"
36
+ sslEnabled: {{ jdbc_ssl_enabled }}
37
+ credentials:
38
+ {%- if scope == "system" %}
39
+ secretName: "jdbc-system-credentials"
40
+ {%- elif scope == "workspace-application" %}
41
+ secretName: "jdbc-{{ mas_workspace_id}}-{{ mas_application_id }}-credentials"
42
+ {%- endif %}
43
+ {%- if jdbc_ssl_enabled == True %}
44
+ certificates:
45
+ {%- if scope == "system" %}
46
+ - alias: "jdbc-system"
47
+ {%- elif scope == "workspace-application" %}
48
+ - alias: "jdbc-{{ mas_workspace_id}}-{{ mas_application_id }}"
49
+ {%- endif %}
50
+ crt: |
51
+ {{ jdbc_cert_local_file_content | indent(8) }}
52
+ {%- endif %}
@@ -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 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
+ - name: user-store
12
+ containers:
13
+ - name: user-store
14
+ resources: {}
15
+ - name: series-store
16
+ containers:
17
+ - name: series-store
18
+ resources: {}
19
+ - name: router
20
+ containers:
21
+ - name: router
22
+ resources: {}
23
+ - name: maximo-connector
24
+ containers:
25
+ - name: maximo-connector
26
+ 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: accapppoints
8
+ containers:
9
+ - name: accapppoints
10
+ resources: {}
11
+ initContainers:
12
+ - name: accapppoints-init
13
+ resources: {}
14
+ - name: usage-daily
15
+ containers:
16
+ - name: usage-daily
17
+ resources: {}
18
+ initContainers:
19
+ - name: adoptionusagemetering-daily-init
20
+ resources: {}
21
+ - name: usage-historical
22
+ containers:
23
+ - name: usage-historical
24
+ resources: {}
25
+ initContainers:
26
+ - name: adoptionusagemetering-historical-init
27
+ resources: {}
28
+ - name: usage-hourly
29
+ containers:
30
+ - name: usage-hourly
31
+ resources: {}
32
+ initContainers:
33
+ - name: adoptionusagemetering-hourly-init
34
+ resources: {}
35
+ - name: adoptionusage-reporter
36
+ containers:
37
+ - name: adoptionusage-reporter
38
+ resources: {}
39
+ initContainers:
40
+ - name: adoptionusagereporter-init
41
+ resources: {}
42
+ - name: adoptionusageapi
43
+ containers:
44
+ - name: adoptionusageapi
45
+ resources: {}
46
+ initContainers:
47
+ - name: adoptionusageapi-init
48
+ resources: {}
49
+ - name: milestonesapi
50
+ containers:
51
+ - name: milestonesapi
52
+ resources: {}
53
+ - name: suds
54
+ containers:
55
+ - name: suds
56
+ resources: {}
@@ -0,0 +1,21 @@
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: coreidp
8
+ containers:
9
+ - name: coreidp
10
+ resources: {}
11
+ initContainers:
12
+ - name: coreidp-init
13
+ resources: {}
14
+ - name: coreidp-login
15
+ containers:
16
+ - name: coreidp-login
17
+ resources: {}
18
+ - name: oidcclientreg
19
+ containers:
20
+ - name: liberty
21
+ resources: {}
@@ -0,0 +1,28 @@
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: action-mgr-invoker
8
+ containers:
9
+ - name: action-mgr
10
+ resources: {}
11
+ - name: statsd
12
+ resources: {}
13
+ - name: action-mgr-resolver
14
+ containers:
15
+ - name: action-mgr
16
+ resources: {}
17
+ - name: statsd
18
+ resources: {}
19
+ - name: api-actions
20
+ containers:
21
+ - name: api-actions
22
+ resources: {}
23
+ - name: statsd
24
+ resources: {}
25
+ - name: deprovagent-actions
26
+ containers:
27
+ - name: deprovagent-actions
28
+ resources: {}
@@ -0,0 +1,32 @@
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: api-authentication
8
+ containers:
9
+ - name: api-authentication
10
+ resources: {}
11
+ - name: statsd
12
+ resources: {}
13
+ - name: api-authorization
14
+ containers:
15
+ - name: api-authorization
16
+ resources: {}
17
+ - name: statsd
18
+ resources: {}
19
+ - name: auth-store
20
+ containers:
21
+ - name: auth-store
22
+ resources: {}
23
+ - name: statsd
24
+ resources: {}
25
+ - name: deprovagent-auth
26
+ containers:
27
+ - name: deprovagent-auth
28
+ resources: {}
29
+ - name: masuseragent
30
+ containers:
31
+ - name: masuseragent
32
+ resources: {}
@@ -0,0 +1,12 @@
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: datapower
8
+ containers:
9
+ - name: datapower
10
+ resources: {}
11
+ - name: datapower-config
12
+ 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: api-devops
8
+ containers:
9
+ - name: api-devops
10
+ resources: {}
11
+ - name: api-status
12
+ containers:
13
+ - name: api-status
14
+ resources: {}
@@ -0,0 +1,22 @@
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: api-devicemgmt
8
+ containers:
9
+ - name: api-devicemgmt
10
+ resources: {}
11
+ - name: statsd
12
+ resources: {}
13
+ - name: deprovagent-dm
14
+ containers:
15
+ - name: deprovagent-dm
16
+ resources: {}
17
+ - name: devicemgmt-server
18
+ containers:
19
+ - name: devicemgmt-server
20
+ resources: {}
21
+ - name: statsd
22
+ resources: {}
@@ -0,0 +1,40 @@
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: api-connectors
8
+ containers:
9
+ - name: api-connectors
10
+ resources: {}
11
+ - name: statsd
12
+ resources: {}
13
+ - name: api-importconnectors
14
+ containers:
15
+ - name: api-importconnectors
16
+ resources: {}
17
+ - name: statsd
18
+ resources: {}
19
+ - name: connectors-store
20
+ containers:
21
+ - name: connectors-store
22
+ resources: {}
23
+ - name: statsd
24
+ resources: {}
25
+ - name: data-import-connector
26
+ containers:
27
+ - name: data-import-connector
28
+ resources: {}
29
+ - name: statsd
30
+ resources: {}
31
+ - name: historian-configuration-manager
32
+ containers:
33
+ - name: historian-configuration-manager
34
+ resources: {}
35
+ - name: historian-connector
36
+ containers:
37
+ - name: historian-connector
38
+ resources: {}
39
+ - name: statsd
40
+ 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: edgeconfig-server
8
+ containers:
9
+ - name: edgeconfig-server
10
+ resources: {}
@@ -0,0 +1,24 @@
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: api-pipeline
8
+ containers:
9
+ - name: api-pipeline
10
+ resources: {}
11
+ - name: deprovagent-fpl
12
+ containers:
13
+ - name: deprovagent-fpl
14
+ resources: {}
15
+ - name: functionsexecutor
16
+ containers:
17
+ - name: functionsexecutor
18
+ resources: {}
19
+ - name: statsd
20
+ resources: {}
21
+ - name: pipelinerouter
22
+ containers:
23
+ - name: pipelinerouter
24
+ resources: {}
@@ -0,0 +1,20 @@
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: api-riskmgmt-secguardian
8
+ containers:
9
+ - name: api-riskmgmt-secguardian
10
+ resources: {}
11
+ - name: statsd
12
+ resources: {}
13
+ - name: deprovagent-guardian
14
+ containers:
15
+ - name: deprovagent-guardian
16
+ resources: {}
17
+ - name: provagent-guardian
18
+ containers:
19
+ - name: provagent-guardian
20
+ 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: monagent-iot
8
+ containers:
9
+ - name: monagent-iot
10
+ resources: {}
@@ -0,0 +1,18 @@
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: monagent-msserver
8
+ containers:
9
+ - name: monagent-msserver
10
+ resources: {}
11
+ - name: statsd
12
+ resources: {}
13
+ - name: api-mbgadmin
14
+ containers:
15
+ - name: api-mbgadmin
16
+ resources: {}
17
+ - name: statsd
18
+ 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: msproxy
8
+ containers:
9
+ - name: msproxy
10
+ resources: {}
11
+ - name: monitor
12
+ resources: {}
13
+ - name: statsd
14
+ resources: {}
@@ -0,0 +1,18 @@
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: entity-connector
8
+ containers:
9
+ - name: entity-connector
10
+ resources: {}
11
+ - name: statsd
12
+ resources: {}
13
+ - name: entity-manager
14
+ containers:
15
+ - name: entity-manager
16
+ resources: {}
17
+ - name: statsd
18
+ resources: {}
@@ -0,0 +1,48 @@
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: api-organizations
8
+ containers:
9
+ - name: api-organizations
10
+ resources: {}
11
+ - name: statsd
12
+ resources: {}
13
+ - name: config-store
14
+ containers:
15
+ - name: config-store
16
+ resources: {}
17
+ - name: statsd
18
+ resources: {}
19
+ - name: deprovagent-orgmgmt
20
+ containers:
21
+ - name: deprovagent-orgmgmt
22
+ resources: {}
23
+ - name: monagent-org
24
+ containers:
25
+ - name: monagent-org
26
+ resources: {}
27
+ - name: statsd
28
+ resources: {}
29
+ - name: org-store
30
+ containers:
31
+ - name: org-store
32
+ resources: {}
33
+ - name: statsd
34
+ resources: {}
35
+ - name: orgdeprovmgr
36
+ containers:
37
+ - name: orgdeprovmgr
38
+ resources: {}
39
+ - name: orgpoolmgr
40
+ containers:
41
+ - name: orgpoolmgr
42
+ resources: {}
43
+ - name: statsd
44
+ resources: {}
45
+ - name: orgprovmgr
46
+ containers:
47
+ - name: orgprovmgr
48
+ resources: {}
@@ -0,0 +1,28 @@
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: api-resourcecontroller
8
+ containers:
9
+ - name: api-resourcecontroller
10
+ resources: {}
11
+ - name: statsd
12
+ resources: {}
13
+ - name: api-s2s
14
+ containers:
15
+ - name: api-s2s
16
+ resources: {}
17
+ - name: statsd
18
+ resources: {}
19
+ - name: deprovagent-provision
20
+ containers:
21
+ - name: deprovagent-provision
22
+ resources: {}
23
+ - name: s2s-store
24
+ containers:
25
+ - name: s2s-store
26
+ resources: {}
27
+ - name: statsd
28
+ resources: {}
@@ -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 BestEffort. 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
+ - name: api-org
12
+ containers:
13
+ - name: api-org
14
+ resources: {}
15
+ - name: statsd
16
+ resources: {}
17
+ - name: deprovagent-registry
18
+ containers:
19
+ - name: deprovagent-registry
20
+ resources: {}
21
+ - name: device-store
22
+ containers:
23
+ - name: device-store
24
+ resources: {}
25
+ - name: statsd
26
+ resources: {}
@@ -0,0 +1,40 @@
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: api-schemas
8
+ containers:
9
+ - name: api-schemas
10
+ resources: {}
11
+ - name: statsd
12
+ resources: {}
13
+ - name: api-state
14
+ containers:
15
+ - name: api-state
16
+ resources: {}
17
+ - name: statsd
18
+ resources: {}
19
+ - name: deprovagent-state
20
+ containers:
21
+ - name: deprovagent-state
22
+ resources: {}
23
+ - name: mqtt-connector
24
+ containers:
25
+ - name: mqtt-connector
26
+ resources: {}
27
+ - name: statsd
28
+ resources: {}
29
+ - name: state-updater-devices
30
+ containers:
31
+ - name: state-updater
32
+ resources: {}
33
+ - name: statsd
34
+ resources: {}
35
+ - name: state-updater-things
36
+ containers:
37
+ - name: state-updater
38
+ resources: {}
39
+ - name: statsd
40
+ resources: {}
@@ -0,0 +1,22 @@
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: api-dashboard
8
+ containers:
9
+ - name: api-dashboard
10
+ resources: {}
11
+ - name: statsd
12
+ resources: {}
13
+ - name: dashboard
14
+ containers:
15
+ - name: dashboard
16
+ resources: {}
17
+ - name: statsd
18
+ resources: {}
19
+ - name: deprovagent-webui
20
+ containers:
21
+ - name: deprovagent-webui
22
+ resources: {}
@@ -0,0 +1,13 @@
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
+ - name: uninstall-health-acc-job
11
+ containers:
12
+ - name: uninstall-health-acc-job
13
+ 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: healthext-model-engine
8
+ containers:
9
+ - name: healthext-model-engine
10
+ 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: imagestitching
8
+ containers:
9
+ - name: image-stitching
10
+ 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: healthext-entitymgr-acc
8
+ containers:
9
+ - name: healthext-acc
10
+ resources: {}