From 15f350ef2abe06c9083fb3368dbc47d454f67c58 Mon Sep 17 00:00:00 2001 From: Michel Loiseleur Date: Sun, 22 Dec 2024 18:03:26 +0100 Subject: [PATCH 1/2] docs: fix reference to wrong field in service --- docs/sources/service.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sources/service.md b/docs/sources/service.md index c112408d09..3d14fcadd0 100644 --- a/docs/sources/service.md +++ b/docs/sources/service.md @@ -76,7 +76,7 @@ or the `--publish-host-ip` flag was specified, uses the Pod's `status.hostIP` fi ### ClusterIP (not headless) 1. If the hostname came from an `external-dns.alpha.kubernetes.io/internal-hostname` annotation -or the `--publish-internal-services` flag was specified, uses the `spec.ServiceIP`. +or the `--publish-internal-services` flag was specified, uses the `spec.ClusterIP`. 2. Otherwise, does not create any targets. From 8fa8ce08f69e842b5834e32fb417074a5bb24b2a Mon Sep 17 00:00:00 2001 From: Michel Loiseleur Date: Sun, 22 Dec 2024 18:23:17 +0100 Subject: [PATCH 2/2] fix typo on cloudflare tutorial --- docs/tutorials/cloudflare.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/docs/tutorials/cloudflare.md b/docs/tutorials/cloudflare.md index 71d5cc670a..9996e2ac6e 100644 --- a/docs/tutorials/cloudflare.md +++ b/docs/tutorials/cloudflare.md @@ -130,17 +130,17 @@ spec: - --cloudflare-proxied # (optional) enable the proxy feature of Cloudflare (DDOS protection, CDN...) - --cloudflare-dns-records-per-page=5000 # (optional) configure how many DNS records to fetch per request - --cloudflare-region-key="eu" # (optional) configure which region can decrypt HTTPS requests - env: - - name: CF_API_KEY - valueFrom: - secretKeyRef: - name: cloudflare-api-key - key: apiKey - - name: CF_API_EMAIL - valueFrom: - secretKeyRef: - name: cloudflare-api-key - key: email + env: + - name: CF_API_KEY + valueFrom: + secretKeyRef: + name: cloudflare-api-key + key: apiKey + - name: CF_API_EMAIL + valueFrom: + secretKeyRef: + name: cloudflare-api-key + key: email ``` ### Manifest (for clusters with RBAC enabled)