Created
May 14, 2025 18:53
-
-
Save larkintuckerllc/e93b93e231526ce9a2ee2675011bf89e to your computer and use it in GitHub Desktop.
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 | |
namespace: default | |
spec: | |
containers: | |
- name: debug | |
image: ubuntu:latest | |
command: ["/bin/bash"] | |
args: | |
- -c | |
- | | |
while true; do | |
sleep 60 | |
done | |
volumeMounts: | |
- name: config-volume | |
mountPath: /etc/config | |
volumes: | |
- name: config-volume | |
configMap: | |
name: hello |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment