You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.4 KiB
57 lines
1.4 KiB
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
labels:
|
|
app: gw-charge
|
|
tier: backend
|
|
name: gw-charge
|
|
namespace: yibin-charge
|
|
spec:
|
|
progressDeadlineSeconds: 600
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: gw-charge
|
|
tier: backend
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: gw-charge
|
|
tier: backend
|
|
spec:
|
|
containers:
|
|
- env:
|
|
- name: CACHE_IGNORE
|
|
value: js|html
|
|
- name: CACHE_PUBLIC_EXPIRATION
|
|
value: 3d
|
|
- name: LANG
|
|
value: C.UTF-8
|
|
- name: JAVA_OPTS
|
|
value: '-Dspring.profiles.active=test'
|
|
image: $REGISTRY_HARBOR/$REGISTRY_HARBOR_NAMESPACE/gw-charge:latest
|
|
readinessProbe:
|
|
httpGet:
|
|
path: /
|
|
port: 7001
|
|
timeoutSeconds: 10
|
|
failureThreshold: 30
|
|
periodSeconds: 5
|
|
imagePullPolicy: Always
|
|
name: gw-charge
|
|
ports:
|
|
- containerPort: 7001
|
|
protocol: TCP
|
|
resources:
|
|
limits:
|
|
cpu: 300m
|
|
memory: 600Mi
|
|
requests:
|
|
cpu: 100m
|
|
memory: 100Mi
|
|
terminationMessagePath: /dev/termination-log
|
|
terminationMessagePolicy: File
|
|
dnsPolicy: ClusterFirst
|
|
restartPolicy: Always
|
|
terminationGracePeriodSeconds: 30
|