Forked from munchee13/gist:2b7e92feaf9bcf663f4a90698312e1b6
Last active
March 5, 2019 14:57
-
-
Save thoraxe/40aeb0a47264a2e48d9793e0b1fa5af7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: oc | |
spec: | |
selector: | |
matchLabels: | |
app: oc-pod | |
replicas: 1 | |
template: | |
metadata: | |
labels: | |
app: oc-pod | |
spec: | |
containers: | |
- name: oc | |
image: 'docker.io/openshiftdemos/oc:1.4.1-1' | |
command: | |
- bash | |
- '-c' | |
- 'while true; do sleep 60; done' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment