-
Notifications
You must be signed in to change notification settings - Fork 777
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added instructions for installing Pipelines. (#3793)
Signed-off-by: hbelmiro <[email protected]>
- Loading branch information
Showing
3 changed files
with
22 additions
and
6 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
22 changes: 19 additions & 3 deletions
22
content/en/docs/components/pipelines/operator-guides/installation/_index.md
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,11 +1,27 @@ | ||
+++ | ||
title = "Installation" | ||
description = "Options for deploying Kubeflow Pipelines" | ||
weight = 1 | ||
+++ | ||
|
||
{{% kfp-v2-keywords %}} | ||
|
||
This page will be available soon. For similar information, see [KFP v1 installation documentation][v1-installation]. | ||
As an alternative to deploying Kubeflow Pipelines (KFP) as part of the | ||
[Kubeflow deployment](/docs/started/#installing-kubeflow), you also have a choice | ||
to deploy only Kubeflow Pipelines. Follow the instructions below to deploy | ||
Kubeflow Pipelines standalone using the supplied kustomize manifests. | ||
|
||
[v1-installation]: /docs/components/pipelines/legacy-v1/installation/ | ||
You should be familiar with [Kubernetes](https://kubernetes.io/docs/home/), | ||
[kubectl](https://kubernetes.io/docs/reference/kubectl/overview/), and [kustomize](https://kustomize.io/). | ||
|
||
## Deploying Kubeflow Pipelines | ||
|
||
1. Deploy the Kubeflow Pipelines: | ||
|
||
``` | ||
export PIPELINE_VERSION={{% pipelines/latest-version %}} | ||
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/dev?ref=$PIPELINE_VERSION" | ||
``` | ||
|
||
The Kubeflow Pipelines deployment requires approximately 3 minutes to complete. |
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