No Flannel, Kube router, Helm controller on fresh install #7027
-
|
Environmental Info: Node(s) CPU architecture, OS, and Version: x86_64, Ubuntu 22.04 Cluster Configuration: 1 Server Describe the bug: I feel like I'm missing something, but every place I look it says K3s comes with Flannel, Kube router and Helm controller preinstalled. But on a fresh 1 server installation of K3s, I cannot find these three. I've tested this also on a 1-server-2-worker configuration and got the same result. Pod-to-Pod communication was only working if both Pods were running on the same Node until I manually installed Flannel. There doesn't seem to be an "enable" flag that I've missed. I've tried explicitly setting Steps To Reproduce: Install K3s and check the installed daemonsets/deployments. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
|
K3s runs most of the core components in the main process, so you won't find pods for any of the things you're looking for. If networking between pods is not working, make sure that the correct ports are open between your nodes. If your nodes are not on the same local network, you may need to use a different flannel backend than vxlan. |
Beta Was this translation helpful? Give feedback.
K3s runs most of the core components in the main process, so you won't find pods for any of the things you're looking for.
If networking between pods is not working, make sure that the correct ports are open between your nodes. If your nodes are not on the same local network, you may need to use a different flannel backend than vxlan.