pod-volume-cleaner/helm/values.yaml

129 lines
3.0 KiB
YAML
Raw Permalink Normal View History

2022-10-11 14:48:46 +00:00
# -- Override the name of the chart
nameOverride:
2022-09-12 14:34:34 +00:00
2022-10-11 14:48:46 +00:00
# -- Override the expanded name of the chart
fullnameOverride:
2022-09-12 14:34:34 +00:00
image:
2022-10-11 14:48:46 +00:00
# -- Image repository
repository: git.cyrilix.bzh/cyrilix/pod-volume-cleaner
# -- Image tag
# Defaults to appVersion in Chart.yaml if omitted
2022-09-12 14:34:34 +00:00
tag: ""
2022-10-11 14:48:46 +00:00
# -- Image pull policy
pullPolicy: IfNotPresent
# -- Image pull secrets
pullSecrets: []
# - secretName
2022-09-12 14:34:34 +00:00
2022-10-11 14:48:46 +00:00
# -- The number of old history to retain to allow rollback
revisionHistoryLimit: 0
2022-09-12 14:34:34 +00:00
2022-10-11 14:48:46 +00:00
# -- Deployment update strategy.
# Ref: https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#strategy
# @default -- See [values.yaml](values.yaml)
updateStrategy:
type: RollingUpdate
2022-09-12 14:34:34 +00:00
2022-10-11 14:48:46 +00:00
rbac:
# -- Create ClusterRoles, ClusterRoleBindings, and ServiceAccount
create: true
serviceAccount:
# -- Create a ServiceAccount
create: true
# -- The ServiceAccount name
name:
# -- Annotations for the ServiceAccount
annotations: {}
# example.com/annotation: value
2022-09-12 14:34:34 +00:00
service:
2022-10-11 14:48:46 +00:00
# -- Service port.
port: 9098
# -- Service type.
type: ClusterIP
# -- Service node port.
# Only used if `service.type` is `NodePort`.
nodePort:
# -- Service annotations.
annotations: { }
2022-09-12 14:34:34 +00:00
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: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
2022-10-11 14:48:46 +00:00
# -- Additional labels to add to each pod
podLabels: {}
# example.com/label: foo
# -- Additional annotations to add to each pod
podAnnotations: {}
# example.com/annotation: foo
# -- Security context for the pod
podSecurityContext: {}
# -- Security context for the containers
securityContext:
runAsNonRoot: true
privileged: false
allowPrivilegeEscalation: false
readOnlyRootFilesystem: true
capabilities:
drop:
- ALL
seccompProfile:
type: RuntimeDefault
# -- Optional priority class to be used for kyverno pods
priorityClassName: ''
# -- Node affinity constraints.
nodeAffinity: {}
# -- Node labels for pod assignment
2022-09-12 14:34:34 +00:00
nodeSelector: {}
2022-10-11 14:48:46 +00:00
# -- List of node taints to tolerate
2022-09-12 14:34:34 +00:00
tolerations: []
2022-10-11 14:48:46 +00:00
# -- Topology spread constraints.
topologySpreadConstraints: []
2022-09-12 14:34:34 +00:00
podCleaner:
2022-10-11 14:48:46 +00:00
# -- File to watch to detect orphan pod errors
2022-09-12 14:34:34 +00:00
logfile: /var/log/syslog
2022-10-11 14:48:46 +00:00
# -- Log level: info,debug
logLevel: info
podMonitor:
# -- Create a `PodMonitor` to collect Prometheus metrics.
enabled: false
# -- Url path to scrap metrics
path: /metrics
# -- Additional labels
additionalLabels:
# key: value
# -- Interval to scrape metrics
interval: 30s
# -- Timeout if metrics can't be retrieved in given time interval
scrapeTimeout: 25s
# -- Is TLS required for endpoint
secure: false
# -- TLS Configuration for endpoint
tlsConfig: {}