Files
deprecated-helm-charts/stable/sysdig/values.yaml
T
Néstor Salcedaandk8s-ci-robot f466d228d0 [stable/sysdig] Allow to use other image registries than docker.io (#9301)
* Allow to use other image registries than docker.io

Signed-off-by: Néstor Salceda <nestor.salceda@sysdig.com>

* Add a section to README for documenting how to use private repositories

Signed-off-by: Néstor Salceda <nestor.salceda@sysdig.com>

* Add a section for documenting the AWS Marketplace setup.

Signed-off-by: Néstor Salceda <nestor.salceda@sysdig.com>

* Do not create Daemonset if accessKey is missing

This fixes the CI build

Signed-off-by: Néstor Salceda <nestor.salceda@sysdig.com>

* Fixes suggested by @bencer

Thanks!

Signed-off-by: Néstor Salceda <nestor.salceda@sysdig.com>

* Fix the changes that @bencer requested.

I didn't see them before

Signed-off-by: Néstor Salceda <nestor.salceda@sysdig.com>

* Fix feedback from @bencer

Signed-off-by: Néstor Salceda <nestor.salceda@sysdig.com>
2018-11-19 09:00:56 -08:00

84 lines
2.5 KiB
YAML

# Default values for Sysdig Monitor and Secure Helm package.
image:
registry: docker.io
repository: sysdig/agent
tag: latest
# Specify a imagePullPolicy
# Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
# ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images
pullPolicy: Always
# Optionally specify an array of imagePullSecrets.
# Secrets must be manually created in the namespace.
# ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
#
# pullSecrets:
# - name: myRegistrKeySecretName
resources: {}
# We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little
# resources, such as Minikube. If you do want to specify resources, uncomment the following
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
# limits:
# cpu: 30m
# memory: 128Mi
# requests:
# cpu: 20m
# memory: 128Mi
rbac:
# true here enables creation of rbac resources
create: true
serviceAccount:
# Create and use serviceAccount resources
create: true
# Use this value as serviceAccountName
name:
daemonset: {}
# Allow the DaemonSet to perform a rolling update on helm update
# ref: https://kubernetes.io/docs/tasks/manage-daemon/update-daemon-set/
# updateStrategy: RollingUpdate
sysdig:
# Required: You need your Sysdig Monitor access key before running agents.
# accessKey: ""
settings: {}
### Agent tags
# tags: linux:ubuntu,dept:dev,local:nyc
#### Sysdig Software related config ####
# Sysdig collector address
# collector: 192.168.1.1
# Collector TCP port
# collector_port: 6666
# Whether collector accepts ssl
# ssl: true
# collector certificate validation
# ssl_verify_certificate: true
#######################################
# new_k8s: true
# k8s_cluster_name: production
secure:
# true here enables Sysdig Secure: container run-time security & forensics
enabled: false
customAppChecks: {}
# Allow passing custom app checks for Sysdig Agent.
# Example:
#
# sample.py: |-
# from checks import AgentCheck
#
# class MyCustomCheck(AgentCheck):
# def check(self, instance):
# self.gauge("testhelm", 1)
# Allow sysdig to run on Kubernetes 1.6 masters.
tolerations:
- effect: NoSchedule
key: node-role.kubernetes.io/master