无法在 MacBook Pro M1 上运行公开服务
I try to run an exposed service on my Macbook(M1). However, I failed to browse the service locally. What could be the root cause?
Please see the attached images.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
用于获取 minikube IP 和服务 NodePort 的快捷命令不起作用吗?
Is the shortcut command for fetching the minikube IP and a service’s NodePort not working?
在 MacOS 上使用 docker 驱动程序运行 minikube 有一些限制。请参阅此 GitHub 问题。
至少有两个选项(更多,但这些都很简单):
隧道 用于将运行 minikube 的虚拟机内部的服务公开到主机网络。请参阅访问minikube中的应用程序。
这就是
minikube_IP :NodePort
转换为localhost: different_port
。使用 VirtualBox 驱动程序启动 minikube 以获得正确的 IP(如果您
确实需要访问 NodePort 上的服务),位于命令下方
如何使用 VirtualBox 驱动程序启动它(这应该安装在
你的机器):
There are some limitations with minikube running with docker driver on MacOS. Please see this GitHub issue.
There are two options at least (more, but these are simple to do):
Tunnel is used to expose the service from inside of the VM where minikube is running to the host machine's network. Please refer to access applications in minikube.
This is how
minikube_IP:NodePort
transforms tolocalhost:different_port
.start minikube with VirtualBox driver to get a proper IP (if you
really need to access your service on NodePort), below the command
how to start it with VirtualBox driver (this should be installed on
your machine):