Skip to content

Commit

Permalink
feat: update kubelet to 1.22.7
Browse files Browse the repository at this point in the history
Also update base image to bullseye.

Signed-off-by: Andrey Smirnov <andrey.smirnov@talos-systems.com>
  • Loading branch information
smira committed Feb 17, 2022
1 parent 5de7e3b commit f65410c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,13 @@ RUN wget -q -O /kubelet ${KUBELET_URL} \
ARG TARGETARCH
FROM builder-${TARGETARCH} as builder

FROM us.gcr.io/k8s-artifacts-prod/build-image/debian-iptables:buster-v1.7.0 as container
FROM us.gcr.io/k8s-artifacts-prod/build-image/debian-iptables:bullseye-v1.2.0 as container

RUN clean-install \
--allow-change-held-packages \
bash \
ca-certificates \
libcap2 \
wget \
gnupg \
cifs-utils \
Expand All @@ -49,7 +51,7 @@ RUN clean-install \
util-linux

RUN wget -q -O- 'https://download.ceph.com/keys/release.asc' | apt-key add -
RUN echo deb https://download.ceph.com/debian-octopus/ buster main | tee /etc/apt/sources.list.d/ceph.list
RUN echo deb https://download.ceph.com/debian-octopus/ bullseye main | tee /etc/apt/sources.list.d/ceph.list
RUN apt-get clean \
&& clean-install ceph-common

Expand Down
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ TAG ?= $(shell git describe --tag --always --dirty)
BRANCH ?= $(shell git rev-parse --abbrev-ref HEAD)
REGISTRY_AND_USERNAME := $(REGISTRY)/$(USERNAME)
NAME := kubelet
KUBELET_VER := v1.21.10
KUBELET_SHA512_AMD64 := ee16a40f5982fe459c919d396f7b407e358394cb27836cba8545a5841b3dcedf02ed4da45207b8e311a0707defe977bdcebbed130c7fefc6dd770ec3afd68718
KUBELET_SHA512_ARM64 := 029e81f48efa98cbb35835c208540acd662fa16dabea687aff3d25208d7bfa77500d97ed0a756f926f06b989f22971e91baf124d1df330eab9dee90448192752
KUBELET_VER := v1.22.7
KUBELET_SHA512_AMD64 := 69c1953ecf40e7c171bc918b99fb0379d25bdcea5b88124c088a875c5d343b94b4064457542bc530de1203ef041808cf3b7e4155f777fdc10a462df65848543e
KUBELET_SHA512_ARM64 := 62a91ee9b915cb5cc8270b75c3f3fbfdf3fbed71dc422d1d49cbf9f83a5886f327390facdfb3e1c62cd286f56d438101eb6e8101b6b6611dda56647340f013a3

BUILD := docker buildx build
PLATFORM ?= linux/amd64,linux/arm64
Expand Down

0 comments on commit f65410c

Please sign in to comment.