https://github.com/raravindds/kubeflow-pratice
https://github.com/raravindds/kubeflow-pratice
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/raravindds/kubeflow-pratice
- Owner: RAravindDS
- Created: 2023-05-16T15:54:44.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-16T16:13:30.000Z (about 2 years ago)
- Last Synced: 2025-01-11T02:51:59.807Z (5 months ago)
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# kubeflow-pratice
**Kubeflow Pipeline Installation**
```bash
# Install the kubeflow
export PIPELINE_VERSION=1.8.5
kubectl apply -k "github.com/kubeflow/pipelines/manifests/kustomize/cluster-scoped-resources?ref=$PIPELINE_VERSION"
kubectl wait --for condition=established --timeout=60s crd/applications.app.k8s.io
kubectl apply -k "github.com/kubeflow/pipelines/manifests/kustomize/env/platform-agnostic-pns?ref=$PIPELINE_VERSION"# Port forward the applicatoin after all the containers is "Running"
kubectl port-forward -n kubeflow svc/ml-pipeline-ui 8080:80 #This will open a pipeline UI
```
[Documentation Link](https://www.kubeflow.org/docs/components/pipelines/v1/installation/localcluster-deployment/)