Skip to content
Snippets Groups Projects
Commit e25f7aab authored by Steffen Vogel's avatar Steffen Vogel :santa_tone2:
Browse files

kubernetes: add liveness probes to deployments

parent 1453d175
No related branches found
No related tags found
No related merge requests found
......@@ -35,6 +35,15 @@ spec:
volumeMounts:
- mountPath: /usr/src/app/public/
name: files
livenessProbe:
httpGet:
path: /api/v1/counts
port: 4000
initialDelaySeconds: 3
periodSeconds: 3
ports:
- name: http
containerPort: 4000
volumes:
- name: files
persistentVolumeClaim:
......
......@@ -22,3 +22,9 @@ spec:
ports:
- name: http
containerPort: 5000
livenessProbe:
httpGet:
path: /
port: 5000
initialDelaySeconds: 3
periodSeconds: 3
......@@ -21,10 +21,16 @@ spec:
- image: nginx:1.17.4-alpine
name: nginx
ports:
- containerPort: 8080
- containerPort: 80
volumeMounts:
- mountPath: /etc/nginx/conf.d/
name: config
livenessProbe:
httpGet:
path: /
port: 80
initialDelaySeconds: 3
periodSeconds: 3
volumes:
- name: config
configMap:
......
......@@ -52,6 +52,12 @@ spec:
name: config
- mountPath: /data
name: data
livenessProbe:
httpGet:
path: /
port: 80
initialDelaySeconds: 3
periodSeconds: 3
volumes:
- name: config
configMap:
......
......@@ -24,3 +24,9 @@ spec:
ports:
- name: http
containerPort: 8088
livenessProbe:
httpGet:
path: /
port: 8088
initialDelaySeconds: 3
periodSeconds: 3
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment