Files
example-food-delivery/pay/kubernetes/deployment.yml
2020-04-19 15:37:29 +09:00

37 lines
815 B
YAML
Executable File

apiVersion: apps/v1
kind: Deployment
metadata:
name: pay
labels:
app: pay
spec:
replicas: 1
selector:
matchLabels:
app: pay
template:
metadata:
labels:
app: pay
spec:
containers:
- name: pay
image: username/pay:latest
ports:
- containerPort: 8080
readinessProbe:
httpGet:
path: '/actuator/health'
port: 8080
initialDelaySeconds: 10
timeoutSeconds: 2
periodSeconds: 5
failureThreshold: 10
livenessProbe:
httpGet:
path: '/actuator/health'
port: 8080
initialDelaySeconds: 120
timeoutSeconds: 2
periodSeconds: 5
failureThreshold: 5