heidloff.net - Building is my Passion
Post
Cancel

Deploying Tekton on OpenShift

This article explains how to install Tekton on OpenShift and how to run pipelines of a cloud native sample application.

Tekton is an open source CNCF project to run CI/CD pipelines in Kubernetes clusters.

Tekton is a powerful and flexible open-source framework for creating CI/CD systems, allowing developers to build, test, and deploy across cloud providers and on-premise systems.

OpenShift Pipelines

In order to use Tekton in OpenShift, an operator is available. The setup is trivial. One option is to use the user interface of the OpenShift Web Console:

image

image

image

image

After the setup you can run your first simple pipelines. In many cases though, your pipelines might need to access resources in other projects. In order to do this, you can use Kubernetes cluster roles:

1
2
3
4
$ oc apply -f scripts-openshift-tekton/ClusterRole.yaml
$ oc create clusterrolebinding routes-and-services-reader-tekton \
    --clusterrole=routes-and-services-reader-tekton  \
    --serviceaccount=app-mod-tekton-dev:pipeline

This is the definition of the role:

1
2
3
4
5
6
7
8
kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1
metadata:
  name: routes-and-services-reader-tekton
rules:
- apiGroups: ["", "route.openshift.io", "apps"]
  resources: ["routes", "services", "deployments", "imagestreams"]
  verbs: ["get", "list", "watch", "create", "update", "patch", "delete"]

Sample Pipelines

I have created an application modernization example which shows how to modernize a 10+ year old application with modern technologies. When modernizing applications, updates and improvements to the actual applications is only one part of the story. Equally important is to have or introduce a DevOps culture and to use automation and CI/CD.

If you want to run my sample application, the following commands can be invoked:

1
2
3
4
5
6
7
8
9
$ git clone https://github.com/nheidloff/application-modernization-javaee-quarkus.git && cd application-modernization-javaee-quarkus
$ ROOT_FOLDER=$(pwd)
$ sh ${ROOT_FOLDER}/scripts-openshift-tekton/check-prerequisites.sh
$ oc login ...
$ sh ${ROOT_FOLDER}/scripts-openshift/deploy-db2.sh
$ sh ${ROOT_FOLDER}/scripts-openshift/deploy-kafka.sh
$ sh ${ROOT_FOLDER}/scripts-openshift/deploy-postgres.sh
$ sh ${ROOT_FOLDER}/scripts-openshift-tekton/deploy-application.sh
$ sh ${ROOT_FOLDER}/scripts-openshift-tekton/show-urls.sh

The nice thing about Tekton is that (almost) everything is done server-side. In order to run the scripts above, you only need the oc and git CLIs!

What’s next?

If you want to see these mechanisms in action, check out my sample application. Over the next days I’ll blog more about Tekton, CI/CD and ArgoCD.

Featured Blog Posts
Disclaimer
The postings on this site are my own and don’t necessarily represent IBM’s positions, strategies or opinions.
Trending Tags