forked from spotahome/redis-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
values.yaml
98 lines (78 loc) · 2.4 KB
/
values.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# Default values for redis-operator.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
# Name of the image repository to pull the container image from.
image:
repository: quay.io/spotahome/redis-operator
pullPolicy: IfNotPresent
tag: v1.3.0
cli_args: ""
imageCredentials:
create: false
registry: url.private.registry
username: someone
password: somepassword
email: [email protected]
# Use exists secrets in namespace
existsSecrets:
- registrysecret
updateStrategy:
type: RollingUpdate
replicas: 1
# A name in place of the chart name for `app:` labels.
nameOverride: ""
# A name to substitute for the full names of resources.
fullnameOverride: ""
# The name of the Namespace to deploy
# If not set, `.Release.Namespace` is used
namespace: null
serviceAccount:
# Enable service account creation.
create: true
# Annotations to be added to the service account.
annotations: {}
# The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template.
name: ""
service:
type: ClusterIP
port: 9710
container:
port: 9710
# Container [security context](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container).
# See the [API reference](https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#security-context-1) for details.
securityContext:
readOnlyRootFilesystem: true
runAsNonRoot: true
runAsUser: 1000
# Container resource [requests and limits](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/).
# See the [API reference](https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#resources) for details.
# @default -- No requests or limits.
resources: {}
# requests:
# cpu: 100m
# memory: 128Mi
# limits:
# cpu: 100m
# memory: 128Mi
### Monitoring
###############
monitoring:
# Enable Prometheus PodMonitor to monitor the operator.
enabled: false
serviceMonitor: false
serviceAnnotations: {}
prometheus:
name: unknown
# Annotations to be added to pods and deployments.
annotations: {}
nodeSelector: {}
tolerations: []
affinity: {}
# CRDs configuration
crds:
# -- Additional CRDs annotations
annotations: {}
# argocd.argoproj.io/sync-options: Replace=true
# strategy.spinnaker.io/replace: 'true'
priorityClassName: ""