Skip to content
Snippets Groups Projects
Commit ebf6c65f authored by Sören Henning's avatar Sören Henning
Browse files

Set resource constraints for Theodolite pods

parent 82188452
Branches
Tags
No related merge requests found
Pipeline #6190 passed
This commit is part of merge request !230. Comments created here will be created in the context of that merge request.
......@@ -31,6 +31,13 @@ spec:
volumeMounts:
- name: theodolite-results-volume
mountPath: "/deployments/results"
resources:
requests:
memory: "512Mi"
cpu: "250m"
limits:
memory: "1024Mi"
cpu: "500m"
{{- if .Values.operator.sloChecker.generic.enabled }}
- name: slo-checker-generic
image: "{{ .Values.operator.sloChecker.generic.image }}:{{ .Values.operator.sloChecker.generic.imageTag }}"
......@@ -43,6 +50,13 @@ spec:
value: "8082"
- name: LOG_LEVEL
value: INFO
resources:
requests:
memory: "64Mi"
cpu: "50m"
limits:
memory: "128Mi"
cpu: "100m"
{{- end }}
{{- if .Values.operator.sloChecker.lagTrend.enabled }}
- name: lag-trend-slo-checker
......@@ -54,6 +68,13 @@ spec:
env:
- name: LOG_LEVEL
value: INFO
resources:
requests:
memory: "64Mi"
cpu: "50m"
limits:
memory: "128Mi"
cpu: "100m"
{{- end }}
{{- if .Values.operator.sloChecker.droppedRecordsKStreams.enabled }}
- name: slo-checker-dropped-records-kstreams
......@@ -67,6 +88,13 @@ spec:
value: "8081"
- name: LOG_LEVEL
value: INFO
resources:
requests:
memory: "64Mi"
cpu: "50m"
limits:
memory: "128Mi"
cpu: "100m"
{{- end }}
{{- if .Values.operator.resultsVolume.accessSidecar.enabled }}
- name: results-access
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment