From 6486a1148b46abd2b0b473af87bc89ca1c2199c7 Mon Sep 17 00:00:00 2001 From: Martyn Ranyard Date: Tue, 11 Mar 2025 14:34:02 +0000 Subject: [PATCH] Switch from bitnami to official chart Signed-off-by: Martyn Ranyard --- apps-kustomized/external-dns/deploy.yaml | 12 ++++++++++++ apps-kustomized/external-dns/kustomization.yaml | 14 +++++++++----- 2 files changed, 21 insertions(+), 5 deletions(-) create mode 100644 apps-kustomized/external-dns/deploy.yaml diff --git a/apps-kustomized/external-dns/deploy.yaml b/apps-kustomized/external-dns/deploy.yaml new file mode 100644 index 0000000..c423ba6 --- /dev/null +++ b/apps-kustomized/external-dns/deploy.yaml @@ -0,0 +1,12 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: external-dns +spec: + template: + spec: + containers: + - name: external-dns + envFrom: + - secretRef: + name: dnsimple-auth diff --git a/apps-kustomized/external-dns/kustomization.yaml b/apps-kustomized/external-dns/kustomization.yaml index 07ea702..045943d 100644 --- a/apps-kustomized/external-dns/kustomization.yaml +++ b/apps-kustomized/external-dns/kustomization.yaml @@ -3,14 +3,18 @@ kind: Kustomization helmCharts: - name: external-dns - repo: oci://registry-1.docker.io/bitnamicharts - version: 8.7.7 + repo: https://kubernetes-sigs.github.io/external-dns + version: 1.15.0 releaseName: external-dns namespace: external-dns valuesInline: - provider: dnsimple + provider: + name: dnsimple txtPrefix: armnleg - sources: [service,ingress] - extraEnvVarsSecret: dnsimple-auth image: tag: 0.14.0-debian-11-r1 +patches: +- path: deploy.yaml + target: + kind: Deployment + name: external-dns