// 未分类
k8s Deployment 格式
发布 2023-09-17 · 永久链接
初学者
> 来自文档[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@