文章20 | 阅读 7964 | 点赞0
apiVersion: apps/v1
kind: Deployment
metadata:
name: myweb
spec:
replicas: 8
selector:
matchLabels:
app: myweb
template:
metadata:
labels:
app: myweb
spec:
nodeName: k8s-node01
containers:
- name: myweb-container
image: wangyanglinux/myapp:v1
ports:
- containerPort: 80
apiVersion: apps/v1
kind: Deployment
metadata:
name: myweb
spec:
replicas: 2
selector:
matchLabels:
app: myweb
template:
metadata:
labels:
app: myweb
spec:
nodeSelector:
LABEL: LABEL-VALUE
containers:
- name: myweb
image: wangyanglinux/myapp:v1
ports:
- containerPort: 80
版权说明 : 本文为转载文章, 版权归原作者所有 版权申明
原文链接 : https://blog.csdn.net/wtl1992/article/details/105043138
内容来源于网络,如有侵权,请联系作者删除!