kubectl apply报错,spec.ports[0].no
2021-02-03 本文已影响0人
CokeCode
* spec.ports[0].nodePort: Forbidden: may not be used when `type` is 'ClusterIP'
将service的type: LoadBalancer改成type: ClusterIP时,执行kubectl apply会报错。可以先删除service,然后再执行kubectl apply。
apiVersion: v1
kind: Service
metadata:
spec:
type: LoadBalancer
删除service的命令:
$ kubectl delete svc xxx_service -n xxx_ns
删除xxx_ns
命名空间下的xxx_service
服务