How to build/run Spring Boot Containers for Kubernetes using CRaC
IssueWhat workflow (automated pipeline) can I use to create a container image from my Spring Boot application for deployment on Kubernetes that utilises the fast startup functionality provided by...
View ArticleCan't pass Tekton's Getting Started. TaskRun's are not actually running
I'm at the finish line of this tutorial on my Linux machine with minikube: https://tekton.dev/docs/getting-started/. But something went wrong and I don't get the expected echo result.In order to track...
View ArticleTekton dashboard
Got the following error, while trying to view tekton dashboard using the command kubectl port-forward -n tekton-pipelines service/tekton-dashboard 9097:9097Error from server (NotFound): services...
View ArticleTekton Migrating From paketobuildpacks/builder:base To...
The Tekton pipeline was working fine until the migration to Jammy. The only pipeline code changed was the image builder name.On the "buildpacks" (https://hub.tekton.dev/tekton/task/buildpacks) task the...
View ArticleHow to get/set pipeline spec by REST API limited to a project?
I'm pretty new to Openshift and Tekton--we have an Openshift server (cluster?) with pipelines and I'm trying to get/create/update the Pipelines, Tasks, PipelineRuns, etc. via REST API.Using the API...
View ArticleLocal images are failing for tasks in Openshift pipelines 1.11
I have following task definition (simplified):apiVersion: tekton.dev/v1beta1kind: Taskmetadata: name: my-task namespace: mynamespace params: - default:...
View ArticleGKE Cluster immediately hits Persistent Disk SSD (GB) quota when installing...
I've created a default GKE autopilot cluster and called it "tekton-cluster". After I run the following code to configure Tekton on the cluster:# Install tekton pipelines and taskskubectl apply...
View ArticleCan I use ConfigMaps as Pipelines params in Openshift?
I've got several pipelines which need to connect to a Windows VM through SSH. The SSH connection information is mostly fixed, it doesn't change unless we need to change the VM for some reason, it...
View ArticleHow do I get a notification from tekton pipeline
I now have a tekton pipeline and I want to get a notification when one task in the pipeline is completed or on error. I would like the notification is a Http request to my own service just like the...
View ArticlePipeline is skipping task when it shouldn't?
I have an Openshift/Tekton pipeline. I have a task that outputs a true/false passed result if certain tests pass:apiVersion: tekton.dev/v1beta1kind: Taskmetadata: name: test-repospec: results: - name:...
View ArticleTekton, npm ci, and "npm ERR! EMFILE: too many open files, open...
I'm using an incredibly simple pipeline to build my angular App. I run it on an openshift cluster.these are the two tasks: tasks: - name: fetch-source params: - name: url value: $(params.repo-url) -...
View ArticleHow to handle PipelineRuns and Tasks which are sensitive to concurrency in...
I'm trying to figure out how to enforce that PipelineRuns start and end in the order in which they were started.The reason I want this is because our pipelines also handle versioning of our...
View ArticleOpenshift Pipelines (Tekton) failing after upgrade
We have a number of Openshift pipelines which were running fine, that have started failing following a cluster upgrade from Openshift 4.12.23 to 4.12.54The pipelines all give the following error:failed...
View ArticleHow come my git-clone task is failing in the OpenShift pipeline?
I am currently working on a project where I have to set up a pipeline and add tasks. I was able to add a cleanup task, a git-clone task, flake8 task, and a nose task and it was working perfectly fine...
View ArticleSSL Error when running Openshift AI Pipeline from code
I made an Elyra Pipeline en Openshift AI and I have submited to pipeline server ok.I tried to run the pipeline fromPython code:import osimport kfp_tektonimport ostoken = "[my_token]"route =...
View ArticleHow to gain access for background services running by a docker-compose...
the context of my problem is:I have a test routine in python, which start some containers, in order to run required services on background. So, when I run "pytest", it runs a "docker-compose up -d"...
View ArticleExposing an EventListener outside of the cluster using a LoadBalancer Service...
Exposing an EventListener outside of the cluster, we can expose this service using the below optionsUsing a LoadBalancer Service typeUsing a Kubernetes Ingress objectUsing the NGINX Ingress...
View ArticleNO tekton task , taskrun or pipeline working in tekton
`# hello-world.yamlapiVersion: tekton.dev/v1beta1kind: Taskmetadata: name: hellospec: steps: - name: echo image: alpine script: | #!/bin/sh echo "Hello World"`# hello-world-run.yaml`your text`...
View ArticleKaniko with Tekton Pipeline: Nexus Registry Push Error "404 Not Found"
I work at a corporate company where our network is intranet-based. We are using Nexus as our Docker registry and I am writing a pipeline in Tekton. In the pipeline, I am using Kaniko and have created...
View Articlee2e testing maven libs
Situation:I provide several java libs and spring boot starterI have a collection of spring test application that communicate with each other, enable me to test all uses casesGoalWhen a library /...
View Article