Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 585 Bytes

README.md

File metadata and controls

36 lines (24 loc) · 585 Bytes

kind-tekton-argocd

Demo to deploy a local Kind cluster with Tekton and ArgoCD

Prepare WSL

pip install ansible ansible-lint kubernetes passlib

or shorter

pip install -r requirements.txt

Run Playbook

To set up a Kind-Cluster with ArgoCD and Tekton:

ansible-playbook kind.yml

To tear it down afterwards:

ansible-playbook -e state=absent kind.yml

Port-Forward Argo and Tekton

kubectl port-forward svc/argocd-server 8443:443 -n argocd
kubectl port-forward svc/tekton-dashboard 9097:9097 -n tekton-pipelines