ripe-musician-92943
06/04/2025, 5:40 PMcurl -sfL <https://get.k3s.io> | K3S_TOKEN=SECRET sh -s - server \
--cluster-init \
--flannel-backend=none \
--disable-kube-proxy \
--disable servicelb \
--disable-network-policy \
--disable traefik \
--cluster-cidr=10.8.0.0/16,fd00:0:0:0800::/56 \
--service-cidr=10.9.0.0/16,fd00:0:0:0900::/112 \
--node-external-ip=192.168.178.100 \
--advertise-address=192.168.178.100 \
--tls-san=k3s.local
And I attempt to install Cilium with this:
cilium install \
--set=ipam.operator.clusterPoolIPv4PodCIDRList="10.8.0.0/16" \
--set=ipam.operator.clusterPoolIPv6PodCIDRList="fd00:0:0:0800::/56"
The Cilium pods do not come up. One of them logs the following message:
Error: Build config failed: failed to start: Get "<https://10.9.0.1:443/api/v1/namespaces/kube-system>": dial tcp 10.9.0.1:443: i/o timeout
What might the reason for this be? The IP ranges look correct and the k3s service doesn't log any errors besides missing a CNI.creamy-pencil-82913
06/04/2025, 5:52 PMcreamy-pencil-82913
06/04/2025, 5:53 PMripe-musician-92943
06/04/2025, 6:04 PMripe-musician-92943
06/04/2025, 6:23 PMk8sServiceHost
and k8sServicePort
.