Comments on: Multi-node Kubernetes Cluster with Minikube https://piotrminkowski.com/2024/07/09/multi-node-kubernetes-cluster-with-minikube/ Java, Spring, Kotlin, microservices, Kubernetes, containers Mon, 27 Jan 2025 20:30:35 +0000 hourly 1 https://wordpress.org/?v=6.9.1 By: piotr.minkowski https://piotrminkowski.com/2024/07/09/multi-node-kubernetes-cluster-with-minikube/#comment-2571 Mon, 27 Jan 2025 20:30:35 +0000 https://piotrminkowski.com/?p=15346#comment-2571 In reply to Chema.

Well, gluster storage may not work properly with minikube.

]]>
By: Chema https://piotrminkowski.com/2024/07/09/multi-node-kubernetes-cluster-with-minikube/#comment-2560 Thu, 26 Dec 2024 20:10:15 +0000 https://piotrminkowski.com/?p=15346#comment-2560 Thanks for the article.
Minikube v1.34.0 , I’ve tried to use gluster StorageClass, enabling storage-provisioner-gluster add-on

Everything looks fine

$minikube kubectl — get pod -n storage-gluster
NAME READY STATUS RESTARTS AGE
glusterfile-provisioner-86cf66f6f8-kbxb7 1/1 Running 2 (9m31s ago) 43m
glusterfs-45×47 1/1 Running 1 (12m ago) 43m
glusterfs-7wxrj 1/1 Running 1 (10m ago) 43m
glusterfs-ndnp9 1/1 Running 1 (10m ago) 43m
heketi-5c7dfd7f7f-zvlz7 1/1 Running 1 (10m ago) 43m

But each PVC stucks in Pending state

apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: my-pvc
namespace: demo
spec:
accessModes:
– ReadWriteMany
resources:
requests:
storage: 50Mi
storageClassName: glusterfile

with this error
persistentvolume-controller Waiting for a volume to be created either by the external provisioner ‘gluster.org/glusterfile’ or manually by the system administrator. If volume creation is delayed, please verify that the provisioner is running and correctly registered.

any ideas ? i cannot find the reason

Regards and happy new year

]]>