作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前正在学习 docker 和 kubernetes。我遇到的问题之一是将我的 nginx pod 暴露在公共(public)互联网上。我想从我的网络浏览器访问我的 serverIP 并查看 nginx 页面,就好像 nginx 安装在服务器上一样。
来自 kubernetes 网站的 pod-nginx.yml
apiVersion: v1
kind: Pod
metadata:
name: nginx
spec:
containers:
- name: nginx
image: nginx:1.7.9
ports:
- containerPort: 80
sudo kubectl port-forward nginx 80:80
curl http://localhost
返回 nginx 页面,而
curl http://<serverIP>
返回
failed to connect <serverIP> port:80 Connection refused
最佳答案
有多种公开服务的方法:
关于docker - 如何将 k8 pod 暴露给公共(public)互联网?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48361841/
我是一名优秀的程序员,十分优秀!