Fixing wrong KUBE_DNS_NAME at running locally

I think the variable has been renamed at some point. `DNS_DOMAIN=${KUBE_DNS_NAME:-"cluster.local"}`
This commit is contained in:
Richard Kovacs 2023-02-04 22:20:05 +01:00 committed by GitHub
parent 6b11f7fa6e
commit f11b39e60a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@ To start the DNS service, you need to set the following variables:
```sh
KUBE_ENABLE_CLUSTER_DNS=true
KUBE_DNS_SERVER_IP="10.0.0.10"
KUBE_DNS_DOMAIN="cluster.local"
KUBE_DNS_NAME="cluster.local"
```
To know more on DNS service you can check out the [docs](http://kubernetes.io/docs/admin/dns/).