diff --git a/rsts/deployment/sandbox.rst b/rsts/deployment/sandbox.rst index b39db47582..b237f10f87 100644 --- a/rsts/deployment/sandbox.rst +++ b/rsts/deployment/sandbox.rst @@ -83,19 +83,21 @@ Ensure ``kubectl`` is installed. Follow `kubectl installation docs `__ #. Install k3d Using ``curl``:: - curl -s https://raw.githubusercontent.com/rancher/k3d/main/install.sh | bash + curl -s https://raw.githubusercontent.com/rancher/k3d/main/install.sh | TAG=v4.2.0 bash Or Using ``wget`` :: - wget -q -O - https://raw.githubusercontent.com/rancher/k3d/main/install.sh | bash + wget -q -O - https://raw.githubusercontent.com/rancher/k3d/main/install.sh | TAG=v4.2.0 bash + - #. Start a new K3s cluster called Flyte: + #. Start a new K3s cluster called Flyte :: + + k3d cluster create flyte -p 30081:30081 --no-lb --k3s-server-arg '–no-deploy=traefik' --k3s-server-arg '–no-deploy=servicelb' - k3d cluster create -p "30081:30081" --no-lb --k3s-server-arg '--no-deploy=traefik' --k3s-server-arg '--no-deploy=servicelb' flyte #. Ensure the context is set to the new cluster:: @@ -103,7 +105,8 @@ Ensure ``kubectl`` is installed. Follow `kubectl installation docs `__