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
minikube by default uses **cluster.local** if none is specified via the start flag --dns-domain. The configuration file used by kubeadm are found inside **/var/tmp/minikube/kubeadm.yaml** directory inside minikube.
11
+
12
+
Default DNS configuration will look like below
13
+
14
+
```
15
+
apiVersion: kubeadm.k8s.io/v1beta1
16
+
kind: InitConfiguration
17
+
localAPIEndpoint:
18
+
......
19
+
......
20
+
---
21
+
apiVersion: kubeadm.k8s.io/v1beta1
22
+
kind: ClusterConfiguration
23
+
.....
24
+
.....
25
+
kubernetesVersion: v1.16.0
26
+
networking:
27
+
dnsDomain: cluster.local
28
+
podSubnet: ""
29
+
serviceSubnet: 10.96.0.0/12
30
+
---
31
+
```
32
+
33
+
To change the dns pass the value when starting minikube
0 commit comments