问题描述
本人准备了个yaml脚本,执行后,出现了
curl: (7) Failed connect to 10.244.36.90:8000; No route to host
,好在解决了。
场景还原
yaml文件
apiVersion: apps/v1 kind: Deployment metadata: name: whoami-deployment labels: app: whoami spec: replicas: 3 selector: matchLabels: app: whoami template: metadata: labels: app: whoami spec: containers: - name: whoami image: jwilder/whoami ports: - containerPort: 8000
执行命令
kubectl apply -f whoami-deployment.yaml
效果如下:
看着挺正常的。
可是当使用
curl curl 10.244.36.90:8000
的时候,却出现了这个页面:
解决方式
执行2个命令即可。
[root@k8s-master ~]# iptables --flush
[root@k8s-master ~]# iptables -tnat --flush
查看效果:
问题解决了!!
大功告成!!