k8s的endpoints显示为空的原因分析

Endpoints为空的原因:Service的配置文件不正确,以下是endpoints可以正常生成的配置文件格式,实测可行,具体格式如下所示:
kind: Service
apiVersion: v1
metadata:
name: yolov3-tensorflow-node1
spec:
type: NodePort
selector:
app: yolov3-tensorflow-node1
ports:
- protocol: TCP
port: 88
nodePort: 30013
targetPort: 8887

你可能感兴趣的:(k8s的endpoints显示为空的原因分析)