Files
kubernetes/release-0.20.0/examples/liveness/http-liveness.yaml
2015-06-25 20:07:34 -07:00

19 lines
324 B
YAML

apiVersion: v1
kind: Pod
metadata:
labels:
test: liveness
name: liveness-http
spec:
containers:
- args:
- /server
image: gcr.io/google_containers/liveness
livenessProbe:
httpGet:
path: /healthz
port: 8080
initialDelaySeconds: 15
timeoutSeconds: 1
name: liveness