Last active
August 12, 2024 15:44
-
-
Save iul1an/95587a087dbc6bf06bfdaf6c60eb1d3e to your computer and use it in GitHub Desktop.
install k3s with cilium CNI
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
curl -sfL https://get.k3s.io | INSTALL_K3S_EXEC='--flannel-backend=none' sh -s - \ | |
--disable-network-policy \ | |
--disable "servicelb" \ | |
--disable "traefik" \ | |
--disable "metrics-server" | |
sudo cat /etc/rancher/k3s/k3s.yaml > ~/.kube/config | |
kubectl create -f https://raw.githubusercontent.com/cilium/cilium/v1.7/install/kubernetes/quick-install.yaml |
--no-flannel
flag is not recognized anymore. You can update this script.
Updated. Thank you!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
--no-flannel
flag is not recognized anymore. You can update this script.