792 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
39
views
Uploading large files to GraphDB cluster
I just installed the enterprise GraphDB version on a Kubernetes cluster, using the official Helm Chart (https://github.com/Ontotext-AD/graphdb-helm/tree/main), setting replicas to 5. Therefore, I now ...
0
votes
0
answers
144
views
MinIO in Kubernetes fails with "Rename across devices" error when using PersistentVolumeClaim (works with hostPath)
I'm setting up MinIO and MLflow in a Minikube Kubernetes cluster and encountering persistent volume issues. The deployment works correctly when using hostPath, but fails with a "Rename across ...
1
vote
1
answer
361
views
MountVolume.SetUp failed for volume "<azure_file_name>" : kubernetes.io/csi: mounter.SetUpAt failed
Suddenly, I am having an issue in Azure AKS where the pod's status hangs at ContainerCreating. When I run kubectl describe pods I see this
Type Reason Age From ...
0
votes
0
answers
51
views
Unexpected subPath Behavior in Kubernetes: Auto-Created Directories with Root Ownership and Permission Issues
I’m observing unexpected behavior when using subPath in a Kubernetes Pod’s volume mount.
Pod Definition:
apiVersion: v1
kind: Pod
metadata:
name: my-pod
spec:
containers:
- name: main-container
...
0
votes
0
answers
165
views
Can we bind mount a file within a named volume in Podman?
Running Podman 5.2.2 with rootless containers.
Trying to mount a file inside of named volume.
I have an existing named volume "certbot-pvc" with a file in it at /live/some.example.tld/...
0
votes
1
answer
365
views
Kubernetes persistent volume claim not binding to NFS persistent volume
I'm trying to set up an NFS based persistent volume for a Kubernetes cluster, I have the mount points created and the shares mounted to the clients which are configured to mount at boot:
example of ...
-1
votes
1
answer
970
views
How to change PV storageClass of Strimzi kafka cluster
I am new at Strimzi and want to get some advice
We have kafka cluster in GKE. It is deployed with Strimzi and
we have it on all stands including prod env.
Our configuration of PVC that used by
kafka:
...
0
votes
1
answer
169
views
Persisting user data and sharing folders using kubespawner
I am using kubespawner to spawn single-user notebook servers on a Kubernetes cluster.
I have two goals:
user-specific data - which lies under /home/iamuser/ on the user spawned pod. Persist and ...
1
vote
1
answer
67
views
Kubernetes Persisten Volumes
I’m working on setting up a Kubernetes pod that needs to work with a Persistent Volume (PV) and Persistent Volume Claim (PVC) for data storage. The goal is to copy a SQLite database file into a ...
0
votes
1
answer
627
views
How to Hard Limit Of Storage Usage
Is there any way to hard limit to PV/PVC? For example;
I have two deployment in the same node.
They have separate pv/pvc. Pod 1 claims 10Gi, Pod 2 claims 15Gi
Node has 25 Gi free filesystem volume ...
0
votes
0
answers
607
views
AWS - Kubernetes PVC - EBS ReadWriteMany on volumeMode: Filesystem
I want to setup EBS backed PVC with volumeMode: Filesystem and accessModes: ReadWriteMany
Can anybody confirm if it is not possible?
When researching about accessModes: ReadWriteMany, I only found ...
0
votes
2
answers
2k
views
Use managed identity to access storage account with persistent volume in AKS
I face the following situation:
I would like to access a storage account using Persistent Volume (PV) and Persistent Volume Claim (PVC) but without an access to the storage account's access key. Hence,...
0
votes
1
answer
715
views
Can I change the path of an existing, bound NFS persistent volume live without stopping pods that use it?
I have a dozen or so persistent volumes of type NFS that are managed by my TrueNAS Scale server. Moving the files and folders that the share points to necessitates changing the persistent volume path ...
1
vote
1
answer
224
views
Is there a way to mount only the file from k8s secret to a pod without disturbing the existing files in the location?
I am trying to mount a file secret.txt from the secret to location /opt/tomcat/conf/secret.txt. there are other files at the same location e.g. /opt/tomcat/conf/creds.txt that I want to retain.
This ...
0
votes
1
answer
391
views
Cannot mount existing OCI Block Volume into OKE container
I'm trying but failing to mount an existing OCI Block Volume in a container in OKE. The Oracle documentation describes how to do this with FlexVolumes (here). I'm using CSI volumes as these are ...