yifu-provider-service.yaml 909 Bytes
Newer Older
fangxinjiang's avatar
fangxinjiang committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
apiVersion: v1                 # 指定api版本,此值必须在kubectl api-versions中
kind: Service                  # 指定创建资源的角色/类型
metadata:                      # 资源的元数据/属性
  labels:                      # 设定资源的标签
    app: yifu-provider             # 资源的名字,在同一个namespace中必须唯一
  name: yifu-provider              # 资源的名字,在同一个namespace中必须唯一
  namespace: prd-mvp           # 部署在哪个namespace中
spec:                          # 资源规范字段
  ports:
    - port: 7001               # service 端口
      protocol: TCP            # 协议
      targetPort: 7001         # 容器暴露的端口
      #name: http              # 端口名称
  selector:                    # 选择器
    app: yifu-provider             # 资源名称
  type: ClusterIP              # ClusterIP 类型