Answers for "copy local docker image to kind cluster"

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
0

kind insall

curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.8.1/kind-$(uname)-amd64
chmod +x ./kind
mv ./kind /some-dir-in-your-PATH/kind
Posted by: Guest on June-07-2020

Code answers related to "copy local docker image to kind cluster"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language