Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions helm/holmes/templates/holmes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,12 @@ spec:
mountPath: /etc/robusta/config
- name: custom-toolsets-configmap
mountPath: /etc/holmes/config
resources:
requests:
cpu: {{ .Values.resources.requests.cpu }}
memory: {{ .Values.resources.requests.memory }}
limits:
memory: {{ .Values.resources.limits.memory }}
{{- if .Values.tolerations }}
tolerations: {{ toYaml .Values.tolerations | nindent 8 }}
{{- end }}
Expand Down
9 changes: 8 additions & 1 deletion helm/holmes/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,11 @@ serviceAccount:
imagePullSecrets: []
annotations: {}

toolsets: []
toolsets: []

resources:
requests:
cpu: 50m
memory: 512Mi
limits:
memory: 512Mi