Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

images: Use crane for pushing release images instead of docker #3494

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Apr 19, 2024

  1. 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).
    claudiubelu committed Apr 19, 2024
    Copy the full SHA
    d04801a View commit details
    Browse the repository at this point in the history