diff options
Diffstat (limited to 'danneri/README.md')
-rw-r--r-- | danneri/README.md | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/danneri/README.md b/danneri/README.md index 153e248..26a9e85 100644 --- a/danneri/README.md +++ b/danneri/README.md @@ -6,8 +6,28 @@ Run: `curl -sfL https://get.k3s.io | bash` Copy /etc/rancher/k3s/k3s.yaml to ~/.kube/config. Adjust `server:` url. +Reinstalling: + + k3s-uninstall.sh + +Reboot + + cd /etc + git restore rancher/k3s/config.yaml + cd + curl -sfL https://get.k3s.io | bash + +# Get kubeconfig + + ssh danneri.dn42.trygvis.io sudo cat /etc/rancher/k3s/k3s.yaml |\ + sed s,https://.*,https://danneri.dn42.trygvis.io:6443, > ~/.kube/config + # Installing Cilium: + cilium install -f cilium.yaml + +old: + cilium install \ --set routingMode=native \ --set ipv4.enabled=true \ |