Skip to content

Commit 56e27a2

Browse files
author
Matthew Fisher
authored
Merge pull request #852 from ybart/patch-2
fix(minikube/dns): Add precisions about dnsmasq
2 parents 4bb1f54 + 5c2ed7c commit 56e27a2

1 file changed

Lines changed: 12 additions & 1 deletion

File tree

  • src/quickstart/provider/minikube

src/quickstart/provider/minikube/dns.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ something-random.192.168.99.100.nip.io has address 192.168.99.100
3535

3636
### Using DNSMasq
3737

38-
If you `nip.io` is working for you, you can skip this section, and proceed to verify the hostname.
38+
If `nip.io` is working for you, you can skip this section, and proceed to verify the hostname.
3939

4040
If you prefer not to use `nip.io` or cannot (because your DNS provider might have blocked it), you can use `dnsmasq` on Linux and macOS or `Acrylic` on Windows.
4141

@@ -57,6 +57,17 @@ $ echo nameserver 127.0.0.1 | sudo tee /etc/resolver/minikube
5757
$ sudo killall -HUP mDNSResponder
5858
```
5959

60+
You may need to ensure that the `dnsmasq` service at 127.0.0.1 is listed as a DNS server for your network connection. You may check this using the following command:
61+
62+
```sh
63+
$ scutil --dns | grep minikube -B 1 -A 3
64+
resolver #8
65+
domain : minikube
66+
nameserver[0] : 127.0.0.1
67+
flags : Request A records, Request AAAA records
68+
reach : Reachable, Local Address, Directly Reachable Address
69+
```
70+
6071
To verify the hostname, you will need to use `deis.minikube` as hostname instead of `deis.192.168.99.100.nip.io` in the next section. We will also use it in the next step.
6172

6273
### Verify the hostname

0 commit comments

Comments
 (0)