最佳答案
Kubernetes Service
在服务定义中可以有targetPort
和port
:
kind: Service
apiVersion: v1
metadata:
name: my-service
spec:
selector:
app: MyApp
ports:
- protocol: TCP
port: 80
targetPort: 9376
port
和targetPort
之间的区别是什么?