Skip to content

Instantly share code, notes, and snippets.

@larkintuckerllc
Created May 14, 2025 18:53
Show Gist options
  • Save larkintuckerllc/e93b93e231526ce9a2ee2675011bf89e to your computer and use it in GitHub Desktop.
Save larkintuckerllc/e93b93e231526ce9a2ee2675011bf89e to your computer and use it in GitHub Desktop.
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