Skip to content

Commit

Permalink
chore(release): add kfp-tekton backend 1.9.2 release (#1451)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomcli authored Jan 18, 2024
1 parent 550a827 commit bb06e5e
Show file tree
Hide file tree
Showing 7 changed files with 3,479 additions and 17 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.9.1
KFP_TEKTON_RELEASE ?= v1.9.2
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.9.1
1.9.2
14 changes: 7 additions & 7 deletions guides/kfp_tekton_install.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ Each new KFP-Tekton version is based on the long-term support of the Tekton Pipe
| 1.7.x | 0.47.x | 1.11 | V1beta1 | 1.16.0 |
| 1.8.x | 0.50.x | 1.12 | V1 | 2.11.3 |
| 1.9.x | 0.53.x | 1.13 | V1 | 2.11.3 |
| 2.0.x | 0.47.x | 1.11 | V1beta1 | 1.16.0 |
| 2.1.x | 0.53.x | 1.13 | V1 | 1.16.0 |
| 2.0.3 | 0.47.x | 1.11 | V1beta1 | 1.16.0 |
| 2.0.5 | 0.53.x | 1.13 | V1 | 1.16.0 |

## Standalone Kubeflow Pipelines V1 with Tekton Backend Deployment

Expand All @@ -73,14 +73,14 @@ To install the standalone Kubeflow Pipelines V1 with Tekton , run the following
-p '{"data":{"default-timeout-minutes": "0"}}'
```
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).
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).
```shell
kubectl apply --selector kubeflow/crd-install=true -f https://raw.githubusercontent.com/kubeflow/kfp-tekton/master/install/v1.9.1/kfp-tekton.yaml
kubectl apply --selector kubeflow/crd-install=true -f https://raw.githubusercontent.com/kubeflow/kfp-tekton/master/install/v1.9.2/kfp-tekton.yaml
```
4. Install Kubeflow Pipelines with Tekton backend (`kfp-tekton`) `v1.9.1` deployment
4. Install Kubeflow Pipelines with Tekton backend (`kfp-tekton`) `v1.9.2` deployment
```shell
kubectl apply -f https://raw.githubusercontent.com/kubeflow/kfp-tekton/master/install/v1.9.1/kfp-tekton.yaml
kubectl apply -f https://raw.githubusercontent.com/kubeflow/kfp-tekton/master/install/v1.9.2/kfp-tekton.yaml
```
5. Then, if you want to expose the Kubeflow Pipelines endpoint outside the cluster, run the following commands:
Expand All @@ -101,7 +101,7 @@ To install the standalone Kubeflow Pipelines V1 with Tekton , run the following
7. (OpenShift only) If you are running the standalone KFP-Tekton on OpenShift, apply the necessary security context constraint below
```shell
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 -
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 -
oc apply -k https://github.com/kubeflow/kfp-tekton//manifests/kustomize/third-party/openshift/standalone
oc adm policy add-scc-to-user anyuid -z tekton-pipelines-controller
oc adm policy add-scc-to-user anyuid -z tekton-pipelines-webhook
Expand Down
Loading

0 comments on commit bb06e5e

Please sign in to comment.