Help needed with deploying flyte in local kubernetes (rancher desktop) #3795
-
Hi all, I'm trying to deploy flyte locally as I do not want to use a remote S3 or SQL server. So I'm interested in using minio and locally deployed postgres. But I cannot get it running. This is what I see by accessing 'flyteconsole' pod: I can see from the logs that requests reached the flyteconsole pod, but I only see blank error page.
I deployed it using command This part is an outdated question; I managed to get envoy working.I noticed flyte-contour-envoy is not running properly. Could it be the reason? [image](https://github.com/flyteorg/flyte/assets/3079912/252d9b6a-2972-4911-b65d-62ffeff96444)This is the tutorial that I followed: https://docs.flyte.org/en/v1.0.0/deployment/sandbox.html |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 13 replies
-
Hi @Yc-Chen, thanks for reporting and sorry for the struggles. We definitely need to improve the UX on non cloud K8s environments What happens if you try to reach |
Beta Was this translation helpful? Give feedback.
-
So I spent some more time and I eventually got the flow completely with a local k3s. I must admit I had to look into the repository to understand how to use helm charts. In the end this is my steps:
helm upgrade -n flyte --create-namespace flyte-deps flyteorg/flyte-deps --install --set webhook.enabled=false,contour.enabled=true
helm upgrade -n flyte --create-namespace flyte-core flyteorg/flyte-core --install -f values-sandbox.yaml It runs on http://localhost:30081. The kubernetes(k3s) version I have is v1.27.3. Now I compare it to the failed deployment using |
Beta Was this translation helpful? Give feedback.
-
@Yc-Chen on a related note: I've been going through the process of deploying Flyte to a local K8s cluster. My question to you is: how are you handling the connectivity to Thanks |
Beta Was this translation helpful? Give feedback.
Hi @Yc-Chen, thanks for reporting and sorry for the struggles. We definitely need to improve the UX on non cloud K8s environments
What happens if you try to reach
http://localhost:30081/console
?