orchest / orchest

Build data pipelines, the easy way 🛠️

Home Page:https://orchest.readthedocs.io/en/stable/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

orchest-controller UI 404 page not found

1270514689 opened this issue · comments

Describe the bug
orchest-controller UI 404 page not found

Expected behavior
orchest-controller UI

To Reproduce
Steps to reproduce the behavior:

  1. Installing Orchest using kubectl

image

  1. kubectl -n orchest port-forward deployment/orchest-controller 88:80 --address 0.0.0.0
  2. curl 127.0.0.1:88 and chrome http://127.0.0.1:88 404 page not found

Environment

  • OS (e.g. macOS): rocky linux 8.5 k3s
  • Browser (e.g. Chrome): chrome
  • Orchest's version (in the settings page):2022.8.11

❤️ Thanks for opening your first issue! We really appreciate your input.
💬 If you need to connect more synchronously with members of the Orchest community, please feel free to chat with us on our Slack.

Hello @1270514689, thanks for opening this issue - does it work if you browse the URL given by minikube ip?

@astrojuanlu thank you. The same issue 404 page not found. I use k3s to creat the app.

Hi @1270514689, if you want to use Orchest you should use the IP returned by following command:

kubectl get service orchest-ingress-nginx-controller -n orchest \
      -o jsonpath='{.status.loadBalancer.ingress[0].hostname}'

the orchest-controller doesn't expose any webpage (except for a special logs endpoint).

Hope that fixes your issue :)

EDIT: This uses the command from https://docs.orchest.io/en/latest/getting_started/installation.html. However, it might very well be that it won't work given that the release shipping the orchest-ingress-nginx-controller change isn't out yet. Instead you could kubectl get service ingress-nginx-controller -n ingress-nginx ... (depending on the Nginx controller pod name and the namespace in which it is installed).

@yannickperrenet thank you so much. Because I used the k3s. There are some differents with minikube.