Files
deprecated-helm-charts/stable/sysdig/values.yaml
T
Ashley Penney 31098bf3c2 Allow sysdig to run on master nodes (#1100)
Kubernetes 1.6 switched to a taint on the master node, we need to
add a toleration so this can schedule.
2017-05-22 20:20:54 +02:00

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