You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: clients/ui/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ To run the a mocked dev environment you can either:
27
27
28
28
### Kubernetes Deployment
29
29
30
-
For a in-depth guide on how to deploy the Model Registry UI, please refer to the [local kubernetes deployment](./bff/docs/dev-guide.md) documentation.
30
+
For a in-depth guide on how to deploy the Model Registry UI, please refer to the [local kubernetes deployment](./bff/docs/local-development-guide.md) documentation.
31
31
32
32
To quickly enable the Model Registry UI in your Kind cluster, you can use the following command:
Copy file name to clipboardExpand all lines: clients/ui/scripts/deploy_kind_cluster.sh
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ command -v docker >/dev/null 2>&1 || { echo >&2 "Docker is required but it's not
5
5
command -v kubectl >/dev/null 2>&1|| { echo>&2"kubectl is required but it's not installed. Aborting.";exit 1; }
6
6
command -v kind >/dev/null 2>&1|| { echo>&2"kind is required but it's not installed. Aborting.";exit 1; }
7
7
8
-
echo"WARNING: You must have proper push / pull access to ${IMG_UI_STANDALONE}". If this is a new image, make sure you set it to public to avoid issues."
8
+
echo"WARNING: You must have proper push / pull access to ${IMG_UI_STANDALONE}. If this is a new image, make sure you set it to public to avoid issues."
9
9
10
10
if kubectl get deployment model-registry-deployment -n kubeflow >/dev/null 2>&1;then
11
11
echo"Model Registry deployment already exists. Skipping to step 4."
@@ -42,7 +42,7 @@ make docker-push-standalone
42
42
43
43
echo"Editing kustomize image..."
44
44
pushd ../../manifests/kustomize/options/ui/base
45
-
kustomize edit set image model-registry-ui-image=${IMG_UI_STANDALONE}
45
+
kustomize edit set image model-registry-ui=${IMG_UI_STANDALONE}
0 commit comments