Jenkins服务文件
{ apiVersion: v1
kind: Service
metadata:
name: jenkins
spec:
ports:
- port: 8080
protocol: TCP
targetPort: 8080
nodePort: 30000
externalIPs:
- A.B.C.D
selector:
app: jenkins
type: NodePort
}
背景: 我想访问Kubernetes上的仪表板,该服务正在Kubernetes集群上运行,我找不到有关如何访问jenkins仪表板的更多文档。 -我需要在服务文件中进行更多配置吗? -是否有其他选择或方法可以实现?