diff options
4 files changed, 16 insertions, 15 deletions
diff --git a/kubernetes/holmes/components/holmes-engine-mgmt/values.yaml b/kubernetes/holmes/components/holmes-engine-mgmt/values.yaml index 028ca8d71e..17e51d76ce 100644 --- a/kubernetes/holmes/components/holmes-engine-mgmt/values.yaml +++ b/kubernetes/holmes/components/holmes-engine-mgmt/values.yaml @@ -108,17 +108,17 @@ readiness: resources: small: limits: - cpu: 500m - memory: 1Gi + cpu: 1 + memory: 2Gi requests: - cpu: 250m - memory: 500Mi + cpu: 0.5 + memory: 1Gi large: limits: - cpu: 500m + cpu: 1 memory: 2Gi requests: - cpu: 250m + cpu: 1 memory: 1Gi unlimited: {} diff --git a/kubernetes/holmes/components/holmes-rule-mgmt/templates/deployment.yaml b/kubernetes/holmes/components/holmes-rule-mgmt/templates/deployment.yaml index db0eb16092..f24d8eab65 100644 --- a/kubernetes/holmes/components/holmes-rule-mgmt/templates/deployment.yaml +++ b/kubernetes/holmes/components/holmes-rule-mgmt/templates/deployment.yaml @@ -68,6 +68,7 @@ spec: - name: {{ include "common.name" . }} image: {{ include "repositoryGenerator.repository" . }}/{{ .Values.image }} imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} + resources: {{ include "common.resources" . | nindent 10 }} ports: {{ include "common.containerPorts" . | nindent 8 }} volumeMounts: - name: {{ include "common.fullname" . }}-env-config diff --git a/kubernetes/holmes/components/holmes-rule-mgmt/values.yaml b/kubernetes/holmes/components/holmes-rule-mgmt/values.yaml index d91bb1eeeb..1553d66411 100644 --- a/kubernetes/holmes/components/holmes-rule-mgmt/values.yaml +++ b/kubernetes/holmes/components/holmes-rule-mgmt/values.yaml @@ -120,18 +120,18 @@ readiness: resources: small: limits: - cpu: 250m - memory: 1024Mi + cpu: 1 + memory: 1Gi requests: - cpu: 250m - memory: 256Mi + cpu: 0.5 + memory: 1Gi large: limits: - cpu: 500m + cpu: 1 memory: 2Gi requests: - cpu: 500m - memory: 512Mi + cpu: 0.5 + memory: 1Gi unlimited: {} readinessCheck: diff --git a/kubernetes/so/components/so-admin-cockpit/values.yaml b/kubernetes/so/components/so-admin-cockpit/values.yaml index de6f031435..8186d436b6 100644 --- a/kubernetes/so/components/so-admin-cockpit/values.yaml +++ b/kubernetes/so/components/so-admin-cockpit/values.yaml @@ -125,12 +125,12 @@ resources: unlimited: {} readinessProbe: port: 9091 - initialDelaySeconds: 20 + initialDelaySeconds: 40 periodSeconds: 10 timeoutSeconds: 10 livenessProbe: port: 9091 - initialDelaySeconds: 40 + initialDelaySeconds: 80 periodSeconds: 10 timeoutSeconds: 10 successThreshold: 1 |