Skip to content

Latest commit

 

History

History
54 lines (41 loc) · 1.41 KB

README.md

File metadata and controls

54 lines (41 loc) · 1.41 KB

Introducción a Tekton CI/CD

Descarga las diapositivas

Primero necesitamos un clúster de Kubernetes. Si no tenemos uno, se puede usar kind

kind create cluster

Ahora instalamos Tekton

kubectl apply --filename https://storage.googleapis.com/tekton-releases/pipeline/latest/release.yaml

Instalamos el Dashboard de Tekton (opcional)

kubectl apply --filename https://storage.googleapis.com/tekton-releases/dashboard/latest/release-full.yaml

Ahora le hacemos port-forward al dashboard

kubectl --namespace tekton-pipelines port-forward svc/tekton-dashboard 9097:9097

Podemos accederlo a través de http://localhost:9097

Ahora procedemos a instalar unas tareas que necesitaremos desde Tekton Hub

kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/git-clone/0.9/git-clone.yaml
kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/kaniko/0.6/kaniko.yaml

Ahora podemos instalar nuestro primer Pipeline

kubectl apply -f node-example.yaml

Corramos una instancia del pipeline:

kubectl apply -f node-example-run.yaml

Podemos ver el estado haciendo:

kubectl get pr

Luego un Pipeline más complicado en go usando GCP Samples:

kubectl apply -f go-example.yaml
kubectl apply -f go-example-run.yaml