istio k3s - installing istio on k3
To install istio on k3, please remove traefik first. Todo that you can run the following commands
sudo rm -rf /var/lib/rancher/k3s/server/manifests/traefik.yaml
helm uninstall traefik traefik-crd -n kube-system
sudo systemctl restart k3s
Once it is remove, you can download istio by running the following command
curl -sL https://istio.io/downloadIstioctl | sh -
If you like to install a specific version, you can do this
curl -L https://istio.io/downloadIstio | ISTIO_VERSION=1.22.0 sh -
Then to install, you can do the following:-
istioctl install --set profile=demo
Comments