forked from cowboysysop/charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
values.yaml
366 lines (264 loc) · 7.7 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
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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
# Default values for lighthouse-ci.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
global:
# Global Docker image registry
imageRegistry: ""
# Global Docker registry secret names as an array
imagePullSecrets: []
# Override Kubernetes version
kubeVersion: ""
nameOverride: ""
fullnameOverride: ""
# Annotations to add to all deployed objects
commonAnnotations: {}
# Labels to add to all deployed objects
commonLabels: {}
# Array of extra objects to deploy with the release
extraDeploy: []
replicaCount: 1
image:
# Image registry
registry: docker.io
# Image repository
repository: patrickhulce/lhci-server
# Image tag
tag: 0.8.1
# Image digest
digest: ""
# Image pull policy
pullPolicy: IfNotPresent
pdb:
# Specifies whether a pod disruption budget should be created
create: false
# Minimum number/percentage of pods that should remain scheduled
minAvailable: 1
# Maximum number/percentage of pods that may be made unavailable
# maxUnavailable: 1
serviceAccount:
# Specifies whether a service account should be created
create: true
# Annotations to add 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:
# Additional pod annotations
podAnnotations: {}
# Additional pod labels
podLabels: {}
podSecurityContext: {}
# fsGroup: 2000
# Priority class name
# priorityClassName : high-priority
securityContext: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# runAsUser: 1000
livenessProbe:
# Enable liveness probe
enabled: true
# Delay before the liveness probe is initiated
initialDelaySeconds: 0
# How often to perform the liveness probe
periodSeconds: 10
# When the liveness probe times out
timeoutSeconds: 1
# Minimum consecutive failures for the liveness probe to be considered failed after having succeeded
failureThreshold: 3
# Minimum consecutive successes for the liveness probe to be considered successful after having failed
successThreshold: 1
readinessProbe:
# Enable readiness probe
enabled: true
# Delay before the readiness probe is initiated
initialDelaySeconds: 0
# How often to perform the readiness probe
periodSeconds: 10
# When the readiness probe times out
timeoutSeconds: 1
# Minimum consecutive failures for the readiness probe to be considered failed after having succeeded
failureThreshold: 3
# Minimum consecutive successes for the readiness probe to be considered successful after having failed
successThreshold: 1
service:
# Service annotations
annotations: {}
# Service type
type: ClusterIP
# Static cluster IP address or None for headless service when service type is ClusterIP
# clusterIP: 10.43.0.100
# Static load balancer IP address when service type is LoadBalancer
# loadBalancerIP: 10.0.0.100
# Source IP address ranges when service type is LoadBalancer
# loadBalancerSourceRanges:
# - 10.0.0.0/24
# External traffic routing policy when service type is LoadBalancer or NodePort
externalTrafficPolicy: Cluster
# Service port
port: 9001
# Service node port when service type is LoadBalancer or NodePort
# nodePort: 30000
ingress:
enabled: false
# IngressClass that will be be used to implement the Ingress
ingressClassName: ""
# Ingress path type
pathType: ImplementationSpecific
annotations: {}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
hosts:
- host: lighthouse-ci.local
paths:
- /
tls: []
# - secretName: lighthouse-ci-tls
# hosts:
# - lighthouse-ci.local
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
nodeSelector: {}
tolerations: []
affinity: {}
# Additional container environment variables
extraEnvVars: []
# - name: MY-NAME
# value: "MY-VALUE"
# Name of existing ConfigMap containing additional container environment variables
extraEnvVarsCM:
# Name of existing Secret containing additional container environment variables
extraEnvVarsSecret:
persistence:
# Enable persistence using PVC
enabled: false
# Name of an existing PVC to use
# existingClaim: my-pvc
# PVC access mode
accessMode: ReadWriteOnce
# PVC annotations
annotations: {}
# PVC size
size: 1Gi
# PVC storage class
# storageClass: -
# Log level
logLevel: verbose
# The username to protect the server with HTTP Basic Authentication
basicAuthUsername: ""
# The password to protect the server with HTTP Basic Authentication
basicAuthPassword: ""
# Name of existing Secret to use
existingSecret: ""
# Name of the key in existing Secret that contains HTTP Basic Authentication password
existingSecretKeyBasicAuthPassword: basic-auth-password
# The configuration to automatically collect results using the PageSpeed Insights API
psiCollectCron:
# The API key to use with the PageSpeed Insights API
psiApiKey: ""
# The array of sites to collect results for
sites: []
# - urls:
# - http://example.local/
# schedule: 0 * * * *
# projectSlug: example
# The configuration to automatically delete old records
deleteOldBuildsCron: []
# - schedule: 0 * * * *
# maxAgeInDays: 30
mariadb:
# Whether to use the MariaDB chart
enabled: false
# MariaDB architecture
architecture: standalone
auth:
# MariaDB database
database: lighthouse-ci
# MariaDB user
username: lighthouse-ci
# MariaDB password
password: lighthouse-ci
# Name of existing Secret to use
existingSecret: ""
primary:
service:
ports:
# MariaDB port
mysql: 3306
externalMariadb:
# Whether to use an external MariaDB
enabled: false
# External MariaDB host
host: mariadb
# External MariaDB port
port: 3306
# External MariaDB user
username: lighthouse-ci
# External MariaDB password
password: lighthouse-ci
# Name of existing Secret to use
existingSecret: ""
# Name of the key in existing Secret that contains MariaDB password
existingSecretKeyPassword: mariadb-password
# External MariaDB database
database: lighthouse-ci
postgresql:
# Whether to use the PostgreSQL chart
enabled: false
auth:
# PostgreSQL user
username: lighthouse-ci
# PostgreSQL password
password: lighthouse-ci
# PostgreSQL database
database: lighthouse-ci
# Name of existing Secret to use
existingSecret: ""
# PostgreSQL architecture
architecture: standalone
primary:
service:
ports:
# PostgreSQL port
postgresql: 5432
externalPostgresql:
# Whether to use an external PostgreSQL
enabled: false
# External PostgreSQL host
host: postgresql
# External PostgreSQL port
port: 5432
# External PostgreSQL user
username: lighthouse-ci
# External PostgreSQL password
password: lighthouse-ci
# Name of existing Secret to use
existingSecret: ""
# Name of the key in existing Secret that contains PostgreSQL password
existingSecretKeyPassword: password
# External PostgreSQL database
database: lighthouse-ci
tests:
image:
# Image registry
registry: ghcr.io
# Image repository
repository: cowboysysop/pytest
# Image tag
tag: 1.0.35
# Image digest
digest: ""
# Image pull policy
pullPolicy: IfNotPresent