Skip to content
Snippets Groups Projects
Commit 1fbd2436 authored by Vivian Ta's avatar Vivian Ta Committed by Derek Su
Browse files

fix: SWI-11761 add ability to set resources requests/limits for helper pod

parent 77e4a262
No related branches found
No related tags found
No related merge requests found
...@@ -52,3 +52,6 @@ data: ...@@ -52,3 +52,6 @@ data:
image: {{ .Values.helperImage.repository }}:{{ .Values.helperImage.tag }} image: {{ .Values.helperImage.repository }}:{{ .Values.helperImage.tag }}
{{- end }} {{- end }}
imagePullPolicy: {{ .Values.image.pullPolicy }} imagePullPolicy: {{ .Values.image.pullPolicy }}
resources:
{{- toYaml .Values.helperPod.resources | nindent 8 }}
...@@ -115,6 +115,15 @@ resources: {} ...@@ -115,6 +115,15 @@ resources: {}
# cpu: 100m # cpu: 100m
# memory: 128Mi # memory: 128Mi
helperPod:
resources: {}
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
rbac: rbac:
# Specifies whether RBAC resources should be created # Specifies whether RBAC resources should be created
create: true create: true
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment