1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-04-06 03:57:53 +08:00
This commit is contained in:
handsomewu 2024-11-14 14:17:53 +08:00
commit 7a8ee2a9b2
2 changed files with 52 additions and 2 deletions

View File

@ -33,7 +33,43 @@ export default {
return {
tableData: [], // mounted
yamlEditorVisible: false, // YAML
yamlContent: '', // YAML
yamlContent: `apiVersion: apps/v1
kind: Deployment
metadata:
name: web
namespace: default
annotations: # 记录回滚参数
kubernetes.io/change-cause: "web.v1-nginx-1.19" #记录到revision中的内容记录版本号
spec:
replicas: 3 # Pod副本预期数量
revisionHistoryLimit: 10 # RS历史版本保存数量
selector:
matchLabels:
app: web
strategy:
rollingUpdate:
maxSurge: 25% # 滚动更新过程最大pod副本数
maxUnavailable: 25% # 滚动更新过程中最大不可用pod副本数
type: RollingUpdate
template:
metadata:
labels:
app: web # Pod副本的标签
spec:
containers:
- name: web
image: nginx:1.16
readinessProbe: # 存活检查,如果失败将杀死容器来重启
httpGet:
port: 80
path: /index.html
initialDelaySeconds: 10 # 启动容器后多少秒健康检查
periodSeconds: 10 # 以后间隔多少秒检查一次
livenessProbe: # 就绪检查失败就会剔除 service
httpGet:
port: 80
path: /index.html`, // YAML 默认内容
loading: false
}
},

View File

@ -40,7 +40,21 @@ export default {
return {
tableData: [], // mounted
yamlEditorVisible: false, // YAML
yamlContent: '', // YAML
yamlContent: `apiVersion: v1
kind: Service
metadata:
labels:
app: web
name: web
spec:
type: NodePort # 服务类型
ports:
- port: 80 # Service端口
protocol: TCP # 协议
targetPort: 80 # 容器端口
nodePort: 30009 # 对外暴露的端口可以指定
selector:
app: web # 指定关联Pod的标签`, // YAML 编辑器中的内容
loading: false,
value: ''
}