-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalues.yaml
More file actions
219 lines (197 loc) · 6.5 KB
/
values.yaml
File metadata and controls
219 lines (197 loc) · 6.5 KB
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
nameOverride: ""
fullnameOverride: ""
#Number of desired pods. Ignored if auto-scaling is enabled.
replicaCount: ""
#Auto-scaling
autoscaling:
enabled: false
minReplicas: 1
maxReplicas: 3
targetCPUUtilizationPercentage: 80
targetMemoryUtilizationPercentage: 80
# Specify how many old ReplicaSets for this Deployment you want to retain. The rest will be garbage-collected in the background.
revisionHistoryLimit: 1
# image pull secret information. Can be overridden by global values.
imagePullSecrets: ""
image:
repository: ""
name: ""
# Overrides the image tag whose default is the chart appVersion.
tag: ""
pullPolicy: IfNotPresent
# Service spec
service:
type: ClusterIP
annotations: { }
specs: [ ]
# - port: 8080
# containerPort: 8080 # if omit, default to port
# name: http
# protocol: TCP #default to TCP protocol
ingress:
enabled: false
annotations: { }
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
hosts: [ ]
# - host: chart-example.local
# servicePort: 8000
# path: /
# pathType: Prefix
tls: [ ]
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
isFlexibleResources:
enabled: false
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
requests:
cpu: 250m
memory: 256Mi
limits:
cpu: 250m
memory: 256Mi
extraContainers: [ ]
extraContainerVolumes: [ ]
persistentVolume:
enabled: false
storageClass: ""
accessMode: [ ]
size: ""
containerPath: ""
## @param persistentVolume.existingClaim Name of an existing `PersistentVolumeClaim` for the service
## NOTE: When it's set the rest of persistence parameters are ignored
##
existingClaim: ""
hostPath:
enabled: false
nodeSelector: { }
tolerations: [ ]
affinity: { }
#Applications environment variables
configmap: { }
#configmapMounts will be mount using projected volume at mountPath
configmapMounts: [ ]
## - name: ""
## mountPath: ""
## defaultMode: ""
## data: { }
## configmap1.json: |-
## {
## "credential": "top-secret"
## }
## configmap2.properties: |-
## key=top-secret
# Extra environment variables to append to deployment spec
# Use this with external configmap / secret resource, which is not part of this chart
extraEnvs: []
#secrets will be mount using projected volume at mountPath
secret: [ ]
## - name: ""
## mountPath: ""
## defaultMode: ""
## data: { }
## secret1.json: |-
## {
## "credential": "top-secret"
## }
## secret2.properties: |-
## key=top-secret
# A list of secrets and their paths to mount inside the pod
# use this for external secret resource, which is not part of this chart
secretMounts: []
# - name: elastic-certificate-pem
# secretName: elastic-certificates
# path: /usr/share/apm-server/config/certs
## Configure extra options for service containers' startup, liveness and readiness probes
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes
## @param startupProbe.enabled Enable startupProbe
## @skip startupProbe.httpGet
## @param startupProbe.initialDelaySeconds Initial delay seconds for startupProbe
## @param startupProbe.periodSeconds Period seconds for startupProbe
## @param startupProbe.timeoutSeconds Timeout seconds for startupProbe
## @param startupProbe.failureThreshold Failure threshold for startupProbe
## @param startupProbe.successThreshold Success threshold for startupProbe
##
startupProbe:
enabled: false
# httpGet:
# path: ""
# port: http
# scheme: HTTP
## If using an HTTPS-terminating load-balancer, the probes may need to behave
## like the balancer to prevent HTTP 302 responses. According to the Kubernetes
## docs, 302 should be considered "successful", but this issue on GitHub
## (https://github.com/kubernetes/kubernetes/issues/47893) shows that it isn't.
## E.g.
## httpHeaders:
## - name: X-Forwarded-Proto
## value: https
##
# httpHeaders: [ ]
# initialDelaySeconds: 120
# periodSeconds: 10
# timeoutSeconds: 5
# failureThreshold: 6
# successThreshold: 1
## @param livenessProbe.enabled Enable livenessProbe
## @skip livenessProbe.httpGet
## @param livenessProbe.initialDelaySeconds Initial delay seconds for livenessProbe
## @param livenessProbe.periodSeconds Period seconds for livenessProbe
## @param livenessProbe.timeoutSeconds Timeout seconds for livenessProbe
## @param livenessProbe.failureThreshold Failure threshold for livenessProbe
## @param livenessProbe.successThreshold Success threshold for livenessProbe
##
livenessProbe:
enabled: false
# httpGet:
# path: ""
# port: http
# scheme: HTTP
## If using an HTTPS-terminating load-balancer, the probes may need to behave
## like the balancer to prevent HTTP 302 responses. According to the Kubernetes
## docs, 302 should be considered "successful", but this issue on GitHub
## (https://github.com/kubernetes/kubernetes/issues/47893) shows that it isn't.
## E.g.
## httpHeaders:
## - name: X-Forwarded-Proto
## value: https
##
# httpHeaders: [ ]
# initialDelaySeconds: 120
# periodSeconds: 10
# timeoutSeconds: 5
# failureThreshold: 6
# successThreshold: 1
## @param readinessProbe.enabled Enable readinessProbe
## @skip readinessProbe.httpGet
## @param readinessProbe.initialDelaySeconds Initial delay seconds for readinessProbe
## @param readinessProbe.periodSeconds Period seconds for readinessProbe
## @param readinessProbe.timeoutSeconds Timeout seconds for readinessProbe
## @param readinessProbe.failureThreshold Failure threshold for readinessProbe
## @param readinessProbe.successThreshold Success threshold for readinessProbe
##
readinessProbe:
enabled: false
# httpGet:
# path: /wp-login.php
# port: http
# scheme: HTTP
## If using an HTTPS-terminating load-balancer, the probes may need to behave
## like the balancer to prevent HTTP 302 responses. According to the Kubernetes
## docs, 302 should be considered "successful", but this issue on GitHub
## (https://github.com/kubernetes/kubernetes/issues/47893) shows that it isn't.
## E.g.
## httpHeaders:
## - name: X-Forwarded-Proto
## value: https
##
# httpHeaders: [ ]
# initialDelaySeconds: 30
# periodSeconds: 10
# timeoutSeconds: 5
# failureThreshold: 6
# successThreshold: 1