Skip to content

Instantly share code, notes, and snippets.

@evie404
Created July 7, 2017 00:40
Show Gist options
  • Save evie404/8ef78facff21361509c66e84394ca440 to your computer and use it in GitHub Desktop.
Save evie404/8ef78facff21361509c66e84394ca440 to your computer and use it in GitHub Desktop.
apiVersion: v1
kind: Pod
metadata:
labels:
test: liveness
name: liveness-localhost
namespace: cluster-tests
spec:
containers:
- name: liveness
image: python:3.4.6
command:
- python
args:
- -m
- http.server
- "1234"
- --bind
- "127.0.0.1"
livenessProbe:
httpGet:
path: /
port: 1234
host: "127.0.0.1"
initialDelaySeconds: 5
timeoutSeconds: 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment