加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
k8s.yaml 1.01 KB
一键复制 编辑 原始数据 按行查看 历史
小猿 提交于 2022-07-27 03:08 . !1支持nacos注册中心和配置中心
apiVersion: apps/v1
kind: Deployment
metadata:
name: sms-gateway
spec:
selector:
matchLabels:
app: sms-gateway
replicas: 1
template:
metadata:
labels:
app: sms-gateway
spec:
imagePullSecrets:
- name: jdd-cloud
containers:
- name: sms-gateway
imagePullPolicy: Always
image: wellyspring.tencentcloudcr.com/jdd/new-jdd-sms-gateway:latest
resources:
requests:
memory: 1024Mi
cpu: 500m
limits:
memory: 1024Mi
cpu: 500m
ports:
- name: http-port
containerPort: 3000
volumeMounts:
- name: business-log
mountPath: /home/yaoll/logs
volumes:
- name: business-log
emptyDir: { }
---
#service
apiVersion: v1
kind: Service
metadata:
name: sms-gateway
spec:
selector:
app: sms-gateway
ports:
- port: 3000
protocol: TCP
targetPort: 3000
type: ClusterIP
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化