apiVersion: v1
kind: Service
metadata:
name: activiti-service
namespace: default
labels:
name: activiti-service
spec:
type: NodePort #这里代表是NodePort类型的
ports:
- port: 8080 #端口供内部访问
targetPort: 8080 #端口一定要和container暴露出来的端口对应
protocol: TCP
nodePort: 30000 #所有的节点都会开放此端口,此端口供外部调用
selector:
app: web #这里选择器一定要选择容器的标签