아래는 Tekton 정리 초안이다. DevOps 엔지니어 기준으로 기술적 관점에서 작성했다.
Tekton은 Kubernetes 네이티브 CI/CD 프레임워크로, 모든 구성요소가 CRD(Custom Resource Definition) 형태로 정의됨.
파이프라인 실행은 Pod 단위로 관리되며, 모든 Step은 개별 컨테이너로 동작함.
Trigger → PipelineRun → Pipeline → Task → Step(Container)
| CRD | 설명 | 주요 필드 |
|---|---|---|
| Task | 실행 가능한 단일 작업 정의 | steps, params, workspaces |
| Pipeline | 여러 Task를 순차/병렬 실행 | tasks, params, workspaces |
| TaskRun | Task의 실행 인스턴스 | taskRef, params, workspaces |
| PipelineRun | Pipeline의 실행 인스턴스 | pipelineRef, params, workspaces |
| Workspace | 공유 스토리지 볼륨 | volumeClaimTemplate, persistentVolumeClaim |
| TriggerTemplate | PipelineRun 템플릿 | params, resourcetemplates |
| TriggerBinding | 이벤트 필드 매핑 | params |
| EventListener | Webhook 수신 및 Trigger 실행 | serviceAccountName, triggers |
https://tekton.dev/docs/installation/
# Tekton Pipelines 설치
kubectl apply -f https://storage.googleapis.com/tekton-releases/pipeline/latest/release.yaml
# Tekton Triggers 설치
kubectl apply -f https://storage.googleapis.com/tekton-releases/triggers/latest/release.yaml
# Tekton Dashboard 설치 (선택)
kubectl apply -f https://storage.googleapis.com/tekton-releases/dashboard/latest/tekton-dashboard-release.yaml
# CLI 설치 (macOS)
brew install tektoncd-cli
확인:
kubectl get pods -n tekton-pipelines
tkn version
예시: 간단한 Build → Test 파이프라인
실행:
kubectl apply -f task-build.yaml
kubectl apply -f task-test.yaml
kubectl apply -f pipeline.yaml
kubectl apply -f pipelinerun.yaml
tkn pipelinerun logs build-test-run -f
PipelineRun 생성.https://tekton.dev/