summaryrefslogtreecommitdiff
path: root/playbooks.d/k3s-master/share/system/nginx-ingress/application.yaml
blob: 3cc164c7a1381c59a0e8d293c582edaf6f28c284 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
---
apiVersion: v1
kind: Namespace
metadata:
  name: ingress
...
---
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
  name: nginx-ingress
  namespace: argocd
spec:
  project: default
  source:
    repoURL: https://helm.nginx.com/stable
    chart: nginx-ingress
    targetRevision: 0.14.0
    helm:
      values: |
        controller:
          service:
            ports:
              http: 8080
              https: 8443
  destination:
    server: https://kubernetes.default.svc
    namespace: ingress
  syncPolicy:
    automated: {}
...