You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/getting-started-guides/locally.md
+10-1Lines changed: 10 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -171,7 +171,16 @@ One or more of the Kubernetes daemons might've crashed. Tail the logs of each in
171
171
172
172
#### The pods fail to connect to the services by host names
173
173
174
-
The local-up-cluster.sh script doesn't start a DNS service. Similar situation can be found [here](http://issue.k8s.io/6667). You can start a manually. Related documents can be found [here](../../cluster/addons/dns/#how-do-i-configure-it)
174
+
To start the DNS service, you need to set the following variables:
175
+
176
+
```sh
177
+
KUBE_ENABLE_CLUSTER_DNS=true
178
+
KUBE_DNS_SERVER_IP="10.0.0.10"
179
+
KUBE_DNS_DOMAIN="cluster.local"
180
+
KUBE_DNS_REPLICAS=1
181
+
```
182
+
183
+
To know more on DNS service you can look [here](http://issue.k8s.io/6667). Related documents can be found [here](../../cluster/addons/dns/#how-do-i-configure-it)
0 commit comments