Skip to content

Instantly share code, notes, and snippets.

@Otterpohl
Created April 18, 2023 16:41
Show Gist options
  • Save Otterpohl/8419a6de01fd015ddc16b85a7827624d to your computer and use it in GitHub Desktop.
Save Otterpohl/8419a6de01fd015ddc16b85a7827624d to your computer and use it in GitHub Desktop.
kind: Pod
apiVersion: v1
metadata:
name: volume-debugger
spec:
volumes:
- name: volume-to-debug
persistentVolumeClaim:
claimName: <pvc to mount>
containers:
- name: debugger
image: busybox
command: ['sleep', '3600']
volumeMounts:
- mountPath: "/data"
name: volume-to-debug
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment