From a48d477e0d9747579e4f3a3668ccededee4cf422 Mon Sep 17 00:00:00 2001 From: Daniel Muehlbachler-Pietrzykowski Date: Thu, 9 Nov 2023 08:19:47 +0100 Subject: [PATCH] fix: fix release please configuration --- README.md | 8 +++++++- release-please-config.json | 4 +++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d4abe2b..edebdfe 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,10 @@ The following DNS record types are supported: - `AAAA` - `CNAME` - `TXT` +- `SRV` +- `NS` +- `PTR` +- `MX` ## Adguard Home Filtering Rules @@ -48,6 +52,7 @@ The Adguard webhook is provided as an OCI image in [ghcr.io/muhlba91/external-dn The following example shows the deployment as a [sidecar container](https://kubernetes.io/docs/concepts/workloads/pods/#workload-resources-for-managing-pods) in the ExternalDNS pod using the [Bitnami Helm charts for ExternalDNS](https://github.com/bitnami/charts/tree/main/bitnami/external-dns). + ```shell helm repo add bitnami https://charts.bitnami.com/bitnami @@ -63,7 +68,7 @@ extraArgs: sidecars: - name: adguard-webhook - image: ghcr.io/muhlba91/external-dns-provider-adguard:$RELEASE_VERSION + image: ghcr.io/muhlba91/external-dns-provider-adguard:v0.1.0 ports: - containerPort: 8888 name: http @@ -102,6 +107,7 @@ sidecars: - name: DRY_RUN value: "false" EOF + # install external-dns with helm helm install external-dns-adguard bitnami/external-dns -f external-dns-adguard-values.yaml diff --git a/release-please-config.json b/release-please-config.json index 8185a51..19c1035 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -6,7 +6,9 @@ "package-name": "main", "include-component-in-tag": false, "changelog-path": "CHANGELOG.md", - "extra-files": [] + "extra-files": [ + "README.md" + ] } }, "include-v-in-tag": true,