Created
October 5, 2017 03:27
-
-
Save metral/44f3aa3419e13f79cbf513e182539589 to your computer and use it in GitHub Desktop.
Kubernetes Debug - Deployment
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: 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