Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
images: Use crane for pushing release images instead of docker
Currently, we're loading the images into docker, retagging them, and then push them onto the registry. This workflow is incompatible with Windows images, as docker load does not work for them, resulting in the following error: cannot load windows image on linux However, crane does not load the image, it just pushes it directly with the given tag. This will allow us to push any Windows image we might have (e.g.: Windows kube-proxy image).
- Loading branch information