mirror of
https://github.com/eclipse-sailing-analytics/sailing-analytics.git
synced 2026-09-15 10:18:45 +00:00
18 lines
308 B
YAML
18 lines
308 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: nginx-liveness-pod
|
|
spec:
|
|
containers:
|
|
- name: nginx
|
|
image: nginx:mainline
|
|
ports:
|
|
- containerPort: 80
|
|
name: http-port
|
|
livenessProbe:
|
|
httpGet:
|
|
path: /
|
|
port: http-port
|
|
initialDelaySeconds: 3
|
|
periodSeconds: 30
|