mirror of
https://github.com/outbackdingo/kubernetes.git
synced 2026-01-28 10:19:31 +00:00
This commit will fix the windows pause image build logic to be able to build from `windows-pause-image-base:<tag>@<digest>`, which currently only accepts `windows-pause-image-base:<tag>` due to which build is failing with `invalid reference format`. Ref: https://prow.k8s.io/view/gs/kubernetes-ci-logs/logs/post-kubernetes-push-image-pause/1889748429312102400 Discussion: https://kubernetes.slack.com/archives/CCK68P2Q2/p1742839354591189?thread_ts=1742832454.449449&cid=CCK68P2Q2 Updates the pause windows build logic to remove hardcoded values: OSVERSION ?= 1809 ltsc2022 And dynamically resolve the OSVERSIONS from `windows-pause-image-base` which separate manifests per os.version and corresponding digests. Signed-off-by: ArkaSaha30 <arkasaha30@gmail.com>