1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- ---
- apiVersion: apps/v1
- kind: Deployment
- metadata:
- name: youlai-boot
- namespace: youlai-bootnfckx
- labels:
- app: youlai-boot
- spec:
- replicas: 1
- strategy:
- type: RollingUpdate
- rollingUpdate:
- maxSurge: 25%
- maxUnavailable: 25%
- selector:
- matchLabels:
- app: youlai-boot
- template:
- metadata:
- labels:
- app: youlai-boot
- spec:
- containers:
- - name: youlai-boot
- image: registry.cn-hangzhou.aliyuncs.com/youlaitech/youlai-boot:latest
- imagePullPolicy: Always
- ports:
- - containerPort: 8989
- env:
- - name: spring.profiles.active
- value: prod
- - name: TZ
- value: Asia/Shanghai
- resources:
- limits:
- cpu: 256m
- memory: 512Mi
- volumeMounts:
- - mountPath: /logs/youlai-boot
- name: log-volume
- volumes:
- - name: log-volume
- hostPath:
- path: /logs/youlai-boot
- type: DirectoryOrCreate
- ---
- apiVersion: v1
- kind: Service
- metadata:
- name: youlai-boot
- labels:
- app: youlai-boot
- namespace: youlai-bootnfckx
- spec:
- selector:
- app: youlai-boot
- ports:
- - name: http
- protocol: TCP
- port: 8989
- targetPort: 8989
- type: ClusterIP
|