Kubernetes – how to download a PersistentVolume’s content
I can think about two options to fulfill your needs: Create a pod with the PV attached to it and use kubectl cp to copy the contents wherever you need. You could for example use a PodSpec similar to the following: apiVersion: v1 kind: Pod metadata: name: dataaccess spec: containers: – name: alpine image: alpine:latest … Read more