2021-01-27
---kind: Deployment # 组件类型apiVersion: apps/v1metadata: name: hello-api namespace: default # 可指定,不指定时使用默认命名空间 labels: name: hello-apispec: replicas: 2 # 部署两份叫 hello-api 的容器 selector: matchLabels: name: hello-api template:







