diff options
Diffstat (limited to 'danneri')
-rw-r--r-- | danneri/README.md | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/danneri/README.md b/danneri/README.md new file mode 100644 index 0000000..62c5fc7 --- /dev/null +++ b/danneri/README.md @@ -0,0 +1,23 @@ +# Installing k3s + +Create `/etc/rancher/k3s/config.yaml`. Must be done before installation. + +Run: `curl -sfL https://get.k3s.io | bash` + +Copy /etc/rancher/k3s/k3s.yaml to ~/.kube/config. Adjust `server:` url. + +# Installing Cilium: + + cilium install --set enable.ipv6=true --set enable.ipv4=false --set k8sServiceHost=fdb1:4242:3538:2008:9422:d355:95b7:f170 --set k8sServicePort=6443 + +NOTE: Should probably use something like this + + --set=ipam.operator.clusterPoolIPv4PodCIDRList="10.42.0.0/16" + +with + + fdb1:4242:3538:2008:aaaa:aaaa:aaaa:0/112 + +# Uninstalling + +Run: `k3s-uninstall.sh`. Note that this will delete everything, including `/etc/rancher/k3s/config.yaml`. |