kubernetes-pvc Questions
4
My k8s cluster initially have 2node and 1master and I deployed statefulset with 3pods, so 3pods with PVC are running on 2 nodes. Now I increased nodes from 2 to 3. So now k8s is 3nodes and 1master....
Rameriz asked 17/6, 2020 at 3:33
3
Basically, I have a problem deleting my spoc-volume-spoc-ihm-kube-test PVC I tried with:
kubectl delete -f file.yml
kubectl delete PVC
but I get every time the same Terminating Status. Also, when ...
Libratory asked 19/4, 2022 at 9:2
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:
...
Barrens asked 12/12, 2020 at 14:45
2
I am using Prometheus 2.33 version.
The following query does not work.
kubelet_volume_stats_available_bytes
kubelet_volume_stats_capacity_bytes
The following query is used to monitor the DISK u...
Mckinley asked 11/2, 2022 at 2:2
4
Solved
Is it possible to reference a PVC (in namespace-A) from namespace-B. Why I need that? I would like to allow the customer (private cloud) to point their volume through PVC, allowing them full contro...
Glendaglenden asked 21/6, 2018 at 0:28
2
I have a PersistentVolumeClaims(PVC) with ReadWriteMany (RWX) access mode. This PVC is clamed by 2 pods. In the second pod I have FluentBit reading the logs stored by the application pod in the sha...
Grandparent asked 9/8, 2021 at 12:46
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...
Ref asked 22/9, 2021 at 20:19
2
Solved
I have kubernetes cluster of 4 nodes. according to this https://kubernetes.io/docs/concepts/storage/storage-limits/
azure should have limit of 16 pv per node.
Microsoft Azure Disk Storage 16
So ...
Rhetor asked 15/11, 2019 at 15:42
2
We re-organise our namespaces in Kubernetes. We want to move our Persistent volume Claims created by a storageclass from one namespace to another.
(Our backup tool don't help).
Gules asked 6/2, 2021 at 15:42
2
Solved
I don't see an option to mount a configMap as volume in the statefulset , as per https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.17/#statefulset-v1-apps only PVC can be associated ...
Sematic asked 14/2, 2020 at 16:7
4
I want to monitor disk usages of persistent volumes in the cluster. I am using CoreOS Kube Prometheus. A dashboard is trying to query with a metric called kubelet_volume_stats_capacity_bytes which ...
Keirakeiser asked 29/4, 2019 at 8:46
1
I am trying to get STDOUT and STDERR of a pod written to the file at PVC mount location.
Following is the template content of my deployment:
"template": {
"metadata": {
"name": "python-stdout...
Makassar asked 26/2, 2019 at 7:11
4
Solved
For example, I have 50 Gib PV/PVC and grant to one Pod, I just want to check usage of the storage
The way I am just following is to set up a busybox pod with mounting the same PVC, then exec into ...
Attract asked 12/12, 2019 at 7:18
1
Solved
I'm running a Ubuntu container with SQL Server in my local Kubernetes environment with Docker Desktop on a Windows laptop.
Now I'm trying to mount a local folder (C:\data\sql) that contains databas...
Vexatious asked 29/10, 2021 at 6:54
1
Solved
Why can't we create PV or PVC in imperative way?
Trying using create command, but it doesn't show any of them.
kubectl create --help
Available Commands:
clusterrole Create a ClusterRole.
clusterr...
Behold asked 10/6, 2021 at 12:6
1
Using GKE to deploy logstash by statefulset kind with pvc. Also need to install an output plugin.
When don't use while true; do sleep 1000; done; in container's command args, it can't deploy with p...
Lizethlizette asked 13/12, 2020 at 13:12
0
Tried to setup vsphere-CSI-driver following below documentation.
Documentation-followed: https://www.definit.co.uk/2019/06/lab-guide-kubernetes-and-storage-with-the-vsphere-cloud-provider-ste...
Delp asked 20/1, 2021 at 7:23
3
Solved
What is wrong with below.
# config for es data node
apiVersion: v1
kind: ConfigMap
metadata:
namespace: infra
name: elasticsearch-data-config
labels:
app: elasticsearch
role: data
data:
elas...
Katlynkatmai asked 5/6, 2020 at 12:52
1
Solved
Our platform which runs on K8s has different components. We need to share the storage between two of these components (comp-A and comp-B) but by mistake, we defined the PV and PVC for that as ReadW...
Foetation asked 14/8, 2020 at 12:13
1
I'm running Jenkins on EKS cluster with k8s plugin and i'd like to write a declarative pipeline in which I specify the pod template in each stage. So a basic example would be the following, in whic...
Ecclesiastic asked 7/8, 2020 at 9:6
1
Solved
I am fairly new to helm and kubernetes so I'm not sure if this is a bug or I'm doing something wrong. I have looked everywhere for answer however before posting and can't find anything that answers...
Mikaelamikal asked 23/6, 2020 at 14:20
2
Solved
I'm trying to setup a volume to use with Mongo on k8s.
I use kubectl create -f pv.yaml to create the volume.
pv.yaml:
kind: PersistentVolume
apiVersion: v1
metadata:
name: pvvolume
labels:
ty...
Captive asked 7/5, 2018 at 15:49
2
I have a DaemonSet that creates flink task manager pods, one per each node.
Nodes
Say I have two nodes
node-A
node-B
Pods
the daemonSet would create
pod-A on node-A
pod-B on node-B
Pers...
Kadner asked 14/3, 2019 at 14:48
6
Solved
We don't want to delete PV and PVC as pods reuse them most of the times.
However, in the long term, we end up with many PVs' and PVCs' that are not used.
How to safely clean?
Outdoor asked 8/11, 2018 at 6:50
2
Is it required to create the directory manually in nodes or will it be auto created by pv?
Here is my pv & pvc file, and I'm seeing this error
no persistent volumes available for this clai...
Luik asked 21/4, 2019 at 5:17
1 Next >
© 2022 - 2024 — McMap. All rights reserved.