Created
June 28, 2017 03:27
-
-
Save metral/3197a8556a016971da9ade181dc10e1e to your computer and use it in GitHub Desktop.
Ubuntu debug container for k8s
This file contains hidden or 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: v1 | |
| kind: Pod | |
| metadata: | |
| name: ubuntu-debug | |
| spec: | |
| hostNetwork: true | |
| containers: | |
| - image: metral/debug:0.0.1 | |
| command: | |
| - sleep | |
| - "86400" | |
| imagePullPolicy: IfNotPresent | |
| name: ubuntu | |
| restartPolicy: Always |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment