Skip to content

Commit

Permalink
chore(release): Add 1.5.0 release patch (#1118)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomcli authored Jan 10, 2023
1 parent 3a20c43 commit 08da8cc
Show file tree
Hide file tree
Showing 10 changed files with 3,388 additions and 22 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# - The help target was derived from https://stackoverflow.com/a/35730328/5601796

VENV ?= .venv
KFP_TEKTON_RELEASE ?= v1.4.1
KFP_TEKTON_RELEASE ?= v1.5.0
export VIRTUAL_ENV := $(abspath ${VENV})
export PATH := ${VIRTUAL_ENV}/bin:${PATH}
DOCKER_REGISTRY ?= aipipeline
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.4.1
1.5.0
14 changes: 7 additions & 7 deletions guides/kfp_tekton_install.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

## Installation Targets and Prerequisites

A Kubernetes cluster `v1.22` that has least 8 vCPU and 16 GB memory.
A Kubernetes cluster `v1.23` that has least 8 vCPU and 16 GB memory.

### IBM Cloud Kubernetes Service (IKS)

Expand All @@ -41,10 +41,10 @@ A Kubernetes cluster `v1.22` that has least 8 vCPU and 16 GB memory.

To install the standalone Kubeflow Pipelines with Tekton, run the following steps:

1. Install [Tekton v0.38.4](https://github.com/tektoncd/pipeline/blob/v0.38.4/docs/install.md#installing-tekton-pipelines-on-kubernetes) if you don't have Tekton pipelines or OpenShift Pipelines on the cluster. Please be aware that Tekton custom task, loop, and recursion will not work if Tekton/Openshift pipelines version is not v0.28.0+.
1. Install [Tekton v0.41.0](https://github.com/tektoncd/pipeline/blob/v0.41.0/docs/install.md#installing-tekton-pipelines-on-kubernetes) if you don't have Tekton pipelines or OpenShift Pipelines on the cluster. Please be aware that Tekton custom task, loop, and recursion will not work if Tekton/Openshift pipelines version is not v0.28.0+.

```shell
kubectl apply -f https://storage.googleapis.com/tekton-releases/pipeline/previous/v0.38.4/release.yaml
kubectl apply -f https://storage.googleapis.com/tekton-releases/pipeline/previous/v0.41.0/release.yaml
```

2. Enable custom task controller and other feature flags for kfp-tekton
Expand All @@ -55,15 +55,15 @@ To install the standalone Kubeflow Pipelines with Tekton, run the following step
-p '{"data":{"default-timeout-minutes": "0"}}'
```

3. Install Kubeflow Pipelines with Tekton backend (`kfp-tekton`) `v1.4.1` [custom resource definitions](https://kubernetes.io/docs/concepts/extend-kubernetes/api-extension/custom-resources/)(CRDs).
3. Install Kubeflow Pipelines with Tekton backend (`kfp-tekton`) `v1.5.0` [custom resource definitions](https://kubernetes.io/docs/concepts/extend-kubernetes/api-extension/custom-resources/)(CRDs).
> Note: You can ignore the error `no matches for kind "Application" in version "app.k8s.io/v1beta1"` since it's a warning saying `application` CRD is not yet ready.
```shell
kubectl apply --selector kubeflow/crd-install=true -f install/v1.4.1/kfp-tekton.yaml
kubectl apply --selector kubeflow/crd-install=true -f install/v1.5.0/kfp-tekton.yaml
```
4. Install Kubeflow Pipelines with Tekton backend (`kfp-tekton`) `v1.4.1` deployment
4. Install Kubeflow Pipelines with Tekton backend (`kfp-tekton`) `v1.5.0` deployment
```shell
kubectl apply -f install/v1.4.1/kfp-tekton.yaml
kubectl apply -f install/v1.5.0/kfp-tekton.yaml
```
5. Then, if you want to expose the Kubeflow Pipelines endpoint outside the cluster, run the following commands:
Expand Down
Loading

0 comments on commit 08da8cc

Please sign in to comment.