Automated Application Packaging And Distribution with OpenShift – Tekton Pipelines – Part 3/4

July 26, 2021

Part 3 of the article series on automated application packaging and distribution. This time about integrating into Kubernetes Native Pipelines with OpenShift Pipelines (Tekton)

In parts one and two of this article series we have discussed the basics of application packaging with Kustomize and Helm Charts and Operators. We also discussed how to handle images and all the metadata artifacts required for working with Kubernetes.

This Part discusses the integration into Kubernetes native pipelines with Tekton. The final part number 4 will discuss GitOps and ArgoCD.

Tekton / OpenShift Pipelines

Tekton is an open source framework to create pipelines in a Kubernetes and cloud-native way. This means, there is no central tool you need to maintain (like Jenkins, for example) but you only have to install a Kubernetes Operator into your Kubernetes cluster, which provides some custom resource definitions (CRDs).

Based on those CRDs, you can create Tasks and Pipelines which suite your needs to compile, test, deploy and maintain your application.

OpenShift Pipelines is based on Tekton and adds a nice GUI to OpenShift Developer Console. The Pipelines Operator is free to use for every OpenShift user.

Tekton Concepts

Tekton has numerous of objects, but the architecture is quite easy to understand:

  • Step. A step is the execution unit of a Task. It runs in its own container and can execute whatever the container image provides. A step does not stand for itself but must be embedded within a Task.
  • Task. A task contains a set of steps which are running in separate containers (Pods). A task could be for example maven. One step would be to check the maven settings.xml. The second step could be the execution of a maven goal (compile, package etc.)
  • Pipeline. A pipeline consists of a set of Tasks which are executed either in parallel or (in a simpler case) one after one.

To summarize it: A pipeline contains a list of Tasks, which contain a list of steps. One of the benefits of Tekton is that Tasks and also Pipelines can be shared with other people, because a Pipeline only contains what to do in a given order. So if you know that most of your projects have a similar pipeline, share and reuse it.

A pipeline must be invoked with parameters, a so called PipelineRun. So in order to start the Pipeline „build-and-deploy“, you need to create a PipelineRun object, which contains technical input (like for example ConfigMaps and PersistentVolumeClaims) and non-technical parameters (like for example the URL for the Git repository to clone, the name of the target image etc.)

Internally, Tekton creates a TaskRun object for each Task it finds in a PipelineRun.

Installing the CLI tool

Tekton comes with a CLI tool called tkn, which you can easily install on macOS by issuing:

$> brew install tektoncd-cli

Please have a look at the official homepage of Tekton to see how to install the CLI tool on other OS.

Installing OpenShift Pipelines on OpenShift

Red Hat OpenShift comes with an Kubernetes Operator called „OpenShift Pipelines“ which you can easily install as cluster-admin by going to the OperatorHub, searching for „Pipelines“ and clicking on „install“. There is nothing more to do for now, as the Operator maintains everything for us.

Image 1: Using the OpenShift UI to install OpenShift Pipelines operator
Image 1: Using the OpenShift UI to install OpenShift Pipelines operator

After a while you’ll notice a new GUI entry in both the Administrator and the Developer UI.

Image 2: New UI entries in the OpenShift GUI after you've installed the Pipelines Operator
Image 2: New UI entries in the OpenShift GUI after you've installed the Pipelines Operator

Our use case: Create a pipeline for quarkus-simple

For our well known quarkus project, we are going to create a Tekton Pipeline, which shouldn’t do much more than compiling the source, creating a Docker image based on JIB, pushing it to Quay.io and using kustomize to apply that image to an OpenShift project called art-tekton.

Sounds easy?

It is. Well, mostly.

First of all, why are we going to use JIB for building the Docker image? – Well, that’s easily explained: Because Quarkus contains everything to make my life as a developer much easier. Instead of explicitly calling docker build on the generated Dockerfile.jvm, we are able to simply set a few Quarkus properties in application.properties to define how Quarkus should package the application and then we are able to use exactly ONE Tekton task to compile, package and push the application.

Image 3: Application properties of the quarkus application
Image 3: Application properties of the quarkus application

This also works locally. Checkout the source code, have a look at src/main/resources/application.properties, change registry and image properties to your needs and call

$> mvn clean package -DskipTests

To compile the sources and build the Docker image. If you want to push the resulting image to your registry, simply call

$> mvn package -DskipTests -Dquarkus.container-image.push=true
Code language: JavaScript (javascript)

After a while, Quarkus has generated and pushed your image to your registry. In my case, it’s quay.io/wpernath/simple-quarkus.

For a simple CRUD application with all the benefits of Quarkus, have a look at my demo repository on GitHub.

Inventory check: What do we need?

In order to build our use case, we need to have the following tasks available:

  • git: We want to fetch the source from GitHub.com
  • maven: We want to reuse most of that what Quarkus provides to us
  • kustomize: We want to use kustomize to change our Deployment to point to the new Image
  • OpenShift client: We need to apply the changes we’ve made in the steps before

Let’s log into our OpenShift cluster, create a new project and list all the available ClusterTasks:

$> oc login -u admin -p admin123 https://api.crc.testing:6443 
$> oc new-project art-tekton
$> tkn ct list
Code language: PHP (php)
Image 4: Available ClusterTasks in OpenShift after installation of pipelines operator
Image 4: Available ClusterTasks in OpenShift after installation of pipelines operator

Image 4 shows all the available ClusterTasks after you’ve installed the OpenShift Pipelines Operator. It seems, we have everything, we need

  • git-clone
  • maven
  • openshift-client

We are just missing the Kustomize task. But let’s create one later. We first want to take care of the rest.

Wait. What is the difference between a Task and a ClusterTask? – This is easy. A ClusterTask is available globally in all projects. A Task is only available locally per project and must be installed into each project.

Analyzing the necessary tasks

If you want to have a look at the structure of a Task, you can easily execute the following:

$> tkn ct describe <task-name>
Code language: HTML, XML (xml)

This explains all the parameters of the task together with other necessary things, like inputs and outputs.

By specifying the parameter -o yaml, we are able to get the yaml source definition of the task.

The git-clone task requires quite some parameters, but most of them are optional. We just have to specify git-url and git-revision.

And we have to specify a workspace for the task.

What are workspaces?

Remember that Tekton is running each and every task (and all Steps inside a Task) as a separate Pod? If the app running on the pod writes to some random folder, nothing gets really stored. So if we want (and yes, we want) to have the complete pipeline being able to read and write data on each step, we have to find a way to do that.

This is what workspaces are for. They could be a persistent volume claim, a config map etc. A task which requires either something to store data to (like git-clone) or needs to have access to data coming from a previous step (like maven), defines a workspace. If the task is embedded into a Pipeline, it will also be defined there. The PipelineRun (or in case of a single running task, the TaskRun) finally creates the mapping between the defined workspace and a corresponding storage.

In our example we need two workspaces:

  • A PVC where the git-clone task is cloning the source code to and from where the maven task is compiling the source
  • A ConfigMap with the maven-settings file you need in your environment

Ways of building the Pipeline

Once you know what tasks you need in order to build your pipeline, you can start creating it.

There are two ways of doing it:

  • Build your Pipeline via a code editor as a yaml file
  • Build it with OpenShift Developer Console

As a first approach, I’d recommend that you’re building the pipeline via the graphical Developer Console of OpenShift, then export and analyze it how it looks like.

Building the Pipeline via OpenShift Developer Console

Note, you should have at least version 1.4.1 of the OpenShift Pipelines Operator installed (for this you need a recent 4.7 OpenShift cluster, which you could install for example via CodeReady Containers). Otherwise, you don’t have access to workspaces (which you need to define).

Image 5: Pipeline Builder
Image 5: Pipeline Builder

As you can see, you have to provide parameters to each and every task. And you need to link the required workspaces to the tasks. You can easily do that by using the GUI.

Image 6:Linking the workspaces from Pipeline to Task
Image 6:Linking the workspaces from Pipeline to Task

We want to use the task maven twice:

  • For simple compilation of the source code by executing goal package
  • For image generation and pushing by executing package and providing the following parameters to instruct quarkus to build and push the image
    • -Dquarkus.container-image.push=true
    • -Dquarkus.container-image.builder=jib
    • -Dquarkus.container-image.image=$(params.image-name)
    • -Dquarkus.container-image.username=$(params.image-username)
    • -Dquarkus.container-image.password=$(params.image-password)

Once you’ve done all that and have clicked on „Save“, you’re able to export the yaml file by executing

$> oc get pr/new-pipeline -o yaml > tektondev/pipelines/new-pipeline.yaml
apiVersion: tekton.dev/v1beta1
kind: Pipeline
metadata:
  name: new-pipeline2
spec:
  params:
  - default: https://github.com/wpernath/quarkus-simple.git
    description: the URL of the Git repoisotry to build
    name: git-url
    type: string
....
Code language: PHP (php)

You can easily re-import the pipeline file by executing

$> oc apply -f tektondev/pipelines/new-pipeline.yaml
Code language: JavaScript (javascript)

Notes on Task parameter placement

One of the goals of Tekton has always been to be as reusable as possible. Which means, you’re most likely using general-purpose tasks, which try to be as generic as possible.

If you’re providing the necessary parameters directly to each Task, you might repeat the settings over and over again (for example in our case, we are using the maven task for compiling, packaging, image generation and pushing). In this case it makes sense to draw the parameters out of the specification of each task. Put them on pipeline level and reference them inside the corresponding task by specifying them with $(params.parameter-name)

Image 7: The pipeline file as exported after using the GUI with top level parameters
Image 7: The pipeline file as exported after using the GUI with top level parameters

Creating a new Task: kustomize

As we want to use kustomize to apply the new image to our Deployment, we have to look for a proper task in the Tekton Hub. Unfortunately, there doesn’t seem to be one available, so we have to create our own one.

For this, we first need to have a proper image which contains the kustomize executable. The Dockerfile for this is available here and the Image is available here.

Now let’s create a new Tekton Task.

apiVersion: tekton.dev/v1beta1
kind: Task
metadata:
  name: kustomize
  labels:
    app.kubernetes.io/version: "0.4"
  annotations:
    tekton.dev/pipelines.minVersion: "0.12.1"
    tekton.dev/tags: build-tool
spec:
  description: >-
    This task can be used to execute kustomze build scripts and to apply the changes via oc apply -f
  workspaces:
    - name: source
      description: The workspace holding the cloned and compiled quarkus source.
  params:
    - name: kustomize-dir
      description: Where should kustomize look for kustomization in source?
    - name: target-namespace
      description: Where to apply the kustomization to
    - name: image-name
      description: Which image to use. Kustomize is taking care of it
  steps:
    - name: build
      image: quay.io/wpernath/kustomize-ubi:latest
      workingDir: $(workspaces.source.path)
      script: |
        
        cd $(workspaces.source.path)/$(params.kustomize-dir)

        DIGEST=$(cat $(workspaces.source.path)/target/jib-image.digest)

        kustomize edit set image quay.io/wpernath/simple-quarkus:latest=$(params.image-name)@$DIGEST
        
        kustomize build $(workspaces.source.path)/$(params.kustomize-dir) > $(workspaces.source.path)/target/kustomized.yaml
        
    - name: apply
      image: 'image-registry.openshift-image-registry.svc:5000/openshift/cli:latest'
      workingDir: $(workspaces.source.path)
      script: |
        oc apply -f $(workspaces.source.path)/target/kustomized.yaml -n $(params.target-namespace)
Code language: JavaScript (javascript)

Paste this text into a new file called kustomize-task.yaml. As you can see, this task requires a workspace called source and three parameters (kustomize-dir, target-namespace and image-name). And it has two steps (build and apply).

The build-step uses the kustomize image to set the new image and digest. The apply-step finally uses the OpenShift internal CLI image to apply the kustomized files in the target-namespace.

To load the kustomize-task.yaml into your current OpenShift project, simply execute

$> oc apply -f kustomize-task.yaml
task.tekton.dev/kustomize configured

Putting it all together

We now have created a Pipeline which contains four tasks (git-clone, package, build-and-push-image and apply-kustomize). We have provided the necessary parameters to each task and to the pipeline and we have connected workspaces to it.

Now we have to create the PersistentVolumeClaim and a maven-settings ConfigMap, which will then be used by the corresponding PipelineRun.

Creating a maven-settings ConfigMap

If you have a working maven settings file, you can easily reuse it with the maven task. Simply create it via

$> oc create cm maven-settings --from-file=/your-maven-settings --dry-run=client -o yaml > maven-settings-cm.yaml

If you need to edit the ConfigMap, feel free to do this right now and then execute

$> oc apply -f maven-settings-cm.yaml

To import the ConfigMap into your current project.

Creating a PersistentVolumeClaim

Create a new file with the following content and execute oc apply -f to import it into your project

apiVersion: v1
kind: PersistentVolumeClaim
metadata:
  name: builder-pvc
spec:
  resources:
    requests:
      storage: 10Gi
  volumeMode: Filesystem
  accessModes:
    - ReadWriteOnce
  persistentVolumeReclaimPolicy: Retain

Running the pipeline

Once you have imported all your artifacts into your current project, you are able to run the Pipeline. For this, click on the „Pipelines“ entry on the left side of the Developer Perspective of OpenShift, choose your created Pipeline and select „Start“ from the „Actions“ menu on the right side. After you’ve filled in all necessary parameters, you’re able to start the PipelineRun.

Image 8: Starting the pipeline with all parameters
Image 8: Starting the pipeline with all parameters

On „Logs“ and „Events“ cards of the OpenShift Pipeline Editor you’re able to see all logs and – well – events. I prefer the command line, so I am using tkn to follow the logs of my pipeline run.

$> tkn pr

Shows you the available actions for pipeline runs. As you can see, you’re able to log, list, cancel and delete pipeline runs.

$> tkn pr list
NAME                   STARTED          DURATION     STATUS
new-pipeline-wr095j    4 minutes ago    3 minutes    Succeeded
new-pipeline-ab7zu1    9 minutes ago    1 minute     Failed
new-pipeline-l10dfk    6 days ago       10 minutes   Succeeded 
Code language: PHP (php)

To follow the logs of the last run, simply execute

$> tkn pr logs -f -L

If you ignore -L, tkn lets you choose from the list of PipelineRuns.

Note, there is also a Tekton Pipeline Extension available for Visual Code, which you can also use to edit, build and execute Pipelines.

Creating a PipelineRun object

In order to start the Pipeline via a shell, you need to create a PipelineRun object, which looks like the following:

apiVersion: tekton.dev/v1beta1
kind: PipelineRun
metadata:
  name: Change Me
spec:
  pipelineRef:
    name: new-pipeline
  serviceAccountName: pipeline
  params:
    - name: git-url
      value: 'https://github.com/wpernath/quarkus-simple.git'
    - name: git-revision
      value: main
    - name: context-dir
      value: the-source
    - name: image-name
      value: quay.io/wpernath/quarkus-simple-wow
    - name: image-username
      value: wpernath
    - name: image-password
      value: Change Me
    - name: target-namespace
      value: art-tekton
  workspaces:
    - name: shared-workspace
      persistentVolumeClaim:
	    claimName: builder-pvc
    - name: maven-settings
      configMap:
	    name: maven-settings
Code language: PHP (php)

Most of the attributes of this object are self explaining. Just one word on the attribute serviceAccountName: Each PipelineRun runs under a given service account, which means, all Pods which are being started along the Pipeline are running inside this security context.

OpenShift Pipelines creates a default service account for you, called pipeline. If you have Secrets which you want to make available to your PipelineRun, you have to connect those with the service account name. But this is out of topic for this chapter of the article series.

You can find a shell script in the folder tektondev/pipeline.sh which creates a full version of this PipelineRun based on input parameters.

Optimizing the pipeline

As you can see, the first pipeline run takes quite a long time to finish. In my case approximately 10 minutes. Of course, later, when you’re using Tekton on your build farms, this should automatically be minimized as you’re running on dedicated server hardware.

But still, this takes way too long.

If you’re looking at the logs, you can see that the maven task is taking a long time to finish. This is because maven is downloading the necessary artifacts on every run again and again. Depending on your internet connection, this takes some time, even if you’re using a local maven mirror.

On your developer machine, maven uses the $HOME/.m2 folder as a cache for the artifacts. The same will be done when you’re running maven from a Task.

However, as each PipelineRun runs on separate Pods, $HOME/.m2 is not properly defined, which means the whole cache gets invalidated once the PipelineRun is finished.

Maven allows us to specify -Dmaven.repo.local to provide a different path to a local cache. This is what we can use in our case.

I have created a new maven Task (maven-caching), which you can find here. It was originally just a copy of the one coming from Tekton Hub. But then I decided to remove the init step, which was building a maven settings.xml file based on some input parameters. Instead, I removed most of the parameters and added a MUST-HAVE maven settings ConfigMap. As this makes everything much easier, IMHO.

Image 9: Simplified Maven Task
Image 9: Simplified Maven Task

As you can see in Image 9, we only have two parameters now (GOALS and CONTEXT_DIR).

The important part for the maven call is shown in red box 2 of Image 9. It simply calls maven with the maven settings and with the parameter where to store the downloaded artifacts to.

One note on artifact storage: During my tests of this article, I realized that if the git-clone task clones the source to the root directory of the PVC (no subdirectory parameter given on task execution), the next start of the pipeline will delete everything from the PVC again (which means, we again have no artifact cache).

This means, we have to provide a subdirectory parameter (in my case, I used a global the-source) and we have to provide exact the same value to the CONTEXT_DIR parameter to the maven calls.

With this in mind, we can reduce our maven calls dramatically from in my case 10 minutes to 3 minutes.

$> tkn pr list
NAME                   STARTED          DURATION     STATUS
new-pipeline-ybtbj0    32 minutes ago   3 minutes    Succeeded
new-pipeline-l10dfk    6 days ago       10 minutes   Succeeded
Code language: PHP (php)

Summary of using Tekton Pipelines

Tekton is a powerful tool to create CI/CD pipelines. As it is based on Kubernetes, it uses all the concepts of it and reduces the maintenance of the tool itself. If you want to quickly start your first pipeline, try to use the OpenShift Developer UI which you get for free, if you’re installing the Operator. This gives you a nice base to start your tests. However, at some point – especially when it comes to optimizations – you need a proper editor to code your pipelines.

One of the biggest advantages over tools like for example Jenkins is that you can reuse everything of your work for other projects / applications. If you want to standardize the way how your pipelines work, build one pipeline and simply specify different sets of parameters. PipelineRun objects make this possible. The Pipeline we have just created can easily be reused for all Quarkus generated applications. Just change the git-url parameter and the image-name. That‘s all. Isn‘t this great?

And even if you’re not satisfied with all the Tasks you get from Tekton Hub, use them as base and build your own iterations out of it, like we did with the optimized maven task above or with the kustomize task.

I would not say, that Tekton is the easiest technology available to do CI/CD pipelines, but it is definitely one of the most flexible ones.

However, we have not even talked about Tekton security and how we are able to provide for example secrets to access your git repository or the image repository. And we have cheated a little bit about image generation as we were using the mechanism Quarkus provides. There are other ways of creating images with a dedicated buildah Task. But this might become another part of this article series.

Part 4 of this article series will discuss GitOps and ArgoCD and will be released on 6th of September 2021.

Thank you for reading.

2 replies on “Automated Application Packaging And Distribution with OpenShift – Tekton Pipelines – Part 3/4”

Leave a Reply

close

Subscribe to our newsletter.

Please select all the ways you would like to hear from Open Sourcerers:

You can unsubscribe at any time by clicking the link in the footer of our emails. For information about our privacy practices, please visit our website.

We use Mailchimp as our newsletter platform. By clicking below to subscribe, you acknowledge that your information will be transferred to Mailchimp for processing. Learn more about Mailchimp's privacy practices here.