Tekton Custom Task extends Kubernetes and Tekton capabilities by providing custom task implementations. These custom tasks are designed to facilitate complex workflows that standard Tekton tasks may not cover, making it a powerful tool for DevOps teams looking to extend their CI/CD pipelines with custom logic.
- api/v1alpha1/: Contains the API definitions for the custom tasks, including the structure and validation of custom resource definitions (CRDs).
- cmd/: Hosts the main application entry point and the command-line interface setup.
- config/: Includes Kubernetes configuration files for deploying the custom tasks, such as CRDs, RBAC rules, and sample configurations.
- docs/: Provides detailed documentation on the API and usage examples.
- deploy-templates/: Contains Helm chart templates for deploying the custom tasks controller.
To get started with Tekton Custom Task, ensure you have Kubernetes and Tekton Pipelines installed in your environment. Follow these steps to deploy a custom task:
-
Clone the repository to your local environment.
-
Navigate to the
config/
directory. -
Apply the CRDs to your Kubernetes cluster:
kubectl apply -f config/crd/bases/
-
To add the Helm EPAMEDP Charts for local client, run "helm repo add":
helm repo add epamedp https://epam.github.io/edp-helm-charts/stable
-
Choose available Helm chart version:
helm search repo epamedp/tekton-custom-task -l NAME CHART VERSION APP VERSION DESCRIPTION epamedp/tekton-custom-task 0.1.0 0.1.0 A Helm chart for Tekton Custom Tasks
NOTE: It is highly recommended to use the latest released version.
-
Full chart parameters available in deploy-templates/README.md.
-
Install operator with the following command:
helm install tekton-custom-task epamedp/tekton-custom-task --version <chart_version>
-
Check the namespace that should contain CustomTask controller in a running status.
-
Navigate to the forked edp-cluster-add-ons repository.
-
Enable the deployment of the Tekton Custom Task Helm chart by setting the
tekton-custom-task.enable
andtekton-custom-task.createNamespace
values totrue
in theclusters/core/apps/values.yaml
file.tekton-custom-task: createNamespace: true enable: true
-
Update the
clusters/core/addons/tekton-custom-task/values.yaml
file with the desired configuration for the Tekton Custom Task Helm chart. -
After updating the
values.yaml
file, commit the changes to the repository and apply the changes with Helm or Argo CD.
This set of instructions guides you through the process of creating a custom ApprovalTask
and incorporating it into a Tekton pipeline to serve as an approval step.
To integrate the ApprovalTask
into your CI/CD pipelines, follow these steps to define the custom task and use it within a Tekton pipeline.
Incorporate the ApprovalTask
within a Tekton pipeline by defining both a Pipeline
and a PipelineRun
.
Create a file named pipeline.yaml
with the following content:
apiVersion: tekton.dev/v1beta1
kind: Pipeline
metadata:
name: example-pipeline
spec:
tasks:
- name: approval-task
taskRef:
apiVersion: edp.epam.com/v1alpha1
kind: ApprovalTask
name: approvaltask-example
This pipeline, named example-pipeline
, contains a single task named approval-task
. This task references your previously defined ApprovalTask
(approvaltask-example
).
To initiate the pipeline execution, define a PipelineRun
in a file named pipeline-run.yaml
with the contents below:
apiVersion: tekton.dev/v1beta1
kind: PipelineRun
metadata:
name: example-pipeline-run
spec:
pipelineRef:
name: example-pipeline
This PipelineRun
, named example-pipeline-run
, triggers the execution of example-pipeline
.
Deploy the ApprovalTask
, the pipeline, and initiate the pipeline run by applying the YAML files to your Kubernetes cluster:
kubectl apply -f approvaltask.yaml
kubectl apply -f pipeline.yaml
kubectl apply -f pipeline-run.yaml
- Custom Task Definitions: Define your tasks that extend the Tekton pipeline model.
- Flexible Configuration: Leverage Kubernetes CRDs for task definitions, allowing for dynamic and flexible configurations.
- Integration with Tekton Pipelines: Seamlessly integrate custom tasks within your existing Tekton pipelines.
Tekton Custom Task supports integration with Kubernetes dashboards and notification systems. This allows for improved monitoring and alerting capabilities for your custom tasks.
Future developments include:
- Enhanced UI for managing custom tasks.
- More examples and templates for common use cases.
- Improved integration with external tools and platforms.
We welcome contributions in the form of issues and pull requests. Please follow the contributing guidelines outlined in the repository.
This project is licensed under the Apache License 2.0.