https://www.orchest.io/ logo
#tech-support
Title
# tech-support
k

Kapil Panwar

04/28/2023, 11:24 AM
Please help
j

Jacopo

04/28/2023, 11:24 AM
As in https://docs.orchest.io/en/stable/getting_started/installation.html# run minikube ip, you'll get an ip to which you'll be able to reach the applicatio at ip:port, port should be 8000
You can also change your hosts file to map that ip to something easier to remember, e.g.
192.168.49.2    <http://localorchest.io|localorchest.io>
k

Kapil Panwar

04/28/2023, 11:26 AM
how to change? requesting you to please share some document
j

Jacopo

04/28/2023, 11:28 AM
You can add such an entry to
/etc/hosts
, the ip must be the one returned by
minikube ip
k

Kapil Panwar

04/28/2023, 11:30 AM
added, but it shows website not available
when visiting localorchest.io
j

Jacopo

04/28/2023, 11:35 AM
what are you getting from running
minikube ip
?
k

Kapil Panwar

04/28/2023, 11:36 AM
192.168.49.2
j

Jacopo

04/28/2023, 11:41 AM
And what are you getting when going at
192.168.49.2:8000
? http
k

Kapil Panwar

04/28/2023, 11:42 AM
I am getting this output
what should I do?
even curl is also not working
j

Jacopo

04/28/2023, 11:50 AM
watch out, you are curling
http*s*
k

Kapil Panwar

04/28/2023, 11:53 AM
Even with http also it is giving the same result
j

Jacopo

04/28/2023, 11:53 AM
I see, mmh, give me a sec to verify
k

Kapil Panwar

04/28/2023, 11:54 AM
Sure
j

Jacopo

04/28/2023, 12:00 PM
could you try on port 80? 🤔
<http://192.168.49.2>
or
<http://192.168.49.2:8000/projects>
k

Kapil Panwar

04/28/2023, 12:01 PM
not working
j

Jacopo

04/28/2023, 12:04 PM
Is the ingress addon enabled?
minikube addons enable ingress
Did you use the convenience install script in the installation docs?
Are you running through windows + Windows Subsystem for Linux?
k

Kapil Panwar

05/02/2023, 3:31 AM
Yes, I am using WSL2 in windows
getting this issue now:
Copy code
{
  "kind": "Status",
  "apiVersion": "v1",
  "metadata": {},
  "status": "Failure",
  "message": "forbidden: User \"system:anonymous\" cannot get path \"/\"",
  "reason": "Forbidden",
  "details": {},
  "code": 403
}
j

Jacopo

05/04/2023, 11:36 AM
This is a response from kubernertes, what endpoint are you querying?
btw, here's some internal notes about how we proceeded when installing Orchest in windows through wsl, it's not officially supported but imo the issues you are having are solvable, although I'm not sure how much I can help without much more context around your setup • open a terminal in windows, run
wsl --install
• reboot • verify wsl is working,
wsl --install -d Ubuntu
• install docker for desktop in windows, i.e. not through the wsl terminal. Once installed you can set it to use the wsl + the distribution of your choice. Follow these instructions: https://learn.microsoft.com/en-us/windows/wsl/tutorials/wsl-containers • once that’s done get into the terminal and run wsl with
wsl
• install k9s, pip, orchest-cli and then install orchest
Copy code
# k9s
wget <https://github.com/derailed/k9s/releases/download/v0.25.18/k9s_Linux_x86_64.tar.gz>
tar -xvzf k9s_Linux_x86_64.tar.gz
sudo mv k9s /usr/bin


sudo apt-get update && sudo apt-get install orchest-cli -y
pip3 install orchest-cli
orchest install
# Ingress
kubectl apply -f <https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.2.1/deploy/static/provider/cloud/deploy.yaml>
17 Views