forked from kubeflow/model-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request kubeflow#55 from tarilabs/tarilabs-20240430-sync
periodic sync upstream KF to midstream ODH
- Loading branch information
Showing
23 changed files
with
398 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "model-registry" | ||
version = "0.1.2" | ||
version = "0.2.1a1" | ||
description = "Client for Kubeflow Model Registry" | ||
authors = ["Isabella Basso do Amaral <[email protected]>"] | ||
license = "Apache-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
approvers: | ||
- tarilabs | ||
- rareddy | ||
reviewers: | ||
- tarilabs | ||
- rareddy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
# Install Kubeflow Model Registry | ||
|
||
This folder contains [Kubeflow Model Registry](https://www.kubeflow.org/docs/components/model-registry/installation/) Kustomize manifests | ||
|
||
## Installation | ||
|
||
To install Kubeflow Model Registry, follow [Kubeflow Model Registry deployment documentation](https://www.kubeflow.org/docs/components/model-registry/installation/) | ||
|
||
The following instructions will summarize how to deploy Model Registry as separate component in the context of a default Kubeflow >=1.8 installation. | ||
|
||
```bash | ||
kubectl apply -k overlays/db | ||
``` | ||
|
||
As the default Kubeflow installation provides an Istio mesh, apply the necessary manifests: | ||
|
||
```bash | ||
kubectl apply -k options/istio | ||
``` | ||
|
||
Check everything is up and running: | ||
|
||
```bash | ||
kubectl wait --for=condition=available -n kubeflow deployment/model-registry-deployment --timeout=2m | ||
kubectl logs -n kubeflow deployment/model-registry-deployment | ||
``` | ||
|
||
Optionally, you can also port-forward the REST API container port of Model Registry to interact with it from your terminal: | ||
|
||
```bash | ||
kubectl port-forward svc/model-registry-service -n kubeflow 8081:8080 | ||
``` | ||
|
||
And then, from another terminal: | ||
|
||
```bash | ||
curl -sX 'GET' \ | ||
'http://localhost:8081/api/model_registry/v1alpha3/registered_models?pageSize=100&orderBy=ID&sortOrder=DESC' \ | ||
-H 'accept: application/json' | jq | ||
``` | ||
|
||
## Usage | ||
|
||
For a basic usage of the Kubeflow Model Registry, follow the [Kubeflow Model Registry getting started documentation](https://www.kubeflow.org/docs/components/model-registry/getting-started/) | ||
|
||
## Uninstall | ||
|
||
To uninstall the Kubeflow Model Registry run: | ||
|
||
```bash | ||
# Delete istio options | ||
kubectl delete -k options/istio | ||
|
||
# Delete model registry db and deployment | ||
kubectl delete -k overlays/db | ||
``` |
Oops, something went wrong.