This tag is for Kubernetes persistent volume related questions.
I created the following persistent volume by calling kubectl create -f nameOfTheFileContainingTheFollowingContent.yaml apiVersion: v1 kind: PersistentVolume metadata: name: pv-monitoring-static-content …
kubernetes persistent-volumes persistent-volume-claimsI created a PersistentVolume sourced from a Google Compute Engine persistent disk that I already formatted and provision with data. …
kubernetes persistent-volumes persistent-volume-claimsI try to set up Kubernetes cluster. I have Persistent Volume, Persistent Volume Claim and Storage class all set-up and …
docker kubernetes persistent-volumesI have an application running over a POD in Kubernetes. I would like to store some output file logs on …
docker kubernetes permission-denied nfs persistent-volumesWhat is the difference between persistent volume (PV) and persistent volume claim (PVC) in Kubernetes/ Openshift by referring to documentation? …
kubernetes openshift storage persistent-volumes persistent-volume-claimsUse case: I have a NFS directory available and I want to use it to persist data for multiple deployments &…
kubernetes nfs persistent-volumes persistent-volume-claimsI am trying to delete persistent volumes on a Kubernetes cluster. I ran the following command: kubectl delete pv pvc-08…
kubernetes persistent-volumesI setup a new k8s in a single node, which is tainted. But the PersistentVolume can not be created …
kubernetes persistent-volumesI have a test executor Pod in K8s cluster created through helm, which asks for a dynamically created PersistentVolume …
kubernetes persistent-volumes file-movingIt seems that Kubernetes supports 3 kinds of access mode for persistent volume: ReadWriteOnce, ReadOnlyMany, ReadWriteMany. I'm really curious about the …
kubernetes persistent-volumes