Skip to content
This repository was archived by the owner on Jul 30, 2025. It is now read-only.

Commit bb06e5e

Browse files
authored
chore(release): add kfp-tekton backend 1.9.2 release (#1451)
1 parent 550a827 commit bb06e5e

File tree

7 files changed

+3479
-17
lines changed

7 files changed

+3479
-17
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.9.1
19+
KFP_TEKTON_RELEASE ?= v1.9.2
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.9.1
1+
1.9.2

guides/kfp_tekton_install.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ Each new KFP-Tekton version is based on the long-term support of the Tekton Pipe
5252
| 1.7.x | 0.47.x | 1.11 | V1beta1 | 1.16.0 |
5353
| 1.8.x | 0.50.x | 1.12 | V1 | 2.11.3 |
5454
| 1.9.x | 0.53.x | 1.13 | V1 | 2.11.3 |
55-
| 2.0.x | 0.47.x | 1.11 | V1beta1 | 1.16.0 |
56-
| 2.1.x | 0.53.x | 1.13 | V1 | 1.16.0 |
55+
| 2.0.3 | 0.47.x | 1.11 | V1beta1 | 1.16.0 |
56+
| 2.0.5 | 0.53.x | 1.13 | V1 | 1.16.0 |
5757

5858
## Standalone Kubeflow Pipelines V1 with Tekton Backend Deployment
5959

@@ -73,14 +73,14 @@ To install the standalone Kubeflow Pipelines V1 with Tekton , run the following
7373
-p '{"data":{"default-timeout-minutes": "0"}}'
7474
```
7575

76-
3. Install Kubeflow Pipelines with Tekton backend (`kfp-tekton`) `v1.9.1` [custom resource definitions](https://kubernetes.io/docs/concepts/extend-kubernetes/api-extension/custom-resources/)(CRDs).
76+
3. Install Kubeflow Pipelines with Tekton backend (`kfp-tekton`) `v1.9.2` [custom resource definitions](https://kubernetes.io/docs/concepts/extend-kubernetes/api-extension/custom-resources/)(CRDs).
7777
```shell
78-
kubectl apply --selector kubeflow/crd-install=true -f https://raw.githubusercontent.com/kubeflow/kfp-tekton/master/install/v1.9.1/kfp-tekton.yaml
78+
kubectl apply --selector kubeflow/crd-install=true -f https://raw.githubusercontent.com/kubeflow/kfp-tekton/master/install/v1.9.2/kfp-tekton.yaml
7979
```
8080

81-
4. Install Kubeflow Pipelines with Tekton backend (`kfp-tekton`) `v1.9.1` deployment
81+
4. Install Kubeflow Pipelines with Tekton backend (`kfp-tekton`) `v1.9.2` deployment
8282
```shell
83-
kubectl apply -f https://raw.githubusercontent.com/kubeflow/kfp-tekton/master/install/v1.9.1/kfp-tekton.yaml
83+
kubectl apply -f https://raw.githubusercontent.com/kubeflow/kfp-tekton/master/install/v1.9.2/kfp-tekton.yaml
8484
```
8585

8686
5. Then, if you want to expose the Kubeflow Pipelines endpoint outside the cluster, run the following commands:
@@ -101,7 +101,7 @@ To install the standalone Kubeflow Pipelines V1 with Tekton , run the following
101101

102102
7. (OpenShift only) If you are running the standalone KFP-Tekton on OpenShift, apply the necessary security context constraint below
103103
```shell
104-
curl -L https://raw.githubusercontent.com/kubeflow/kfp-tekton/master/install/v1.9.1/kfp-tekton.yaml | yq 'del(.spec.template.spec.containers[].securityContext.runAsUser, .spec.template.spec.containers[].securityContext.runAsGroup)' | oc apply -f -
104+
curl -L https://raw.githubusercontent.com/kubeflow/kfp-tekton/master/install/v1.9.2/kfp-tekton.yaml | yq 'del(.spec.template.spec.containers[].securityContext.runAsUser, .spec.template.spec.containers[].securityContext.runAsGroup)' | oc apply -f -
105105
oc apply -k https://github.com/kubeflow/kfp-tekton//manifests/kustomize/third-party/openshift/standalone
106106
oc adm policy add-scc-to-user anyuid -z tekton-pipelines-controller
107107
oc adm policy add-scc-to-user anyuid -z tekton-pipelines-webhook

0 commit comments

Comments
 (0)