Skip to content
Merged
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
4 changes: 4 additions & 0 deletions deploy/chart/templates/daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,10 @@ spec:
securityContext:
{{- toYaml . | nindent 12 }}
{{- end }}
{{- with .Values.resources }}
resources:
{{- toYaml . | nindent 12 }}
{{- end }}
volumeMounts:
- mountPath: /etc/kubernetes
name: k8s
Expand Down
8 changes: 8 additions & 0 deletions deploy/chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -104,5 +104,13 @@ volumeMounts:
# - mountPath: /tmp/
# name: test-volume

resources:
# requests:
# memory: "100Mi"
# cpu: "50m"
# limits:
# memory: "1000Mi"
# cpu: "1000m"

# This flag allows to scrape /metrics endpoint without authorization
allowUnauthorizedMetrics: false
Loading