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
something-random.192.168.99.100.nip.io has address 192.168.99.100
32
34
```
33
35
36
+
### Using DNSMasq
37
+
38
+
If you `nip.io` is working for you, you can skip this section, and proceed to verify the hostname.
39
+
40
+
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.
41
+
42
+
You can install and configure `dnsmasq` on macOS with [Homebrew](https://brew.sh) with the following commands:
43
+
44
+
```sh
45
+
# Installing dnsmasq
46
+
$ brew install dnsmasq
47
+
48
+
# Configure `.minikube` subdomains to always use minikube IP:
# Make the system resolver use dnsmasq to resolve addresses:
53
+
$ sudo mkdir /etc/resolver
54
+
$ echo nameserver 127.0.0.1 | sudo tee /etc/resolver/minikube
55
+
56
+
# You might need to clear the DNS resolver cache:
57
+
$ sudo killall -HUP mDNSResponder
58
+
```
59
+
60
+
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.
61
+
62
+
### Verify the hostname
63
+
34
64
By default, any HTTP traffic for the hostname `deis` will be sent to the Workflow API service. To test that everything is connected properly you may validate connectivity using `curl`:
0 commit comments