Last active
December 22, 2020 09:20
-
-
Save rbudiharso/e70c9d011db15255306c58af2ce8013d to your computer and use it in GitHub Desktop.
Debugging Pod
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: debug | |
spec: | |
containers: | |
- name: doks-debug | |
image: 'rbudiharso/debug-pod:latest' | |
command: | |
- sleep | |
- infinity | |
resources: | |
limits: | |
cpu: 100m | |
memory: 512Mi | |
requests: | |
cpu: 100m | |
memory: 512Mi | |
securityContext: | |
privileged: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment