2022-04-16 08:13:51 +00:00
|
|
|
local app = import "../_templates/argocd_app.libsonnet";
|
2022-04-04 16:24:35 +00:00
|
|
|
|
|
|
|
[
|
2022-04-16 08:13:51 +00:00
|
|
|
app + {
|
|
|
|
chart:: "ingress-nginx",
|
2022-04-04 16:24:35 +00:00
|
|
|
repo:: "https://kubernetes.github.io/ingress-nginx",
|
2022-05-05 17:51:40 +00:00
|
|
|
version:: "4.1.*",
|
2022-04-04 16:24:35 +00:00
|
|
|
values:: |||
|
2022-04-15 13:04:24 +00:00
|
|
|
defaultBackend:
|
|
|
|
enabled: true
|
|
|
|
image:
|
|
|
|
registry: ghcr.io
|
|
|
|
image: tarampampam/error-pages
|
|
|
|
tag: 2.13.0
|
2022-04-04 16:24:35 +00:00
|
|
|
controller:
|
2022-04-29 16:13:10 +00:00
|
|
|
watchIngressWithoutClass: true
|
2022-04-15 13:04:24 +00:00
|
|
|
custom-http-errors: "400,401,403,404,405,407,408,409,410,411,412,413,416,418,429,500,502,503,504,505"
|
2022-04-04 16:24:35 +00:00
|
|
|
image:
|
|
|
|
pullPolicy: Always
|
|
|
|
service:
|
|
|
|
externalTrafficPolicy: Local
|
|
|
|
metrics:
|
|
|
|
enabled: true
|
|
|
|
serviceMonitor:
|
|
|
|
enabled: true
|
|
|
|
additionalLabels:
|
|
|
|
release: prometheus-grafana # same as prometheus-community chart name
|
|
|
|
|||
|
|
|
|
}
|
|
|
|
]
|