This commit is contained in:
Jon Bakies 2025-08-03 04:52:55 -07:00 committed by GitHub
commit 3f1df752ea
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -27,7 +27,7 @@ Connect your `kubectl` client to the cluster you want to test ExternalDNS with.
Begin by creating a Kubernetes secret to securely store your DigitalOcean API key. This key will enable ExternalDNS to authenticate with DigitalOcean: Begin by creating a Kubernetes secret to securely store your DigitalOcean API key. This key will enable ExternalDNS to authenticate with DigitalOcean:
```shell ```shell
kubectl create secret generic DO_TOKEN --from-literal=DO_TOKEN=YOUR_DIGITALOCEAN_API_KEY kubectl create secret generic do-token --from-literal=DO_TOKEN=YOUR_DIGITALOCEAN_API_KEY
``` ```
Ensure to replace YOUR_DIGITALOCEAN_API_KEY with your actual DigitalOcean API key. Ensure to replace YOUR_DIGITALOCEAN_API_KEY with your actual DigitalOcean API key.
@ -45,7 +45,7 @@ env:
- name: DO_TOKEN - name: DO_TOKEN
valueFrom: valueFrom:
secretKeyRef: secretKeyRef:
name: DO_TOKEN name: do-token
key: DO_TOKEN key: DO_TOKEN
``` ```