Skip to content

Instantly share code, notes, and snippets.

@metral
Created October 5, 2017 03:27
Show Gist options
  • Select an option

  • Save metral/44f3aa3419e13f79cbf513e182539589 to your computer and use it in GitHub Desktop.

Select an option

Save metral/44f3aa3419e13f79cbf513e182539589 to your computer and use it in GitHub Desktop.
Kubernetes Debug - Deployment
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: debug
labels:
name: debug
spec:
replicas: 1
selector:
matchLabels:
app: debug
template:
metadata:
labels:
app: debug
spec:
containers:
- image: metral/debug:0.0.2
name: debug
command:
- sleep
- "86400"
imagePullPolicy: Always
restartPolicy: Always
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment