This is a simple exercise to deploy a simple cluster to kind using terraform
create cluster
terraform apply -target=kind_cluster.default -auto-approve && \
terraform apply -auto-approve
destroy clusters
terraform destroy -auto-approve
rebuild cluster
terraform destroy -auto-approve && \
terraform apply -target=kind_cluster.default -auto-approve && \
terraform apply -auto-approve
access via
http://localhost:30201
describe nodes
kubectl describe nodes --namespace ingresss-nginx
describe nginx pod
kubectl describe pod/ingress-nginx-controller-6b646767fb-gpdjx --namespace
ingress-nginx