Hi all
Following is being executed on Kubespray, aka K8s 1.34
Ceph is from a Proxmox cluster v9.0.1.1
I’m following: Ceph Storage Integration with Kubernetes using Ceph CSI | by Satish Patel | Medium
vi ceph-csi-rbd-values.yaml
csiConfig:
- clusterID: "32a09c66-a6c3-4329-8339-15510d2ea9e0"
monitors:
- "172.16.10.51:6789"
- "172.16.10.52:6789"
- "172.16.10.53:6789"
provisioner:
name: provisioner
replicaCount: 2
Above values come from :
$ ceph fsid
$ ceph mon dump
nc -vc 172.16.10.51 6789
Connection to 172.16.10.51 port 6789 [tcp/smc-https] succeeded!
ceph v027
3龬�^C
helm install --namespace ceph-csi ceph-csi --values ceph-csi-rbd-values.yaml ./
NAME: ceph-csi
LAST DEPLOYED: Fri Nov 14 11:09:45 2025
NAMESPACE: ceph-csi
STATUS: deployed
REVISION: 1
TEST SUITE: None
NOTES:
Examples on how to configure a storage class and start using the driver are here:
https://github.com/ceph/ceph-csi/tree/devel/examples/rbd
helm status ceph-csi -n ceph-csi
NAME: ceph-csi
LAST DEPLOYED: Fri Nov 14 11:09:45 2025
NAMESPACE: ceph-csi
STATUS: deployed
REVISION: 1
TEST SUITE: None
NOTES:
Examples on how to configure a storage class and start using the driver are here:
https://github.com/ceph/ceph-csi/tree/devel/examples/rb
kubectl rollout status deployment -n ceph-csi
error: deployment "ceph-csi-ceph-csi-rbd-provisioner" exceeded its progress deadline
kubectl -n ceph-csi logs deploy/ceph-csi-ceph-csi-rbd-provisioner
Found 2 pods, using pod/ceph-csi-ceph-csi-rbd-provisioner-9756f44b-xvzxh
Defaulted container "csi-rbdplugin" out of: csi-rbdplugin, csi-provisioner, csi-resizer, csi-snapshotter, csi-attacher, csi-rbdplugin-controller, liveness-prometheus
Fatal glibc error: CPU does not support x86-64-v2
This is all running on Intel i5/32GB boxes.
kubectl get nodes
NAME STATUS ROLES AGE VERSION
node1 Ready control-plane 3d20h v1.31.2
node2 Ready control-plane 3d20h v1.31.2
node3 Ready control-plane 3d20h v1.31.2
node4 Ready <none> 3d20h v1.34.1
node5 Ready <none> 3d20h v1.34.1
node6 Ready <none> 3d20h v1.34.1
kubectl get all
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
service/kubernetes ClusterIP 172.233.0.1 <none> 443/TCP 3d21h
kubectl version
Client Version: v1.34.1
Kustomize Version: v5.7.1
Server Version: v1.34.1
kubectl get pods -n ceph-csi
NAME READY STATUS RESTARTS AGE
ceph-csi-ceph-csi-rbd-nodeplugin-8krqb 0/3 CrashLoopBackOff 26 (4m28s ago) 29m
ceph-csi-ceph-csi-rbd-nodeplugin-ln7hd 1/3 CrashLoopBackOff 27 (4m28s ago) 29m
ceph-csi-ceph-csi-rbd-nodeplugin-v2fl4 0/3 CrashLoopBackOff 26 (92s ago) 29m
ceph-csi-ceph-csi-rbd-provisioner-9756f44b-rk4hl 0/7 CrashLoopBackOff 56 (44s ago) 29m
ceph-csi-ceph-csi-rbd-provisioner-9756f44b-xvzxh 0/7 CrashLoopBackOff 59 (118s ago) 29m
kubectl logs -n ceph-csi ceph-csi-ceph-csi-rbd-nodeplugin-8krqb
Defaulted container "csi-rbdplugin" out of: csi-rbdplugin, driver-registrar, liveness-prometheus
Fatal glibc error: CPU does not support x86-64-v2
kubectl logs -n ceph-csi ceph-csi-ceph-csi-rbd-provisioner-9756f44b-xvzxh
Defaulted container "csi-rbdplugin" out of: csi-rbdplugin, csi-provisioner, csi-resizer, csi-snapshotter, csi-attacher, csi-rbdplugin-controller, liveness-prometheus
Fatal glibc error: CPU does not support x86-64-v2
Anyone able to guide me into what could be the problem.
G
