Skip to content

Instantly share code, notes, and snippets.

@scott2449
Created November 16, 2018 15:51
Show Gist options
  • Save scott2449/004e5664828a0ba5db62d9cbadb061e5 to your computer and use it in GitHub Desktop.
Save scott2449/004e5664828a0ba5db62d9cbadb061e5 to your computer and use it in GitHub Desktop.
apiVersion: apps/v1
kind: Deployment
metadata:
name: test
spec:
replicas: 1
selector:
matchLabels:
component: test
template:
metadata:
labels:
component: test
spec:
containers:
- name: test
image: node:8
command: [ "/bin/sh", "-c", "--" ]
args: [ "while true; do sleep 30; done;" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment