kubernetes (k3s) on the pinephone - Printable Version +- PINE64 (https://forum.pine64.org) +-- Forum: PinePhone (https://forum.pine64.org/forumdisplay.php?fid=120) +--- Forum: PinePhone Software (https://forum.pine64.org/forumdisplay.php?fid=121) +--- Thread: kubernetes (k3s) on the pinephone (/showthread.php?tid=12309) |
kubernetes (k3s) on the pinephone - e-minguez - 11-25-2020 Just for fun! Using latest mobian: Code: sudo apt install curl Profit! Code: root@pinephone:~# kubectl get pods -A Quote:EDIT: After those two issues were fixed (https://gitlab.com/mobian1/devices/sunxi64-linux/-/issues/14 & https://gitlab.com/mobian1/devices/sunxi64-linux/-/issues/16) k3s works out of the box in Mobian without any tweak in the /etc/rancher/k3s/config.yaml file \o/ ipset nor vxlan are supported in the Mobian kernel, so I've ended up disabing networkpolicies and using host-gw for flannel configuration by creating a `/etc/rancher/k3s/config.yaml` file with the following content: disable-network-policy: true flannel-backend: "host-gw" Then, restart the k3s service to pick up the changes: sudo systemctl restart k3s |