Hi, I'm trying to run Sandbox deployment with k3d cluster, following the instruction:
https://docs.flyte.org/en/latest/deployment/sandbox.html#deploying-your-own-flyte-sandbox-environment-to-a-k8s-cluster
At the resource page I see:
TODO: These instructions currently still rely on the old kustomize setup, and will be moved over to the Helm chart soon.
Is there any relevant instruction for deploying Flyte with k3d, because the current version runs into error (or maybe is not full) with the 2d step:
k3d cluster create -p "30081:30081" –no-lb –k3s-server-arg '–no-deploy=traefik' –k3s-server-arg '–no-deploy=servicelb' flyte
Error:
Error: accepts between 0 and 1 arg(s), received 6
Tried to fix it with (following the k3d hints for tags):
k3d cluster create flyte -p 30081:30081 --no-lb --k3s-arg "–no-deploy=traefik" --k3s-arg "–no-deploy=servicelb"
but get an error again:
FATA[0000] failed to transform ports: No nodefilters specified
What is the right setup procedure and what are the right parameters for this?