<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: Shivam Mukhade</title>
    <description>The latest articles on Forem by Shivam Mukhade (@sm43).</description>
    <link>https://forem.com/sm43</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F492437%2Fe0b632b9-6d0c-430b-bf4c-ccd63a5706ca.png</url>
      <title>Forem: Shivam Mukhade</title>
      <link>https://forem.com/sm43</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/sm43"/>
    <language>en</language>
    <item>
      <title>Tekton 101🥷</title>
      <dc:creator>Shivam Mukhade</dc:creator>
      <pubDate>Fri, 06 May 2022 07:14:04 +0000</pubDate>
      <link>https://forem.com/kcdchennai/tekton-101-9nk</link>
      <guid>https://forem.com/kcdchennai/tekton-101-9nk</guid>
      <description>&lt;p&gt;This article is going to introduce what Tekton is and how we can build a CI/CD pipeline using Tekton.&lt;/p&gt;

&lt;p&gt;There are multiple projects under the hat of Tekton but the heart is "&lt;a href="https://github.com/tektoncd/pipeline" rel="noopener noreferrer"&gt;Tekton Pipeline&lt;/a&gt; ".&lt;/p&gt;

&lt;h2&gt;
  
  
  Tekton Pipelines
&lt;/h2&gt;

&lt;p&gt;Tekton Pipelines project provides kubernetes style resources for declaring CI/CD-style pipelines.&lt;/p&gt;

&lt;p&gt;Before getting into understanding Tekton Concepts lets take couple of general examples and then relate it to Tekton...&lt;/p&gt;

&lt;p&gt;(Here we will consider our CI would be doing following things&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Build Test, &lt;/li&gt;
&lt;li&gt;Unit Test,&lt;/li&gt;
&lt;li&gt;Building container image,&lt;/li&gt;
&lt;li&gt;pushing it to a remote registry&lt;/li&gt;
&lt;li&gt;deploying the image on a kubernetes cluster 
)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If we want to run a CI manually on our machine how would we do it?&lt;/p&gt;

&lt;p&gt;May be by writing a script?&lt;br&gt;
or executing the commands one by one?&lt;/p&gt;

&lt;p&gt;Lets take a scenario where we want to run CI/CD on a &lt;code&gt;go&lt;/code&gt; project (A):&lt;br&gt;
Step 1: We would clone the project (git clone)&lt;br&gt;
Step 2: Run go build command &lt;br&gt;
Step 3: Run go test command to run the test&lt;br&gt;
Step 4: Using docker build command to build the image&lt;br&gt;
Step 5: Docker push command to push the image to remote registry&lt;br&gt;
Step 6: Create/Updating a Kubernetes Deployment with the newly built image&lt;/p&gt;

&lt;p&gt;Now lets take another scenario where we want to run CI on a &lt;code&gt;Java&lt;/code&gt; project (B):&lt;br&gt;
Step 1: We would clone the project (git clone)&lt;br&gt;
Step 2: Run javac command to compile the project&lt;br&gt;
Step 3: Run tests&lt;br&gt;
Step 4: Using docker build command to build the image&lt;br&gt;
Step 5: Docker push command to push the image to remote registry&lt;br&gt;
Step 6: Create/Updating a Kubernetes Deployment with the newly built image&lt;/p&gt;

&lt;p&gt;If we compare both the scenarios, we can see following things&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Step 4 &amp;amp; Step 5 are common in both, and are executed together in an order, isn't it? we would push a image only after building. this is where we introduce Tekton Task.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;em&gt;A Task is a collection of Steps that you define and arrange in a specific order of execution as part of your continuous integration flow.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Step 5 will be always executed after Step 4. So we can have a Tekton Task which has 2 steps -&amp;gt; building the image and then pushing it to a image registry. This task can be shared among both the projects.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Step 1 which is cloning the project can also be Tekton Task which can be shared in both projects.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Step 6 which is creating/updating a Kubernetes Deployment can be Task and can be shared too.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Rest of the Steps were project specific or language specific which could also be Tekton Task. In this scenarios we couldnt share those but for other projects we could definitely reuse those. &lt;/p&gt;

&lt;p&gt;How to use the Task in a Pipeline, we are going to see it later in the article.&lt;/p&gt;

&lt;p&gt;Here we saw that A Tekton Task is a collection of steps which can be executed in a specific order and the task can be reused across different pipelines by changing the parameters.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;_ Tekton has a catalog which is collection of Tasks which are maintained by the community. You can access them &lt;a href="https://hub.tekton.dev/" rel="noopener noreferrer"&gt;hub.tekton.dev&lt;/a&gt;. You can directly use the Task in your Pipeline from here or you can modify existing based on your requirement._&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;In Hub, you can find Tasks for Cloning the code, running the test, and many more scenarios.&lt;/p&gt;

&lt;p&gt;But Tekton Task is just a Template, if you apply it on a Kubernetes Cluster nothing would happen.&lt;/p&gt;

&lt;p&gt;Consider following hello world Task, if you apply this on a Kubernetes cluster with Tekton Installed, nothing would happen.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;apiVersion: tekton.dev/v1beta1
kind: Task
metadata:
  name: hello
spec:
  params:
    - name: text
      type: string
  steps:
    - name: say-hello-to
      image: registry.access.redhat.com/ubi8/ubi
      command:
        - /bin/bash
      args: ['-c', 'echo Hello $(params.text)!']
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;To run the Task, you need to create a TaskRun which is an running instance.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;A TaskRun allows you to instantiate and execute a Task on-cluster&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;In above example, you can see there is param defined which can passed while executing the TaskRun.&lt;/p&gt;

&lt;p&gt;A TaskRun would look like as below&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;apiVersion: tekton.dev/v1beta1                             
kind: TaskRun                             
metadata:                               
  generateName: hello-                             
spec:                               
  taskRef:                                 
    name: hello   
  params:
  - name: text
    value: "sm43"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You can create as many TaskRun as required by changing the parameters.&lt;/p&gt;

&lt;p&gt;If you create a TaskRun, You can check the logs using &lt;a href="https://github.com/tektoncd/pipeline" rel="noopener noreferrer"&gt;tkn&lt;/a&gt; CLI.&lt;br&gt;
tkn CLI is another sub project of Tekton which simplify interacting with Tekton resources using command line.&lt;/p&gt;

&lt;p&gt;You can check the logs using&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;# get the name of taskrun created
tkn taskrun ls 

# get the logs
tkn taskrun logs &amp;lt;taskrun-name&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;We saw Task and how to run it, but we would have to run multiple Tasks right? one for running test, one for building and pushing image.. that doesn't sound efficient 🤔&lt;/p&gt;

&lt;p&gt;So, we have Tekton Pipeline where we can define different Tasks in the order we want to run.&lt;/p&gt;

&lt;p&gt;Before we start building the Pipeline we are going another Tekton Concept which is &lt;code&gt;[Workspace](https://tekton.dev/docs/pipelines/workspaces/#overview)&lt;/code&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;Workspaces allow Tasks to declare parts of the filesystem that need to be provided at runtime by TaskRuns&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;we will have multiple Tasks in a Pipeline, any multiple Tasks will need access to the application code, to run the test or to build the images, etc.&lt;/p&gt;

&lt;p&gt;Workspace can be a volume which is shared among the Tasks in the Pipeline to execute their specific logic on the code.&lt;br&gt;
In the example, we saw before we can use a workspace where git clone task will clone the code and rest of Tasks will have access to that workspace and execute their logic on that code.&lt;/p&gt;

&lt;p&gt;Lets build a Pipeline&lt;br&gt;
We are going to use a go application called &lt;a href="https://github.com/sm43/news-demo" rel="noopener noreferrer"&gt;news-demo&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;You can clone the repository and follow the steps.&lt;/p&gt;

&lt;p&gt;Prerequisites:&lt;br&gt;
A Kubernetes cluster.&lt;/p&gt;

&lt;p&gt;You can install Tekton Using Tekton Operator, steps can be found &lt;a href="https://github.com/tektoncd/operator#install-tektoncd-operator" rel="noopener noreferrer"&gt;here&lt;/a&gt;.&lt;br&gt;
NOTE: this will also install other Tekton projects.&lt;/p&gt;

&lt;p&gt;or You can just install Tekton Pipeline which we are discussing in this article. you can find installation steps &lt;a href="https://github.com/tektoncd/pipeline/blob/main/docs/install.md" rel="noopener noreferrer"&gt;here&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;for the News-Demo application, we are going to build a Pipeline which would be doing following Tasks&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;clone the code in a workspace&lt;/li&gt;
&lt;li&gt;build the code&lt;/li&gt;
&lt;li&gt;test the code&lt;/li&gt;
&lt;li&gt;build and push the image&lt;/li&gt;
&lt;li&gt;check is a deployment alread exist&lt;/li&gt;
&lt;li&gt;if no, create a deployment&lt;/li&gt;
&lt;li&gt;if yes, then update the deployment&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The pipeline can would look as below&lt;br&gt;
You can find the complete pipeline &lt;a href="https://github.com/sm43/news-demo/blob/main/pipeline/01-pipeline.yaml" rel="noopener noreferrer"&gt;here&lt;/a&gt;&lt;br&gt;
below you can see part of the pipeline..&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;apiVersion: tekton.dev/v1beta1
kind: Pipeline
metadata:
  name: news-demo-deploy
  namespace: news-demo
spec:
  params:
    - name: REPO
    - name: REVISION
    - name: IMAGE
    - name: TAG
    - name: NAMESPACE
  workspaces:
    - name: shared-workspace
  tasks:
    - name: fetch-repository
      taskRef:
        name: git-clone
      workspaces:
        - name: output
          workspace: shared-workspace
      params:
        - name: url
          value: $(params.REPO)
        - name: subdirectory
          value: ""
        - name: deleteExisting
          value: "true"
        - name: revision
          value: $(params.REVISION)
    - name: build-test
      runAfter:
        - fetch-repository
      taskRef:
        name: golang-build
      params:
        - name: packages
          value: ./...
        - name: package
          value: github.com/sm43/news-demo
      workspaces:
        - name: source
          workspace: shared-workspace
    - name: unit-tests
      runAfter:
        - fetch-repository
      taskRef:
        name: golang-test
      params:
        - name: package
          value: github.com/sm43/news-demo
        - name: flags
          value: -v -mod=vendor
      workspaces:
        - name: source
          workspace: shared-workspace
    - name: build-push-image
      taskRef:
        name: buildah
      workspaces:
        - name: source
          workspace: shared-workspace
      params:
        - name: IMAGE
          value: $(params.IMAGE):$(params.TAG)
        - name: FORMAT
          value: "docker"
      runAfter:
        - build-test
        - unit-tests
    - name: check-deployment
      taskRef:
        name: kubernetes-actions
      params:
        - name: script
          value: |
            kubectl describe deployment news-demo -n "$(params.NAMESPACE)" &amp;gt;/dev/null 2&amp;gt;/dev/null
            if [[ $? -eq 0 ]]; then
              printf yes | tee /tekton/results/output-result
            else
              printf no | tee /tekton/results/output-result
            fi
      runAfter:
        - build-push-image
    - name: patch-image
      taskRef:
        name: kubernetes-actions
      params:
        - name: script
          value: |
            kubectl patch deployment news-demo --patch='{"spec":{"template":{"spec":{
              "containers":[{
                "name": "news-demo",
                "image": "$(params.IMAGE):$(params.TAG)"
              }]
            }}}}' -n $(params.NAMESPACE)
      when:
        - input: "$(tasks.check-deployment.results.output-result)"
          operator: in
          values: ["yes"]
      runAfter:
        - check-deployment
    - name: create-deployment
      taskRef:
        name: kubernetes-actions
      workspaces:
        - name: manifest-dir
          workspace: shared-workspace
      params:
        - name: script
          value: |
            kubectl -n $(params.NAMESPACE) apply -f &amp;lt;(sed "s@image:.*@image: $(params.IMAGE):$(params.TAG)@" k8s/02-deployment.yaml)
      when:
        - input: "$(tasks.check-deployment.results.output-result)"
          operator: in
          values: ["no"]
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F1a84n2evhib6jwdjn0oe.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F1a84n2evhib6jwdjn0oe.png" alt="Pipeline flow"&gt;&lt;/a&gt; &lt;/p&gt;

&lt;p&gt;Lets understand the pipeline&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;The first Task is git-clone which we will be using from Tekton Hub. we will install it on the cluster and reference in our Pipeline.&lt;br&gt;
You can see we have used a workspace where the task will clone the code and we pass the same workspace to other Tasks to access the code.&lt;br&gt;
Depending on project we will pass the params.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Similarly we are going to use golang-build and golang-test from Tekton Hub and refer it on our Pipeline.&lt;br&gt;
One thing to notice here is we have a field &lt;code&gt;runAfter&lt;/code&gt;. If you see in &lt;code&gt;build-test&lt;/code&gt; we have&lt;br&gt;
&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;runAfter:
  - fetch-repository
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;which means run this task after completing fetch-repostitory which is nothing but git-clone. this is how we can specify order.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;After running build test and unit test, we use buildah Task to build and push image.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Finally once image is built, we will create or update a Deployment.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Here we use when expression to decide which action to perform. When we run &lt;code&gt;check-deployment&lt;/code&gt;, it checks whether the deployment exist using &lt;code&gt;kubernetes-actions&lt;/code&gt; Task from Tekton Hub and add its output to results.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;So, the next 2 Tasks in the Pipeline will be executed on the basis of output of check-deployment Task.&lt;br&gt;
if check-deployment output is &lt;code&gt;yes&lt;/code&gt; then &lt;code&gt;patch-image&lt;/code&gt; will be executed else create-deployment will be executed.&lt;br&gt;
&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; when:
        - input: "$(tasks.check-deployment.results.output-result)"
          operator: in
          values: ["yes"]
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Lets execute it...&lt;/p&gt;

&lt;h3&gt;
  
  
  Setting up application
&lt;/h3&gt;

&lt;p&gt;You can clone the repository using&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;git clone https://github.com/sm43/news-demo.git
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The application requires a &lt;a href="https://newsapi.org/register" rel="noopener noreferrer"&gt;News API account&lt;/a&gt; and its key to work. Sign up for a News API account and get your free API key.&lt;/p&gt;

&lt;p&gt;Once you have the key&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;cd news-demo
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Edit the configMap in &lt;code&gt;k8s&lt;/code&gt; directory and add your API key for the variable NEWS_API_KEY.&lt;/p&gt;

&lt;p&gt;After updating the configMap, you can apply the manifest on the cluster using kubectl.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;kubectl apply -f k8s/
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This will deploy the application in news-demo namespace and create a service for the deployment.&lt;/p&gt;

&lt;p&gt;To access the application outside cluster, Create a Route if you are OpenShift cluster or Ingress on a kubernetes cluster.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;kubectl apply -f k8s/openshift/
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You can get the route and access it on a browser.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;echo "https://$(kubectl get routes news-demo -n news-demo -ojsonpath='{.spec.host}')"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You would be able to see the below application&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fe6i4eft1xa66h74np3te.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fe6i4eft1xa66h74np3te.gif" alt="Deployed Application"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Setting up Pipeline
&lt;/h3&gt;

&lt;p&gt;Before applying the pipeline, we will need to create some resources, run the bash script in pipeline directory.&lt;/p&gt;

&lt;p&gt;Edit the script to add your image registry credentials so that pipeline can push image to your registry. and update your registry username in pipelineRun.&lt;/p&gt;

&lt;p&gt;Execute the scipt&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;./pipeline/run.sh
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This script install task from catalog, create service account which has access to your registry for pushing the image, rbac required for creating/updating deployment, pipeline and starts the pipeline by creating pipelineRun.&lt;/p&gt;

&lt;p&gt;You can use tkn to access the resource&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;# List the pipelineRuns
tkn pipelinerun ls

# follow the logs of pipelineRun
tkn pipelinerun logs -f
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Wait for pipelineRun to be completed and then check the image in deployment..&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4i8at2buad75nqradxnc.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4i8at2buad75nqradxnc.gif" alt="PipelineRun"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Previously, when we deployed the application the image was &lt;code&gt;quay.io/sm43/news-demo:latest&lt;/code&gt; and now the pipeline has updated the image to &lt;code&gt;quay.io/sm43/news-demo:v0.1&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;We have successfully ran the pipeline.&lt;/p&gt;

&lt;p&gt;Now, if you do any changes in your code and start the Pipleine then you would see the changes deployed on the cluster after successfully completing the Pipeline.&lt;/p&gt;

&lt;p&gt;But this is manually right? we can't keep running manually each time. we want to run based on events.&lt;br&gt;
We want to run the CI when we create a pull request or push a commit to a branch.&lt;/p&gt;

&lt;p&gt;So for this we need to set up Tekton Triggers. We will seeing how to setup Tekton Trigger in a following article.&lt;/p&gt;

&lt;p&gt;Till then you can checkout the complete series about Tekton &lt;a href="https://sm43.medium.com/world-of-tekton-part-1-999738d63e25" rel="noopener noreferrer"&gt;here&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;If you liked the article please leave feedback. &lt;/p&gt;

</description>
      <category>cicd</category>
      <category>tekton</category>
      <category>kubernetes</category>
      <category>pipeline</category>
    </item>
  </channel>
</rss>
