Merge pull request #125067 from neolit123/1.31-add-v-to-windows-pause

build/pause: add -v flag to the Windows pause binary. Add 3.10 changelog entry.
This commit is contained in:
Kubernetes Prow Robot 2024-05-23 08:16:05 -07:00 committed by GitHub
commit 5a121aad53
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 32 additions and 7 deletions

View File

@ -189,11 +189,14 @@ dependencies:
- path: build/common.sh
match: __default_go_runner_version=
- name: "registry.k8s.io/pause"
version: 3.9
refPaths:
- path: build/pause/Makefile
match: TAG\s*\?=
# TODO: enable once pause 3.10 is promoted
# https://github.com/kubernetes/kubernetes/issues/125092
#
# - name: "registry.k8s.io/pause"
# version: 3.10
# refPaths:
# - path: build/pause/Makefile
# match: TAG\s*\?=
- name: "registry.k8s.io/pause: dependents"
version: 3.9

View File

@ -1,3 +1,7 @@
# 3.10
* Add support for the -v flag on Windows. It prints the version similarly to Linux. ([#125067](https://github.com/kubernetes/kubernetes/pull/125067), [@neolit123](https://github.com/neolit123))
# 3.9
* Unsupported Windows Semi-Annual Channel container images removed (OS Versions removed: 20H2). ([#112924](https://github.com/kubernetes/kubernetes/pull/112924), [@marosset](https://github.com/marosset))

View File

@ -17,7 +17,7 @@
REGISTRY ?= staging-k8s.gcr.io
IMAGE = $(REGISTRY)/pause
TAG ?= 3.9
TAG ?= 3.10
REV = $(shell git describe --contains --always --match='v*')
# Architectures supported: amd64, arm, arm64, ppc64le and s390x

View File

@ -16,6 +16,14 @@ limitations under the License.
#include <windows.h>
#include <stdio.h>
#include <string.h>
#define STRINGIFY(x) #x
#define VERSION_STRING(x) STRINGIFY(x)
#ifndef VERSION
#define VERSION HEAD
#endif
BOOL WINAPI CtrlHandler(DWORD fdwCtrlType)
{
@ -34,8 +42,18 @@ BOOL WINAPI CtrlHandler(DWORD fdwCtrlType)
}
}
int main(void)
int main(int argc, char **argv)
{
int i;
for (i = 1; i < argc; ++i)
{
if (!_stricmp(argv[i], "-v"))
{
fprintf(stdout, "pause.c %s\n", VERSION_STRING(VERSION));
return 0;
}
}
if (SetConsoleCtrlHandler(CtrlHandler, TRUE))
{
Sleep(INFINITE);