Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- apiVersion: apps/v1
- kind: Deployment
- metadata:
- namespace: dev
- name: zyos-mall
- labels:
- app: zyos-mall
- spec:
- replicas: 1
- template:
- metadata:
- name: zyos-mall
- labels:
- app: zyos-mall
- spec:
- containers:
- - name: zyos-mall-container
- image: registry-vpc.cn-shenzhen.aliyuncs.com/fnuoos-prd/zyos-mall:0.1
- ports:
- - containerPort: 5002
- name: 5002tcp
- protocol: TCP
- resources:
- limits:
- cpu: "1"
- memory: 256Mi
- requests:
- cpu: 200m
- memory: 128Mi
- imagePullPolicy: IfNotPresent
- restartPolicy: Always
- volumes:
- - name: host-time
- hostPath:
- path: /etc/localtime
- type: ''
- - name: mall-cfg
- configMap:
- name: zyos-mall-cfg
- defaultMode: 420
- selector:
- matchLabels:
- app: zyos-mall
-
- strategy:
- type: RollingUpdate
- rollingUpdate:
- maxUnavailable: 25%
- maxSurge: 25%
|