2

我根据这里的步骤在我的 ubuntu 机器上安装了 microk8s https://ubuntu.com/kubernetes/install#single-node

然后我按照kubernetes官方教程创建并暴露了这样的部署

microk8s.kubectl create deployment kubernetes-bootcamp --image=gcr.io/google-samples/kubernetes-bootcamp:v1

microk8s.kubectl expose deployment/kubernetes-bootcamp --type=NodePort --port 8083

这是我的kubectl get services输出

akila@ubuntu:~$ microk8s.kubectl get services
NAME                  TYPE        CLUSTER-IP      EXTERNAL-IP   PORT(S)          AGE
kubernetes            ClusterIP   10.152.183.1    <none>        443/TCP          25h
kubernetes-bootcamp   NodePort    10.152.183.11   <none>        8083:31695/TCP   17s

这是我的kubectl get pods输出

akila@ubuntu:~$ microk8s.kubectl get pods
NAME                                   READY   STATUS    RESTARTS   AGE
kubernetes-bootcamp-6f6656d949-rllgt   1/1     Running   0          51m

但我无法使用http://localhost:8083或使用从我的浏览器访问该服务http://10.152.183.11:31695

当我尝试 http://localhost:31695 时,我得到了 ERR_CONNECTION_REFUSED。

如何从我的浏览器访问这个“kubernetes-bootcamp”服务?我错过了什么吗?

4

2 回答 2

5

集群外部(即浏览器)可访问且不可访问10.152.183.11 IP 。CLUSTER-IP您应该使用http://localhost:31695在主机系统31695NodePort打开的位置。

图像的容器gcr.io/google-samples/kubernetes-bootcamp:v1需要在端口上侦听,8083因为您将它暴露在该端口上。仔细检查,否则会导致ERR_CONNECTION_REFUSED错误。

如果容器正在侦听端口,8080则使用以下命令公开该端口

microk8s.kubectl expose deployment/kubernetes-bootcamp --type=NodePort --port 8080
于 2020-07-15T15:13:12.310 回答
1

尝试这个

kubectl port-forward <pod_name> <local_port>:<pod_port> 

然后访问http://localhost:<local_port>

于 2020-07-15T15:39:08.363 回答