-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path_default-values.tpl
More file actions
523 lines (488 loc) · 11.9 KB
/
_default-values.tpl
File metadata and controls
523 lines (488 loc) · 11.9 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
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
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
{{- define "cf-argocd-extras.default-values" }}
global: {}
externalRedis:
enabled: false
existingSecretKeyRef:
name: "argocd-redis"
key: "redis-password"
eventReporter:
fullnameOverride: event-reporter
podAnnotations: {}
serviceAccount:
enabled: true
rbac:
enabled: true
namespaced: false
rules:
- apiGroups:
- '*'
resources:
- '*'
verbs:
- '*'
- nonResourceURLs:
- '*'
verbs:
- '*'
controller:
enabled: true
type: statefulset
replicas: 1
revisionHistoryLimit: 5
container:
name: event-reporter
image:
registry: quay.io/codefresh
repository: cf-argocd-extras
tag: main
pullPolicy: IfNotPresent
# these do not seem to work
ports:
- name: metrics
containerPort: 8087
protocol: TCP
- name: health
containerPort: 8088
protocol: TCP
resources:
requests:
memory: 128Mi
cpu: 100m
env:
HTTP_PROXY: '{{ .Values.global.httpProxy }}'
HTTPS_PROXY: '{{ .Values.global.httpsProxy }}'
NO_PROXY: '{{ .Values.global.noProxy }}'
APP_QUEUE_SIZE:
valueFrom:
configMapKeyRef:
name: event-reporter-cmd-params-cm
key: app.queue.size
ARGOCD_APPLICATION_NAMESPACES:
valueFrom:
configMapKeyRef:
name: argocd-cmd-params-cm
key: application.namespaces
optional: true
ARGOCD_SERVER:
valueFrom:
configMapKeyRef:
name: event-reporter-cmd-params-cm
key: argocd.server
ARGOCD_SERVER_ROOTPATH:
valueFrom:
configMapKeyRef:
name: argocd-cmd-params-cm
key: server.rootpath
optional: true
ARGO_CD_TOKEN_SECRET_NAME: argocd-token
ARGO_CD_TOKEN_SECRET_KEY: token
BINARY_NAME: event-reporter
CODEFRESH_SSL_CERT_PATH: ""
CODEFRESH_TLS_INSECURE:
valueFrom:
configMapKeyRef:
name: argocd-cmd-params-cm
key: codefresh.tls.insecure
optional: true
CODEFRESH_TOKEN:
valueFrom:
secretKeyRef:
name: codefresh-token
key: token
CODEFRESH_URL:
valueFrom:
configMapKeyRef:
key: base-url
name: codefresh-cm
EVENT_REPORTER_REPLICAS: 1
INSECURE:
valueFrom:
configMapKeyRef:
name: event-reporter-cmd-params-cm
key: insecure
optional: true
LISTEN_ADDRESS:
valueFrom:
configMapKeyRef:
name: event-reporter-cmd-params-cm
key: listen.address
optional: true
LOG_FORMAT:
valueFrom:
configMapKeyRef:
name: event-reporter-cmd-params-cm
key: log.format
optional: true
LOG_LEVEL:
valueFrom:
configMapKeyRef:
name: event-reporter-cmd-params-cm
key: log.level
optional: true
MAX_APP_RETRIES:
valueFrom:
configMapKeyRef:
name: event-reporter-cmd-params-cm
key: max.app.retries
METRICS_LISTEN_ADDRESS:
valueFrom:
configMapKeyRef:
name: event-reporter-cmd-params-cm
key: metrics.listen.address
optional: true
OTEL_EXPORTER_OTLP_TRACES_ENDPOINT:
valueFrom:
configMapKeyRef:
name: event-reporter-cmd-params-cm
key: otlp.address
REDISDB:
valueFrom:
configMapKeyRef:
name: argocd-cmd-params-cm
key: redis.db
optional: true
REDIS_COMPRESSION:
valueFrom:
configMapKeyRef:
name: argocd-cmd-params-cm
key: redis.compression
optional: true
REDIS_PASSWORD:
valueFrom:
secretKeyRef:
name: argocd-redis
key: auth
REDIS_SERVER:
valueFrom:
configMapKeyRef:
name: argocd-cmd-params-cm
key: redis.server
REDIS_USERNAME:
valueFrom:
secretKeyRef:
name: argocd-redis
key: redis-username
optional: true
REPO_SERVER:
valueFrom:
configMapKeyRef:
name: event-reporter-cmd-params-cm
key: repo.server
REPO_SERVER_PLAINTEXT:
valueFrom:
configMapKeyRef:
name: event-reporter-cmd-params-cm
key: repo.server.plaintext
optional: true
REPO_SERVER_STRICT_TLS:
valueFrom:
configMapKeyRef:
name: event-reporter-cmd-params-cm
key: repo.server.strict.tls
optional: true
REPO_SERVER_TIMEOUT_SECONDS:
valueFrom:
configMapKeyRef:
name: event-reporter-cmd-params-cm
key: repo.server.timeout.seconds
optional: true
RUNTIME_VERSION:
valueFrom:
configMapKeyRef:
name: codefresh-cm
key: version
SHARDING_ALGORITHM:
valueFrom:
configMapKeyRef:
name: event-reporter-cmd-params-cm
key: sharding.algorithm
optional: true
SOURCES_SERVER:
valueFrom:
configMapKeyRef:
name: event-reporter-cmd-params-cm
key: sources.server
THREADINESS:
valueFrom:
configMapKeyRef:
name: event-reporter-cmd-params-cm
key: threadiness
volumeMounts:
codefresh-tls-certs:
path:
- mountPath: /app/config/codefresh-tls-certs
readOnly: true
probes:
liveness:
enabled: true
type: httpGet
httpGet:
path: /healthz?full=true
port: 8088
spec:
initialDelaySeconds: 3
periodSeconds: 30
timeoutSeconds: 5
successThreshold: 1
failureThreshold: 3
readiness:
enabled: true
type: httpGet
httpGet:
path: /healthz
port: 8088
spec:
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 1
successThreshold: 1
failureThreshold: 3
configMaps:
cmd-params-cm:
enabled: true
data:
app.queue.size: '1000'
argocd.server: argo-cd-server:80
max.app.retries: '5'
otlp.address: ''
repo.server: argo-cd-repo-server:8081
sources.server: http://sources-server
threadiness: '100'
volumes:
codefresh-tls-certs:
enabled: true
type: secret
nameOverride: codefresh-tls-certs
optional: true
pdb:
enabled: true
minAvailable: "50%"
maxUnavailable: ""
service:
main:
enabled: true
type: ClusterIP
ports:
metrics:
port: 8087
protocol: HTTP
targetPort: 8087
serviceMonitor:
main:
enabled: false
endpoints:
- port: metrics
scheme: http
path: /metrics
interval: 30s
scrapeTimeout: 10s
sourcesServer:
fullnameOverride: sources-server
serviceAccount:
enabled: true
rbac:
enabled: true
namespaced: false
rules:
- apiGroups:
- ''
resources:
- configmaps
- secrets
verbs:
- get
- list
- watch
- apiGroups:
- ''
- apps
resources:
- deployments
- podtemplates
verbs:
- patch
- apiGroups:
- apps
resources:
- replicasets
verbs:
- list
- patch
- apiGroups:
- argoproj.io
resources:
- rollouts
- rollouts/status
verbs:
- get
- patch
podAnnotations: {}
controller:
enabled: true
type: deployment
revisionHistoryLimit: 3
deployment:
strategy: RollingUpdate
rollingUpdate:
maxUnavailable: 0
maxSurge: 50%
hpa:
enabled: true
minReplicas: 1
maxReplicas: 10
targetCPUUtilizationPercentage: 70
keda:
enabled: false
pdb:
enabled: true
minAvailable: "50%"
maxUnavailable: ""
imagePullSecrets: []
container:
name: sources-server
image:
registry: quay.io/codefresh
repository: cf-argocd-extras
tag: main
pullPolicy: IfNotPresent
ports:
- name: server
containerPort: 8090
protocol: TCP
resources:
requests:
memory: "128Mi"
cpu: "100m"
env:
HTTP_PROXY: '{{ .Values.global.httpProxy }}'
HTTPS_PROXY: '{{ .Values.global.httpsProxy }}'
NO_PROXY: '{{ .Values.global.noProxy }}'
ARGOCD_SERVER:
valueFrom:
configMapKeyRef:
name: sources-server-cmd-params-cm
key: argocd.server
ARGO_CD_TOKEN_SECRET_NAME: argocd-token
ARGO_CD_TOKEN_SECRET_KEY: token
ARGOCD_SERVER_ROOTPATH:
valueFrom:
configMapKeyRef:
name: argocd-cmd-params-cm
key: server.rootpath
optional: true
BINARY_NAME: sources-server
CODEFRESH_SSL_CERT_PATH: ""
CODEFRESH_TLS_INSECURE:
valueFrom:
configMapKeyRef:
name: argocd-cmd-params-cm
key: codefresh.tls.insecure
optional: true
CODEFRESH_TOKEN:
valueFrom:
secretKeyRef:
key: token
name: codefresh-token
CODEFRESH_URL:
valueFrom:
configMapKeyRef:
key: base-url
name: codefresh-cm
LISTEN_ADDRESS:
valueFrom:
configMapKeyRef:
name: sources-server-cmd-params-cm
key: server.listen.address
optional: true
REDISDB:
valueFrom:
configMapKeyRef:
name: argocd-cmd-params-cm
key: redis.db
optional: true
REDIS_COMPRESSION:
valueFrom:
configMapKeyRef:
name: argocd-cmd-params-cm
key: redis.compression
optional: true
REDIS_PASSWORD:
valueFrom:
secretKeyRef:
name: argocd-redis
key: auth
REDIS_SERVER:
valueFrom:
configMapKeyRef:
name: argocd-cmd-params-cm
key: redis.server
REDIS_USERNAME:
valueFrom:
secretKeyRef:
name: argocd-redis
key: redis-username
optional: true
REPO_SERVER:
valueFrom:
configMapKeyRef:
name: sources-server-cmd-params-cm
key: repo.server
REPO_SERVER_TIMEOUT_SECONDS:
valueFrom:
configMapKeyRef:
name: sources-server-cmd-params-cm
key: repo.server.timeout.seconds
optional: true
volumeMounts:
codefresh-tls-certs:
path:
- mountPath: /app/config/codefresh-tls-certs
readOnly: true
probes:
liveness:
enabled: true
type: httpGet
httpGet:
path: /healthz?full=true
port: 8090
spec:
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 1
successThreshold: 1
failureThreshold: 3
readiness:
enabled: true
type: httpGet
httpGet:
path: /healthz
port: 8090
spec:
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 1
successThreshold: 1
failureThreshold: 3
service:
main:
enabled: true
primary: true
type: ClusterIP
ports:
http:
port: 80
protocol: HTTP
targetPort: 8090
configMaps:
cmd-params-cm:
enabled: true
data:
argocd.server: argo-cd-server:80
repo.server: argo-cd-repo-server:8081
volumes:
codefresh-tls-certs:
enabled: true
type: secret
nameOverride: codefresh-tls-certs
optional: true
{{- end }}