Daniel Barron
Daniel Barron
Thank you for looking at this. I have already scripted checking for a default route when installing. For example: ```bash if [ -z "$(ip route | grep default)" ]; then...
I have found a workaround which allows a true air-gap installation: ``` #/etc/sysconfig/network-scripts/ifcfg-tap0 DEVICE=tap0 ONBOOT=yes BOOTPROTO=none TYPE=Tap DEFROUTE=no IPADDR=10.243.255.254 PREFIX=32 ``` `ifup tap0` Add `--flannel-iface tap0` to `ExecStart=/usr/local/bin/k3s server` in...
I have k3s working reliably air-gapped and without a gateway for years using my above workaround. Recently I found a couple of other things I do are required as well....
We are getting the same issue.