mirror of
https://github.com/helm/charts.git
synced 2026-08-22 13:57:51 +00:00
* Implement Sysdig Secure flag and additional env var handling * Fix template * Add trailing \n on SecureConf * Fix linter errors * Fix linter errors with feeling
51 lines
1.3 KiB
YAML
51 lines
1.3 KiB
YAML
# Default values for Sysdig Monitor and Secure Helm package.
|
|
|
|
rbac:
|
|
# true here enables creation of rbac resources
|
|
install: false
|
|
# rbac version
|
|
apiVersion: v1beta1
|
|
|
|
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: ""
|
|
|
|
# Optional: additional configuration parameters.
|
|
# This will be moved into a ConfigMap shortly.
|
|
AdditionalConf: ""
|
|
|
|
serviceAccountName: "sysdig-account"
|
|
|
|
# Optional: array of additional env variables used for custom config.
|
|
# env:
|
|
# - name:
|
|
# value:
|
|
|
|
secure:
|
|
# true here enables Sysdig Secure: container run-time security & forensics
|
|
enable: false
|
|
|
|
# Default Sysdig Secure configuration (please add trailing \n)
|
|
SecureConf: "security: {enabled: true}\ncommandlines_capture: {enabled: true}\nmemdump: {enabled: true}\n"
|
|
|
|
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
|