persistent-volumes Questions

6

Solved

I have a pretty simple Kubernetes pod. I want a stateful set and want the following process: I want to have an initcontainer download and uncompress a tarball from s3 into a volume mounted to the...
Topcoat asked 25/2, 2019 at 22:39

2

I'm trying to view the contents of a PVC (Persistent Volume Claim), but it appears that the only method is to mount the PVC into a container and inspect the contents. As you can imagine, this proce...
Occidental asked 23/4, 2023 at 7:2

4

Solved

I want to setup a PVC on AWS, where I need ReadWriteMany as access mode. Unfortunately, EBS only supports ReadWriteOnce. How could I solve this? I have seen that there is a beta provider for AWS...
Culbertson asked 6/7, 2018 at 14:46

6

Solved

Use case: I have a NFS directory available and I want to use it to persist data for multiple deployments & pods. I have created a PersistentVolume: apiVersion: v1 kind: PersistentVolume meta...

2

I have a Kubernetes cluster with some pods deployed (DB, Frontend, Redis). A part that I can't fully grasp is what happens to the PVC after the pod is deleted. For example, if I delete POD_A which...

6

Accidentally tried to delete all PV's in cluster but thankfully they still have PVC's that are bound to them so all PV's are stuck in Status: Terminating. How can I get the PV's out of the "termin...
Rriocard asked 30/7, 2018 at 0:29

7

I am trying to delete persistent volumes on a Kubernetes cluster. I ran the following command: kubectl delete pv pvc-08e65270-b7ce-11e9-ba0b-0a1e280502e2 pvc-08e87826-b7ce-11e9-ba0b-0a1e280502e2 p...
Dumanian asked 7/8, 2019 at 19:58

13

Solved

I created a PersistentVolume sourced from a Google Compute Engine persistent disk that I already formatted and provision with data. Kubernetes says the PersistentVolume is available. kind: Persist...
Library asked 3/7, 2017 at 17:38

13

Solved

I created the following persistent volume by calling kubectl create -f nameOfTheFileContainingTheFollowingContent.yaml apiVersion: v1 kind: PersistentVolume metadata: name: pv-monitoring-static-...

3

I have a bunch of standard PVs bound to PVCs in Kubernetes running in Google Kubernetes Engine. I want to change their storage class to SSD. How do I achieve that?

2

Solved

We are migrating legacy java and .net applications from on-premises VMs to an on-premises Kubernetes cluster. Many of these applications make use of windows file shares to transfer files from and...
Shewmaker asked 12/2, 2018 at 13:23

2

The following is the k8s definition used: apiVersion: v1 kind: PersistentVolumeClaim metadata: name: nfs-pv-provisioning-demo labels: demo: nfs-pv-provisioning spec: accessModes: [ "ReadWriteO...
Minuteman asked 14/6, 2018 at 9:57

11

Solved

What is the difference between persistent volume (PV) and persistent volume claim (PVC) in Kubernetes/ Openshift by referring to documentation? What is the difference between both in simple terms?...

2

Solved

On GKE, I set a statefulset resource as --- apiVersion: apps/v1 kind: StatefulSet metadata: name: redis spec: serviceName: "redis" selector: matchLabels: app: redis updateStrategy: ...

3

I am new to k8s and trying to setup prometheus monitoring for k8s. I used "helm install" to setup prometheus. Now: two pods are still in pending state: prometheus-server prometheus-alertmanage...

5

I have a three node GCE cluster and a single-pod GKE deployment with three replicas. I created the PV and PVC like so: # Create a persistent volume for web content apiVersion: v1 kind: PersistentV...

3

Solved

I am trying to use Persistent Volumes in AWS EKS. I followed all the steps mentioned from the below link https://aws.amazon.com/premiumsupport/knowledge-center/eks-persistent-storage/ When I deploy...

1

Solved

We have a EKS setup provisioned where we use a Cloud Native Buildpacks based Tekton Pipeline our PipelineRuns are stuck and pending forever without getting a Pod resource. We created a PersistentVo...

18

I try to set up Kubernetes cluster. I have Persistent Volume, Persistent Volume Claim and Storage class all set-up and running but when I wan to create pod from deployment, pod is created but...
Gotland asked 21/8, 2018 at 10:12

4

Solved

I am trying to setup a Local Persistent volume using local storage using WSL. But the pod STATUS stops at Pending. The kubectl describe pod <pod-name> gives below error. Warning FailedMount 2...

1

I want to add or copy files into persistent volume and then use it in container using volume mount ?any help
Cockboat asked 17/9, 2022 at 8:52

1

I am new to Azure Container Apps. I had a requirement to deploy set of applications to Azure container apps. There was a problem with the setup when I deploy my Postgres DB as container when the co...

4

Solved

I've created the persistent volume (EBS 10G) and corresponding persistent volume claim first. But when I try to deploy the postgresql pods as below (yaml file) : Receive the errors from pod: ini...

3

Solved

I scaled my statefulset up to 4, and when scaling down to 1, I saw that I still have 4 persistent volumes with indexes from 0 to 3. I also saw that the status of all of them is Bound I guess it is ...

3

Solved

I followed the steps from AWS knowledge base to create persistent storage: Use persistent storage in Amazon EKS Unfortunately, PersistentVolume(PV) wasn't created: kubectl get pv No resources found...

© 2022 - 2025 — McMap. All rights reserved.