mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
Kubernetes 1.6 switched to a taint on the master node, we need to add a toleration so this can schedule.
27 lines
561 B
YAML
27 lines
561 B
YAML
# Default values for Sysdig Monitor Helm package.
|
|
|
|
image:
|
|
repository: "sysdig/agent"
|
|
tag: "latest"
|
|
pullPolicy: "Always"
|
|
|
|
sysdig:
|
|
# Required: You need your Sysdig Monitor access key before running agents.
|
|
#AccessKey: ""
|
|
|
|
# Optional: Key-value agent tags following the format "key:val,key2:val2".
|
|
AgentTags: ""
|
|
|
|
resources:
|
|
requests:
|
|
cpu: 100m
|
|
memory: 512Mi
|
|
limits:
|
|
cpu: 500m
|
|
memory: 768Mi
|
|
|
|
# Allow sysdig to run on Kubernetes 1.6 masters.
|
|
tolerations:
|
|
- effect: NoSchedule
|
|
key: node-role.kubernetes.io/master
|