2021-12-27 17:40:47 +07:00
|
|
|
argo-cd:
|
|
|
|
server:
|
2021-12-27 18:28:34 +07:00
|
|
|
extraArgs:
|
|
|
|
- --insecure
|
2021-12-27 17:40:47 +07:00
|
|
|
config:
|
2024-01-18 23:44:52 +07:00
|
|
|
resource.ignoreResourceUpdatesEnabled: true
|
|
|
|
resource.customizations.ignoreResourceUpdates.all: |
|
|
|
|
jsonPointers:
|
|
|
|
- /status
|
2021-12-27 17:40:47 +07:00
|
|
|
resource.customizations.health.argoproj.io_Application: |
|
|
|
|
hs = {}
|
|
|
|
hs.status = "Progressing"
|
|
|
|
hs.message = ""
|
|
|
|
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
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return hs
|
|
|
|
ingress:
|
|
|
|
enabled: true
|
|
|
|
ingressClassName: nginx
|
|
|
|
annotations:
|
|
|
|
cert-manager.io/cluster-issuer: letsencrypt-prod
|
|
|
|
hosts:
|
|
|
|
- &host argocd.khuedoan.com
|
|
|
|
tls:
|
|
|
|
- secretName: argocd-tls-certificate
|
|
|
|
hosts:
|
|
|
|
- *host
|
2022-01-08 12:50:08 +07:00
|
|
|
metrics: &metrics
|
2022-01-01 21:36:58 +07:00
|
|
|
enabled: true
|
|
|
|
serviceMonitor:
|
|
|
|
enabled: true
|
2022-05-08 12:29:57 +07:00
|
|
|
dex:
|
|
|
|
enabled: false
|
2022-01-01 21:36:58 +07:00
|
|
|
controller:
|
2022-01-08 12:50:08 +07:00
|
|
|
metrics: *metrics
|
2022-01-01 21:36:58 +07:00
|
|
|
repoServer:
|
2022-01-08 12:50:08 +07:00
|
|
|
metrics: *metrics
|
2022-01-01 21:36:58 +07:00
|
|
|
redis:
|
2022-01-08 12:50:08 +07:00
|
|
|
metrics: *metrics
|