Kubernetes pod不是为服务创建的



我有一个用于jenkins代理的Kubernetes服务。

但正如我所看到的,没有为该服务创建pod。如何从现有服务启动pod创建?

我的服务配置是这样的:

Name:              ci-jenkins-agent
Namespace:         ci
Labels:            app=ci-jenkins
chart=jenkins-0.35.1
component=ci-jenkins-master
Annotations:       <none>
Selector:          component=ci-jenkins-master
Type:              ClusterIP
IP:                199.62.116.92
Port:              slavelistener  50000/TCP
TargetPort:        50000/TCP
Endpoints:         <none>
Session Affinity:  None
Events:            <none>

服务背后的pod是通过匹配服务的Selector和pod的label来决定的。因此,您需要获得标签为component=ci-jenkins-master的现有pod

kubectl get pods -l component=ci-jenkins-master -n ci -o yaml > pod.yaml

但看看服务Endpoints没有任何Pod IP,这意味着服务没有任何后端Pod,可能是因为没有运行标签为component=ci-jenkins-master的Pod

相关内容

  • 没有找到相关文章

最新更新