32 lines
908 B
YAML
32 lines
908 B
YAML
# ------------------------------------------------------------------------------
|
|
# Platform: external-dns
|
|
# Wave 6 — depends on ingress-nginx (wave 5) to have an IP to register
|
|
# Configured to sync with Technitium DNS on monorail (10.1.71.32)
|
|
# ------------------------------------------------------------------------------
|
|
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: external-dns
|
|
namespace: argocd
|
|
annotations:
|
|
argocd.argoproj.io/sync-wave: "6"
|
|
spec:
|
|
project: default
|
|
source:
|
|
repoURL: https://kubernetes-sigs.github.io/external-dns
|
|
chart: external-dns
|
|
targetRevision: 1.15.1
|
|
helm:
|
|
valueFiles:
|
|
- values.yaml
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: external-dns
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
selfHeal: true
|
|
syncOptions:
|
|
- CreateNamespace=true
|
|
- ServerSideApply=true
|