From 379b7a81b294b8725968161d5a3e9ff927390262 Mon Sep 17 00:00:00 2001 From: dhruvmewada15 Date: Fri, 17 Jun 2022 18:43:46 +0530 Subject: [PATCH 1/2] Update hyperkube-base to 0.0.14 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 43d3f03..a72ab30 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,3 @@ -FROM rancher/hyperkube-base:v0.0.13 +FROM rancher/hyperkube-base:v0.0.14 COPY k8s-binaries/kube* /usr/local/bin/ From 266944ddc11c08434233fc12db7795473ec0a807 Mon Sep 17 00:00:00 2001 From: dhruvmewada15 Date: Fri, 17 Jun 2022 18:44:22 +0530 Subject: [PATCH 2/2] Add k8s 1.24.2 --- Dockerfile.windows | 2 +- Dockerfile.windows.20H2 | 2 +- Makefile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile.windows b/Dockerfile.windows index fb4cec7..17a88f4 100644 --- a/Dockerfile.windows +++ b/Dockerfile.windows @@ -10,7 +10,7 @@ RUN if (-not (Get-Command Expand-7Zip -ErrorAction Ignore)) { \ Exit 1; \ } \ } -ENV K8S_VERSION v1.24.1 +ENV K8S_VERSION v1.24.2 RUN $URL = ('https://dl.k8s.io/{0}/kubernetes-node-windows-amd64.tar.gz' -f $env:K8S_VERSION); \ \ function Expand-GZip ($inFile, $outFile) { \ diff --git a/Dockerfile.windows.20H2 b/Dockerfile.windows.20H2 index 4495245..7f46656 100644 --- a/Dockerfile.windows.20H2 +++ b/Dockerfile.windows.20H2 @@ -10,7 +10,7 @@ RUN if (-not (Get-Command Expand-7Zip -ErrorAction Ignore)) { \ Exit 1; \ } \ } -ENV K8S_VERSION v1.24.1 +ENV K8S_VERSION v1.24.2 RUN $URL = ('https://dl.k8s.io/{0}/kubernetes-node-windows-amd64.tar.gz' -f $env:K8S_VERSION); \ \ function Expand-GZip ($inFile, $outFile) { \ diff --git a/Makefile b/Makefile index bd18e7f..6bfbdb4 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -K8S_VERSION?=v1.24.1 +K8S_VERSION?=v1.24.2 ARCH?=amd64 ALL_ARCH=amd64 arm64