> 来自文档[k8s-tutorials.pages.dev](https://k8s-tutorials.pages.dev/deployment.html) ``` yaml apiVersion: apps/v1 kind: Deployment metadata: name: hellok8s-deployment spec: replicas: 3 selector: matchLabels: app: hellok8s template: metadata: labels: app: hellok8s spec: containers: - image: guangzhengli/hellok8s:v2 name: hellok8s-container ``` #sss@