metallb.yml 666 Bytes
Newer Older
torgiren's avatar
torgiren committed
1
2
3
4
5
6
7
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
  name: metallb
  namespace: argocd
  finalizers:
    - resources-finalizer.argocd.argoproj.io
torgiren's avatar
torgiren committed
8
    - kopf.zalando.org/KopfFinalizerMarker
torgiren's avatar
torgiren committed
9
spec:
10
  project: exphost
torgiren's avatar
torgiren committed
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
  source:
    repoURL: 'https://charts.bitnami.com/bitnami'
    targetRevision: 2.4.3
    chart: metallb
    helm:
      values: |
        configInline:
          address-pools:
            {{ toYaml .Values.metallb.pools | nindent 12}}

  destination:
    server: 'https://kubernetes.default.svc'
    namespace: metallb-system
  syncPolicy:
    automated:
      prune: true
torgiren's avatar
torgiren committed
27
      selfHeal: true
torgiren's avatar
torgiren committed
28
29
    syncOptions:
      - CreateNamespace=true