Argo/Charts/argo-cd/values.yaml

49 lines
1.3 KiB
YAML
Raw Normal View History

2023-02-07 09:17:49 +01:00
argo-cd:
dex:
enabled: false
server:
rbacConfig:
policy.csv: |
g, roxedus, role:admin
service:
type: NodePort
extraArgs:
- --insecure
config:
accounts.roxedus: apiKey, login
accounts.admin.enabled: "true"
repositories: |
- type: helm
name: argo-cd
url: https://argoproj.github.io/argo-helm
2022-12-05 14:24:52 +01:00
configs:
cm:
2022-12-05 14:33:10 +01:00
resource.customizations.health:
networking.k8s.io_Ingress: |
hs = {}
hs.status = "Healthy"
return hs
cert-manager.io_Certificate: |
hs = {}
if obj.status ~= nil then
if obj.status.conditions ~= nil then
for i, condition in ipairs(obj.status.conditions) do
if condition.type == "Ready" and condition.status == "False" then
hs.status = "Degraded"
hs.message = condition.message
return hs
end
if condition.type == "Ready" and condition.status == "True" then
hs.status = "Healthy"
hs.message = condition.message
return hs
end
end
end
end
hs.status = "Progressing"
hs.message = "Waiting for certificate"
return hs