Questions tagged [tekton-pipelines]

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. https://tekton.dev/

95 questions
0
votes
1 answer

Tekton sidecar: docker daemon failing to start

I have a Tekton pipeline that builds and pushes a Docker image to a private repository. The task that handles this uses a DinD sidecar. Originally, it worked just fine, but it's started failing with the error Cannot connect to the Docker daemon at…
Hilda Hay
  • 87
  • 3
0
votes
1 answer

Can't figure out how to do variable substitution in my Tekton pipeline

So I'm not sure if this is actually a Bash issue or a Tekton issue. The problem occurs in my OpenShift (Tekton) pipeline. After having deployed my application, I have a step where I need to check if the Deployment has actually been created. This is…
0
votes
1 answer

Output types for Tekton Task

I can't find some sort of list that would show accepted types for outputs in Tekton Tasks. Is it somehow fixed or is it possible to use any file extension? I have been having troubles with .xml files in my case. Thanks in advance
0
votes
1 answer

Slack integration with Tekton missing pipeline event messages

Following the documentation here, I created a Tekton Pipeline and integrated Slack through the tool integration. I also set up an incoming webhook following the Slack API documentation. Along with configuring the webhook URL, channel, and team name,…
Vidyasagar Machupalli
  • 2,737
  • 1
  • 19
  • 29
0
votes
2 answers

Authorizations for Tekton dashboard

Is there a way to grant permissions in the Tekton dashboard? I.e. one group of people get to manually trigger new pipeline runs while another can only view?
Harald
  • 13
  • 2
0
votes
1 answer

Tekton - mount path workspace issue - Error of path

Currently, I am trying to deploy tutum-hello-world. I have written a script for the same, but it does not work as it is supposed to. I am certain that this issue is related to workspace. UPDATE Here is my code for task-tutum-deploy.yaml- apiVersion:…
Shresth Suman
  • 29
  • 1
  • 6
0
votes
0 answers

Tekton dashboard deployment error- Error from server (Forbidden): error when creating "config/service.yaml"

I am trying to practice the steps in my local using minikube. From the teokton-dashboard in my local I am able to import the resource using git url. I followed all the steps but when creating pipeline runs I am getting error as Error from server…
0
votes
1 answer

Tekton mongo task error - Error executing command

Goal - Deploy Graylog environment with Elasticsearch and Mongodb. 1 pod each of graylog and mongo and 2 pods of ES. Currently, I am trying to deploy mongodb as task and a service. I have written a script for the same, but it does not work as it is…
Shresth Suman
  • 29
  • 1
  • 6
0
votes
2 answers

Tekton pipeline - start pipelinerun via kubernetes/openshift api

Just wondering if there's a way to start a Tekton pipeline via the Kubernetes API. I know we can use Triggers or the tkn cli. But for my use-case, the API would be a better option. Is there a way to do that? I'm using OpenShift, but can't find any…
Bharath
  • 559
  • 11
  • 27
0
votes
1 answer

Tekton Task not Expanding Parameters (OpenShift)

I am unable to pass parameters to a Tekton task via the CLI or via TaskRun YAML. Task file apiVersion: tekton.dev/v1beta1 kind: Task metadata: name: ubuntu-test namespace: tekton-pipelines spec: params: - name: var type: string …
pirateofebay
  • 930
  • 1
  • 10
  • 25
0
votes
1 answer

IBM Cloud: How to add Tekton Catalog to Continuous Delivery toolchain configuration?

I am using the Continuous Delivery service in IBM Cloud. My toolchain is defined using a YAML file and stored in the .bluemix directory in my GitHubcode repository. I am using Tekton for the pipeline. How can I add the Tekton Catalog to the…
data_henrik
  • 16,724
  • 2
  • 28
  • 49
0
votes
1 answer

How to set up a generic webhook trigger in Tekton

I want to set up a webhook trigger in tekton. In the documentation, I can find Github, Gitlab and bitbucket triggers available. But I want a generic webhook that processes HTTP POST and reads the JSON body. For example: I am doing the following with…
Bharath
  • 559
  • 11
  • 27
0
votes
2 answers

deletecollection kubernetes (tekton) resources - specific RBAC needed?

I am trying to delete tekton kubernetes resources in the context of a service account with an on-cluster kubernetes config, and am experiencing errors specific to accessing deletecollection with all tekton resources. An example error is as…
scniro
  • 16,844
  • 8
  • 62
  • 106
0
votes
2 answers

Deploying image to Knative service using knctl/kubectl in tekton pipeline

I was going through the official Tekton documentation where it deploys an image to Kubernetes using kubectl standard deployment object manifest . However I am trying use Tekton pipeline as CI/CD to deploy in a knative service which should either use…
Neil
  • 5,919
  • 15
  • 58
  • 85
0
votes
2 answers

Is it possible to install Tekton on local system (non container)

I want to install Tekton to explore its features and capabilities, I am aware that it is used for CI/CD of cloud native application but our use case is different. I want to generate a war file using Tekton and deploy it on local liberty server. (I…