video-iac/k8s/applications/templates/ingress-nginx.yaml

42 lines
855 B
YAML
Raw Normal View History

2021-10-30 17:05:05 +00:00
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: ingress-nginx
spec:
destination:
name: ''
namespace: ingress-nginx
server: 'https://kubernetes.default.svc'
source:
path: ''
repoURL: 'https://kubernetes.github.io/ingress-nginx'
targetRevision: 4.13.0
2021-10-30 17:05:05 +00:00
chart: ingress-nginx
helm:
values: |
controller:
nodeSelector:
workload: infra
admissionWebhooks:
patch:
nodeSelector:
workload: infra
defaultBackend:
nodeSelector:
workload: infra
2021-10-30 17:05:05 +00:00
project: default
syncPolicy:
2021-10-31 16:25:56 +00:00
syncOptions:
- CreateNamespace=true
automated:
prune: true
allowEmpty: false
retry:
limit: 5
backoff:
duration: 5s
factor: 2
maxDuration: 3m
2025-07-20 00:29:57 +00:00