summaryrefslogtreecommitdiff
path: root/contributors
diff options
context:
space:
mode:
authorRichard Kovacs <kovacsricsi@gmail.com>2023-02-04 22:20:05 +0100
committerGitHub <noreply@github.com>2023-02-04 22:20:05 +0100
commitf11b39e60af690033d4d8a61804246a3a40ec10c (patch)
treeb195459265567dae05735b8c82308897fd692adb /contributors
parent6b11f7fa6ea67c35a96b1291bae4b90cff0ee61d (diff)
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"}`
Diffstat (limited to 'contributors')
-rw-r--r--contributors/devel/running-locally.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/contributors/devel/running-locally.md b/contributors/devel/running-locally.md
index 490f1c20..ef2d4d54 100644
--- a/contributors/devel/running-locally.md
+++ b/contributors/devel/running-locally.md
@@ -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/).