如何使用 hyperkit 驱动程序更改 minikube VM 的 ip 地址
how to change minikube VM ip address with hyperkit driver
在MacOS上用hyperkit驱动启动minikube时,有没有办法指定minikube VM使用的ip地址前缀? minikube hyperkit VM 默认的 ip 地址是 192.168.64.0/24。此地址范围与办公室 ip 地址冲突,我想更改它。但是,我没有找到有关如何配置的文档。
Is there a way to specify the ip address prefix used by the minikube VM?
无法通过命令或编辑配置文件完成。
这些IP由MacOS操作系统中的vmnet服务分发,在文件com.apple.vmnet.plist
中。编辑它不会改变任何东西。
编辑 /var/db/dhcpd_lease
也不会更改 IP。你可以在官方 Minikube site:
上阅读更多关于这个问题的信息
If you are using dnsmasq and minikube fails, add listen-address=192.168.64.1 to dnsmasq.conf.
If you are running other DNS servers, shut them off or specify an alternative bind address.
在MacOS上用hyperkit驱动启动minikube时,有没有办法指定minikube VM使用的ip地址前缀? minikube hyperkit VM 默认的 ip 地址是 192.168.64.0/24。此地址范围与办公室 ip 地址冲突,我想更改它。但是,我没有找到有关如何配置的文档。
Is there a way to specify the ip address prefix used by the minikube VM?
无法通过命令或编辑配置文件完成。
这些IP由MacOS操作系统中的vmnet服务分发,在文件com.apple.vmnet.plist
中。编辑它不会改变任何东西。
编辑 /var/db/dhcpd_lease
也不会更改 IP。你可以在官方 Minikube site:
If you are using dnsmasq and minikube fails, add listen-address=192.168.64.1 to dnsmasq.conf. If you are running other DNS servers, shut them off or specify an alternative bind address.