Kubernetes: Instalação do Kind e Tekton: Difference between revisions
m (Ebasso moved page Kubernetes: Instalação do Kind to Kubernetes: Instalação do Kind and Tekton) |
m (Ebasso moved page Kubernetes: Instalação do Kind and Tekton to Kubernetes: Instalação do Kind e Tekton without leaving a redirect) |
(No difference)
| |
Revision as of 20:27, 21 January 2026
Install Kind
# For Intel Macs [ $(uname -m) = x86_64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.31.0/kind-darwin-amd64 # For M1 / ARM Macs [ $(uname -m) = arm64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.31.0/kind-darwin-arm64 chmod +x ./kind mv ./kind /usr/local/bin/kind
Setup cluster
tekton_cluster="tekton-cluster" kind delete clusters "$tekton_cluster" kind create cluster --name "$tekton_cluster"
Check config
kubectl config use "kind-$tekton_cluster" kubectl config current-context