24 lines
547 B
YAML
24 lines
547 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: ingress-nginx
|
|
namespace: argocd
|
|
spec:
|
|
destination:
|
|
namespace: cluster-ingress
|
|
server: https://kubernetes.default.svc
|
|
project: infra
|
|
source:
|
|
chart: ingress-nginx
|
|
repoURL: https://kubernetes.github.io/ingress-nginx
|
|
targetRevision: 4.8.3
|
|
helm:
|
|
parameters:
|
|
- name: controller.service.type
|
|
value: LoadBalancer
|
|
- name: controller.allowSnippetAnnotations
|
|
value: "true"
|
|
syncPolicy:
|
|
automated:
|
|
selfHeal: true
|