Skip to content

Instantly share code, notes, and snippets.

@gdyrrahitis
Created June 20, 2020 15:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gdyrrahitis/13d27cf5fc5338b2668d2f28ac917bb2 to your computer and use it in GitHub Desktop.
Save gdyrrahitis/13d27cf5fc5338b2668d2f28ac917bb2 to your computer and use it in GitHub Desktop.
Long running ubuntu pod
apiVersion: v1
kind: Pod
metadata:
name: ubuntu1
labels:
app: ubuntu1
spec:
containers:
- name: ubuntu1
image: ubuntu
command: [ "/bin/bash", "-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