Deal of The Day! Hurry Up, Grab the Special Discount - Save 25% - Ends In 00:00:00 Coupon code: SAVE25
Welcome to Pass4Success

- Free Preparation Discussions

IBM Exam C1000-130 Topic 9 Question 71 Discussion

Actual exam question for IBM's C1000-130 exam
Question #: 71
Topic #: 9
[All C1000-130 Questions]

What technology are OpenShift Pipelines based on?

Show Suggested Answer Hide Answer
Suggested Answer: C

OpenShift Pipelines are based on Tekton, an open-source framework for building Continuous Integration/Continuous Deployment (CI/CD) pipelines natively in Kubernetes.

Tekton provides Kubernetes-native CI/CD functionality by defining pipeline resources as custom resources (CRDs) in OpenShift. This allows for scalable, cloud-native automation of software delivery.

Why Tekton is Used in OpenShift Pipelines?

Kubernetes-Native: Unlike Jenkins, which requires external servers or agents, Tekton runs natively in OpenShift/Kubernetes.

Serverless & Declarative: Pipelines are defined using YAML configurations, and execution is event-driven.

Reusable & Extensible: Developers can define Tasks, Pipelines, and Workspaces to create modular workflows.

Integration with GitOps: OpenShift Pipelines support Argo CD for GitOps-based deployment strategies.

Example of a Tekton Pipeline Definition in OpenShift:

apiVersion: tekton.dev/v1beta1

kind: Pipeline

metadata:

name: example-pipeline

spec:

tasks:

- name: echo-hello

taskSpec:

steps:

- name: echo

image: ubuntu

script: |

#!/bin/sh

echo 'Hello, OpenShift Pipelines!'

Explanation of Incorrect Answers:

A . Travis Incorrect

Travis CI is a cloud-based CI/CD service primarily used for GitHub projects, but it is not used in OpenShift Pipelines.

B . Jenkins Incorrect

OpenShift previously supported Jenkins-based CI/CD, but OpenShift Pipelines (Tekton) is now the recommended Kubernetes-native alternative.

Jenkins requires additional agents and servers, whereas Tekton runs serverless in OpenShift.

D . Argo CD Incorrect

Argo CD is used for GitOps-based deployments, but it is not the underlying technology of OpenShift Pipelines.

Tekton and Argo CD can work together, but Argo CD alone does not handle CI/CD pipelines.

IBM Cloud Pak for Integration (CP4I) v2021.2 Administration Reference:

IBM Cloud Pak for Integration CI/CD Pipelines

Red Hat OpenShift Pipelines (Tekton)

Tekton Pipelines Documentation


Contribute your Thoughts:

Annice
3 days ago
Yes, Tekton is the correct answer because it's a Kubernetes-native resource.
upvoted 0 times
...
Douglass
5 days ago
No, Jenkins is not the technology used for OpenShift Pipelines.
upvoted 0 times
...
Agustin
6 days ago
I'm just glad it's not Argo CD. That's for deployment, not pipelines, right?
upvoted 0 times
...
Fernanda
10 days ago
Hmm, I thought Jenkins was the go-to for pipelines, but I guess OpenShift is using something different. C sounds like the right answer.
upvoted 0 times
...
Herman
19 days ago
I'm not sure, but I think it's Jenkins.
upvoted 0 times
...
Annice
22 days ago
I agree with Douglass, Tekton is the technology behind OpenShift Pipelines.
upvoted 0 times
...
Kaitlyn
23 days ago
I'm pretty sure it's C. Tekton, the open-source project for building CI/CD systems.
upvoted 0 times
...
Douglass
25 days ago
I think OpenShift Pipelines are based on Tekton.
upvoted 0 times
...

Save Cancel