ingress-dns: Add notes for NetworkManager with dnsmasq

pull/9020/head
Markus Frosch 2020-08-18 13:14:40 +02:00
parent 1406bb0afa
commit 03ce70f76a
1 changed files with 10 additions and 0 deletions

View File

@ -87,6 +87,16 @@ TODO add supporting docs for Linux OS that do not use `systemctl`
See https://linux.die.net/man/5/resolver
When you are using Network Manager with the dnsmasq plugin, you can add an additional configuration file, but you need
to restart NetworkManager to activate the change.
```bash
echo "server=/test/$(minikube ip)" >/etc/NetworkManager/dnsmasq.d/minikube.conf
systemctl restart NetworkManager.service
```
Also see `dns=` in [NetworkManager.conf](https://developer.gnome.org/NetworkManager/stable/NetworkManager.conf.html).
#### Windows
TODO