-
Notifications
You must be signed in to change notification settings - Fork 2
/
kubernetes.yaml
51 lines (51 loc) · 1.02 KB
/
kubernetes.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
apiVersion: apps/v1
kind: Deployment
metadata:
name: graceful-shutdown-app
spec:
replicas: 1
selector:
matchLabels:
app: graceful-shutdown-app
template:
metadata:
labels:
app: graceful-shutdown-app
spec:
terminationGracePeriodSeconds: 60
containers:
- name: graceful-shutdown-app
image: integrii/go-k8s-graceful-termination:latest
livenessProbe:
httpGet:
path: /alive
port: 8080
readinessProbe:
periodSeconds: 2
failureThreshold: 3
httpGet:
path: /ready
port: 8080
ports:
- containerPort: 8080
resources:
requests:
memory: 128Mi
cpu: 500m
limits:
cpu: 1
memory: 1Gi
---
apiVersion: v1
kind: Service
metadata:
name: graceful-shutdown-app
spec:
ports:
- name: "8080"
port: 8080
protocol: TCP
targetPort: 8080
selector:
app: graceful-shutdown-app
type: NodePort