-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvalues-argocd.yaml
More file actions
70 lines (70 loc) · 2.02 KB
/
Copy pathvalues-argocd.yaml
File metadata and controls
70 lines (70 loc) · 2.02 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
crds:
# -- Install and upgrade CRDs
install: true
global:
# image:
# tag: v2.7.3
# See https://github.com/argoproj/argo-helm/issues/1984
deploymentStrategy:
type: RollingUpdate
dex:
enabled: false
server:
ingress:
enabled: true
ingressClassName: nginx
annotations:
# backend service is no more HTTPS
#nginx.ingress.kubernetes.io/backend-protocol: "HTTPS"
cert-manager.io/cluster-issuer: letsencrypt-prod
# supply this via --set so that we can use single ArgoCD def for all environments
# hostname: argocd.argodemo.lab.kubermatic.io
tls: true
# To be used for simpler local argocd setup
# paths:
# - /argocd/
# configs:
# params:
# server.insecure: true
# server.basehref: /argocd
# # -- Used if Argo CD is running behind reverse proxy under subpath different from /
# server.rootpath: '/argocd'
configs:
params:
server.insecure: true
cm:
# This whole setup (both ci.sh's kubeone-based envs and the local-kind
# dev loop) is a test/validation setup, not a real production ArgoCD --
# favor fast feedback over steady-state reconcile load. Default is 180s;
# this cuts a stuck/first-comparison-race Application's self-heal time
# from up to 3 minutes down to well under a minute.
timeout.reconciliation: "30s"
resource.exclusions: |
- apiGroups:
- "velero.io"
kinds:
- "Backup"
clusters:
- "*"
- apiGroups:
- cilium.io
kinds:
- CiliumIdentity
clusters:
- "*"
resourceCustomizations: |
argoproj.io/Application:
health.lua: |
hs = {}
if obj.status ~= nil then
if obj.status.health ~= nil then
hs.status = obj.status.health.status
if obj.status.health.message ~= nil then
hs.message = obj.status.health.message
end
return hs
end
end
hs.status = "Progressing"
hs.message = ""
return hs