Replies: 1 comment 2 replies
-
|
NixOS Config. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have a newly installed NixOS in VirtualBox in Windows. I installed K3S and Containerd in it. Detailed configurations are in following comment. The cluster worked well. Then I cleared K3S data and added two new options. "--flannel-backend none", "--disable-network-policy true". And started K3S.
Now all pods are pending since there is no network. Then I installed Cilium as
cilium install --set=ipam.mode=kubernetes --set=ipam.operator.clusterPoolIPv4PodCIDRList="10.42.0.0/16" --set=cni.confPath=/var/lib/rancher/k3s/agent/etc/cni/net.d/ --set=cni.binPath=/var/lib/rancher/k3s/data/cni/ --set=bpf.masquerade=true --set=nodePort.enabled=true && cilium status --wait. It went through. Three its pods were READY. But the node is never READY.Describing the node, I saw
Ready False Fri, 12 Dec 2025 14:42:14 +0000 Fri, 12 Dec 2025 14:15:33 +0000 KubeletNotReady container runtime network not ready: NetworkReady=false reason:NetworkPluginNotReady message:Network plugin returns error: cni plugin not initialized.The Cilium CNI binary file appears in the binPath. 05-cilium.conflist appears in the confPath.
So what should I check for more about the error?
Beta Was this translation helpful? Give feedback.
All reactions