We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4024ed3 commit bb765c2Copy full SHA for bb765c2
deploy/chart/templates/daemonset.yaml
@@ -101,6 +101,10 @@ spec:
101
securityContext:
102
{{- toYaml . | nindent 12 }}
103
{{- end }}
104
+ {{- with .Values.resources }}
105
+ resources:
106
+ {{- toYaml . | nindent 12 }}
107
+ {{- end }}
108
volumeMounts:
109
- mountPath: /etc/kubernetes
110
name: k8s
deploy/chart/values.yaml
@@ -104,5 +104,13 @@ volumeMounts:
# - mountPath: /tmp/
# name: test-volume
+resources:
+ # requests:
+ # memory: "100Mi"
+ # cpu: "50m"
111
+ # limits:
112
+ # memory: "1000Mi"
113
+ # cpu: "1000m"
114
+
115
# This flag allows to scrape /metrics endpoint without authorization
116
allowUnauthorizedMetrics: false
0 commit comments