Questions tagged [volumes]

6 questions
1
vote
1 answer

AWS Persistent Storage failed to refresh cached credentials

I'm trying to create a test pod which has a persistent volume. This is my pod.yaml and pvc.yaml on an an EKS cluster. apiVersion: v1 kind: PersistentVolumeClaim metadata: name: my-pvc namespace: my-ns spec: accessModes: - ReadWriteOnce …
0
votes
0 answers

Digitalocean Droplet Mounted Volume Showing Full And Incorrect Size

I attached a 100gb volume for my file backups but somehow my automatic backup failed and when I check the log, it says "no space left on the device" and when I check it using df -h it showing incorrect size and I'm sure its a 100gb from the droplet…
0
votes
0 answers

How mount a windows host local directory in pod

I'm running minikube v1.31.2 (Kubernetes v1.27.4 sur Docker 24.0.4) on Microsoft Windows 10 Pro, with HyperV driver I want to use a local directory (windows host's directory) as a volume in minikube, that i can mount in pods. According to…
0
votes
0 answers

Performance issue with HBSDFCDriver get_volume_stats operation in Cinder

I am currently experiencing performance issues with the HBSDFCDriver in my OpenStack Cinder deployment. The get_volume_stats operation is consistently running longer than expected, leading to warnings about potential instability and significant…
sonvt8
  • 1
  • 1
0
votes
1 answer

How to implement editing Docker container files from host from installation with YML and Dockerfiles (NO Terminal)?

hello i have this yml file to get docker container working with phpmyadmin: phpmyadmin: image: phpmyadmin/phpmyadmin restart: always expose: - 80 depends_on: - database volumes: - /sessions -…
0
votes
1 answer

Mounting volumes in a Dockerfile

When I run a Docker container, I know that if I bind volume foo:bar, the contents of foo on the host will show in bar in the container. However, the --mount option of the RUN command in a Dockerfile does not work the same way. I don't care about the…