Added helm docs to aws

This commit is contained in:
Omer 2024-04-26 22:27:40 +03:00
parent 66592c7b25
commit 8d6e87ff1c

View File

@ -392,6 +392,22 @@ kubectl get namespaces | grep -q $EXTERNALDNS_NS || \
kubectl create namespace $EXTERNALDNS_NS
```
## Using Helm (with OIDC)
Create a values.yaml file to configure ExternalDNS:
```shell
provider:
name: aws
env:
- name: AWS_DEFAULT_REGION
value: us-east-1 # change to region where EKS is installed
```
Finally, install the ExternalDNS chart with Helm using the configuration specified in your values.yaml file:
```shell
helm upgrade --install external-dns external-dns/external-dns --version 1.14.4 --values values.yaml
```
### Manifest (for clusters without RBAC enabled)
Save the following below as `externaldns-no-rbac.yaml`.