I am installing a chart using helm but its Pod and PVC are getting stuck in pending state but I see PV are in available state.
I face this issue intermittently while installing chart
Pod describe :
Events:
Type Reason Age From Message
---- ------ ---- ---- -------
Warning FailedScheduling 0s (x4 over 2m17s) default-scheduler 0/1 nodes are available: 1 pod has unbound immediate PersistentVolumeClaims.
PVC describe :
Name: web-claim0
Namespace: edge
StorageClass: edge-custom
Status: Pending
Volume:
Labels: app.kubernetes.io/managed-by=Helm
io.kompose.service=web-claim0
Annotations: meta.helm.sh/release-name: manifest
meta.helm.sh/release-namespace: edge
volume.beta.kubernetes.io/storage-provisioner: docker.io/hostpath
Finalizers: [kubernetes.io/pvc-protection]
Capacity:
Access Modes:
VolumeMode: Filesystem
Used By: web-69bd64d5cf-lmnqd
Events:
Type Reason Age From Message
---- ------ ---- ---- -------
Normal ExternalProvisioning 6s (x17 over 3m54s) persistentvolume-controller waiting for a volume to be created, either by external provisioner "docker.io/hostpath" or manually created by system administrator
I have storage class as
apiVersion: storage.k8s.io/v1
kind: StorageClass
metadata:
name: {{ .Values.prefix }}-custom
provisioner: docker.io/hostpath
reclaimPolicy: Retain
volumeBindingMode: Immediate
PVC.yaml
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
creationTimestamp: null
labels:
io.kompose.service: web-claim0
name: web-claim0
spec:
storageClassName: {{ .Values.prefix }}-custom
selector:
matchLabels:
for_app: {{ .Values.prefix }}-manifest-web
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi
status: {}
pv.yaml
apiVersion: v1
kind: PersistentVolume
metadata:
name: {{ .Values.prefix }}-manifest-web-pv
labels:
for_app: {{ .Values.prefix }}-manifest-web
type: local
spec:
persistentVolumeReclaimPolicy: Retain
storageClassName: {{ .Values.prefix }}-custom
capacity:
storage: 1Gi
accessModes:
- ReadWriteOnce
hostPath:
path: "/{{ .Values.prefix }}-manifeststorage"
on other hand PV is in available state