Created
April 18, 2023 16:41
-
-
Save Otterpohl/8419a6de01fd015ddc16b85a7827624d to your computer and use it in GitHub Desktop.
This file contains 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
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