How to deploy container to local kubernetes environment such as kind? How to deploy container to local kubernetes environment such as kind? kubernetes kubernetes

How to deploy container to local kubernetes environment such as kind?


Providing an answer based on @David Maze comment.

There's a note in the kind documentation that specifying image: myapp with an implicit ...:latest tag will cause the cluster to try to pull the image again, so you either need a per-build tag (preferred) or to explicitly specify imagePullPolicy: Never

enter image description here