6 Star 0 Fork 0

王孟辉/template

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
k8s.yaml 932 Bytes
一键复制 编辑 原始数据 按行查看 历史
苏宁 提交于 2023-11-17 15:38 . 修改k8s yaml文件
#版本
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
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/menghuiwang/template.git
git@gitee.com:menghuiwang/template.git
menghuiwang
template
template
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385