Can someone please detail the steps necessary to install the kube-dns addon? I've downloaded the nearly 400MB git repo in the previous link and run make
as instructed but get Nothing to be done for 'all'.
The docs aren't clear what form add-ons exist in, and how to install them. The "Administrators guide" link there takes me to this unhelpful page.
I've tried https://stackoverflow.com/a/42315074/4978821, but got an error validating data
message. Even if this worked, it seems like it'd be an unofficial and awkward solution.
Answers like this are also too vague: https://stackoverflow.com/a/36105547/4978821.
I'd be happy to create a pull request to improve the documentation, once I have a solution.
Updated to clarify my issue:
As mentioned by Aaron, the dns addon is enabled in minikube by default. Running minikube addons list
shows that it is enabled. However, if I get into a bash shell for a running pod, like such kubectl exec -it node-controller-poqsl bash
and try to reach my mongo service using ping, for example, it resolves to a public URL, rather than the kubernetes service IP.
This fix is for VirtualBox drivers only - confirm your driver with
The accepted answer is correct that kube-dns is installed and enabled by default. But it seems to be a common problem that the pods to manage DNS are not created, making it seem that kube-dns has not been installed.
Eg:
You can confirm kube-dns is installed and enabled (even though not working) with:
The underlying problem is VirtualBox related, as described here: https://forums.virtualbox.org/viewtopic.php?f=7&t=50368
Fix:
VM name is probably "minikube". If the last command doesn't return a large list of pods (including kube-dns and kube-dashboard), wait a few moments - I have a few blank results before success.
For Windows users, VBoxManage is installed by default at c:\Program Files\Oracle\VirtualBox
Further information at https://superuser.com/questions/641933
The kube-dns addon should be enabled by default in minikube. You can run
kubectl get po -n kube-system
to check if the pod the addon-manager launches is there. If you don't see the pod listed, make sure that the addon is enabled in minikube by runningminikube addons list
and verifying thatkube-dns
isenabled
Edit: For me
kubectl get po -n kube-system
is a valid command, here is the output:You can see from this that the kube-dns pods are running correctly. Can you verify that your kube-dns pods are in the
Running
state?