Skip to content
Open
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
18 changes: 18 additions & 0 deletions content/en/docs/components/model-registry/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ Kubeflow Model Registry is available as an opt-in alpha component in Kubeflow Pl

These instructions assume that you've installed Kubeflow from the [manifests](https://github.com/kubeflow/manifests/), if you're using a distribution consult its documentation instead.


Clone the `model-registry` repository:

```sh
Expand Down Expand Up @@ -69,6 +70,23 @@ Finally, configure a Model Registry link in the Kubeflow Dashboard:
kubectl get configmap centraldashboard-config -n kubeflow -o json | jq '.data.links |= (fromjson | .menuLinks += [{"icon": "assignment", "link": "/model-registry/", "text": "Model Registry", "type": "item"}] | tojson)' | kubectl apply -f - -n kubeflow
```

### Installing via `kubectl apply`

You can deploy Model Registry directly with a single command:

```sh
kubectl apply -k https://github.com/kubeflow/model-registry/manifests/kustomize/base?ref=v0.2.16
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please point to the master branch not a version that is soon outdated.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes will do!

```
### Optional: Istio compatibility

If your cluster uses Istio (and you’ve installed Kubeflow with Istio), enable compatibility:

```sh
kubectl apply -k \ https://github.com/kubeflow/model-registry/manifests/kustomize/options/istio?ref=v0.2.16
```

Tip: Adjust ref= to the exact release tag (e.g. v0.2.16) so you’re always pulling in the matching manifests.

### Standalone installation

It is also possible to install Model Registry as a standalone deployment, separately from Kubeflow.
Expand Down