Skip to content

Commit 08da8cc

Browse files
authored
chore(release): Add 1.5.0 release patch (kubeflow#1118)
1 parent 3a20c43 commit 08da8cc

File tree

10 files changed

+3388
-22
lines changed

10 files changed

+3388
-22
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# - The help target was derived from https://stackoverflow.com/a/35730328/5601796
1717

1818
VENV ?= .venv
19-
KFP_TEKTON_RELEASE ?= v1.4.1
19+
KFP_TEKTON_RELEASE ?= v1.5.0
2020
export VIRTUAL_ENV := $(abspath ${VENV})
2121
export PATH := ${VIRTUAL_ENV}/bin:${PATH}
2222
DOCKER_REGISTRY ?= aipipeline

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.4.1
1+
1.5.0

guides/kfp_tekton_install.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
## Installation Targets and Prerequisites
1616

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

1919
### IBM Cloud Kubernetes Service (IKS)
2020

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

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

44-
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+.
44+
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+.
4545

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

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

58-
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).
58+
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).
5959
> 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.
6060
```shell
61-
kubectl apply --selector kubeflow/crd-install=true -f install/v1.4.1/kfp-tekton.yaml
61+
kubectl apply --selector kubeflow/crd-install=true -f install/v1.5.0/kfp-tekton.yaml
6262
```
6363

64-
4. Install Kubeflow Pipelines with Tekton backend (`kfp-tekton`) `v1.4.1` deployment
64+
4. Install Kubeflow Pipelines with Tekton backend (`kfp-tekton`) `v1.5.0` deployment
6565
```shell
66-
kubectl apply -f install/v1.4.1/kfp-tekton.yaml
66+
kubectl apply -f install/v1.5.0/kfp-tekton.yaml
6767
```
6868

6969
5. Then, if you want to expose the Kubeflow Pipelines endpoint outside the cluster, run the following commands:

0 commit comments

Comments
 (0)