Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,16 +50,15 @@ For a full deployment, we use [Kubeflow Kfctl](https://github.com/kubeflow/kfctl

## 2. Access the MLX UI

1. By default the MLX UI is available at <public-ip-of-node>:30380/os
By default, the MLX UI is available at http://<cluster_node_ip>:30380/mlx/

To find the public ip of a node of your cluster
If you deployed on a **Kubernetes** cluster, run the following and look for the External-IP column to find the public IP of a node.

```bash
kubectl get node -o wide
```
Look for the ExternalIP column.

2. If you are on a openshift cluster you can also make use of the IstioIngresGateway Route. You can find it in the OpenShift Console or in the CLI
If you deployed using **OpenShift**, you can use IstioIngresGateway Route. You can find it in the OpenShift Console or using the CLI.

```bash
oc get route -n istio-system
Expand Down
6 changes: 3 additions & 3 deletions dashboard/origin-mlx/mlx-ui.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ spec:
- name: REACT_APP_UPLOAD
value: "true"
- name: REACT_APP_BASE_PATH
value: /os
value: /mlx
ports:
- containerPort: 3000
serviceAccountName: mlx-ui
Expand Down Expand Up @@ -92,9 +92,9 @@ spec:
http:
- match:
- uri:
prefix: /os
prefix: /mlx
rewrite:
uri: /os
uri: /mlx
route:
- destination:
host: mlx-ui.kubeflow.svc.cluster.local
Expand Down