代码拉取完成,页面将自动刷新
#版本
apiVersion: apps/v1
#资源类型
kind: Deployment
#类型对应的数据
metadata:
name: test
labels:
app: test
spec:
strategy: # 滚动更新策略
type: Recreate
replicas: 1 # 副本数
selector: # 标签选择器
matchLabels:
app: test
template: # POD模板
metadata:
labels:
app: test
spec:
containers: # 容器列表
- name: test
image: menghui6364/template:VERSION
imagePullPolicy: Always
ports:
- containerPort: 8888
---
apiVersion: v1
# 容器端口
kind: Service
metadata:
name: test
spec:
# 服务类型
type: NodePort # 映射主机端口
selector:
app: test # 选择pod的标签
ports:
- port: 80
targetPort: 80
nodePort: 30001
name: nginx
- port: 8888
targetPort: 8888
nodePort: 30002
name: test
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。