Answers for "kind delete cluster"

0

delete cluster kind

kind delete cluster --name kind-2
Posted by: Guest on August-17-2020
1

copy local docker image to kind cluster

### To load local image to cluster ###

docker build -t my-custom-image:unique-tag ./my-image-dir
kind load docker-image my-custom-image:unique-tag
kubectl apply -f my-manifest-using-my-image:unique-tag
Posted by: Guest on August-17-2020

Browse Popular Code Answers by Language