Created
March 10, 2025 21:37
-
-
Save nullset2/0ac1399adf5dc0998504e3b7b9b63efa 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: busybox-pod | |
namespace: default | |
spec: | |
containers: | |
- name: busybox | |
image: busybox | |
command: ["sh"] | |
stdin: true | |
tty: true | |
volumeMounts: | |
- mountPath: "/data" | |
name: plex-config-volume | |
volumes: | |
- name: plex-config-volume | |
persistentVolumeClaim: | |
claimName: plex-config |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment