部署入口后,无法创建节点端口错误

问题描述

部署入口后无法创建NodePort错误

我在屏幕截图中定义了一个入口:

Screenshot

由于无法创建NodePort错误,Ingress服务器的2个副本未旋转。请指教

解决方法

就像错误说的那样。您缺少NodePortPods CRD。似乎CRD在某个时间点存在。但是我在repo中看不到它了。您没有指定如何部署入口运算符,但是可以确保安装最新的。

helm repo add appscode https://charts.appscode.com/stable/
helm repo update
helm search repo appscode/voyager --version v13.0.0
# Generate the template to check or use helm install
helm template voyager-operator appscode/voyager --version v13.0.0 --namespace kube-system  --no-hooks --set cloudProvider=baremetal ? Use the right cloud provider

✌️