forked from gopishank/kubernetes-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deployment-final.yaml
76 lines (75 loc) · 1.7 KB
/
deployment-final.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx-deployment
labels:
app: nginx
spec:
replicas: 3
selector:
matchLabels:
app: nginx
template:
metadata:
labels:
app: nginx
spec:
containers:
- name: nginx-cont
image: nginx:latest
ports:
- containerPort: 80
#
lifecycle:
postStart:
exec:
command: ["/bin/sh", "-c", "echo Hello from the postStart handler"]
preStop:
exec:
command: ["/bin/sh","-c","nginx -s quit; while killall -0 nginx; do sleep 1; done"]
#
readinessProbe:
httpGet:
path: /
port: 80
initialDelaySeconds: 15
periodSeconds: 20
successThreshold: 1
livenessProbe:
httpGet:
path: /
port: 80
initialDelaySeconds: 15
periodSeconds: 60
successThreshold: 1
#
resources:
requests:
cpu: "150m"
memory: "100Mi"
limits:
cpu: "325m"
memory: "175Mi"
#
env:
- name: JAVA_HOME_PRD
valueFrom:
configMapKeyRef:
name: java-prd
key: JAVA_HOME_PRD
#
volumeMounts:
- name: config-prd
mountPath: /usr/src/app/config
- name: my-secret-volume
mountPath: /usr/src/app/secret
volumes:
- name: config-prd
configMap:
name: config-prd
volumeMounts:
- name: my-secret-volume
mountPath: /usr/src/app/secret
- name: my-secret-volume
secret:
secretName: my-secret