Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tarilabs/demo20240309-mrvanillakf
https://github.com/tarilabs/demo20240309-mrvanillakf
Last synced: 20 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/tarilabs/demo20240309-mrvanillakf
- Owner: tarilabs
- Created: 2024-03-09T11:20:34.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-04-29T08:13:52.000Z (7 months ago)
- Last Synced: 2024-10-16T20:25:55.188Z (about 1 month ago)
- Language: Jupyter Notebook
- Size: 350 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Deployed a vanilla KF in Minikube (or else)
Remember to verify:
```
sudo systemctl start docker
sudo sysctl fs.inotify.max_user_instances=2280
sudo sysctl fs.inotify.max_user_watches=1255360
minikube start
minikube dashboard
```# port fwd checklist
```
kubectl port-forward svc/istio-ingressgateway -n istio-system 8080:80
kubectl port-forward svc/minio-service -n kubeflow 9000:9000
```Connect to cluster: https://github.com/kubeflow/manifests?tab=readme-ov-file#connect-to-your-kubeflow-cluster
Deployed `poddefault.yaml`
Deployed `/servingruntime-model-server.yaml`
Used at the time of writing:
- `kubeflownotebookswg/jupyter-tensorflow-full:v1.8.0-rc.6`
- cpu 8
- ram 16
- mounted poddefault for miniosecret# Model Registry
```
kubectl apply -k manifests/kustomize/overlays/db
kubectl apply -k manifests/kustomize/options/istio
kubectl port-forward svc/model-registry-service -n kubeflow 8081:8080
``````
curl -s -X 'GET' \
'http://localhost:8081/api/model_registry/v1alpha2/registered_models?pageSize=100&orderBy=ID&sortOrder=DESC' \
-H 'accept: application/json' | jq
```