Skip to content

Commit

Permalink
Fix kubelet image
Browse files Browse the repository at this point in the history
  • Loading branch information
jknipper committed Sep 23, 2024
1 parent 47c7134 commit 3419fb7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions contrib/all/Dockerfile.kubelet
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ ARG KUBERNETES_VERSION
ARG CNI_PLUGINS_RELEASE
ARG ARCH

RUN wget https://storage.googleapis.com/kubernetes-release/release/$KUBERNETES_VERSION/bin/linux/amd64/kubelet && \
RUN wget https://dl.k8s.io/$KUBERNETES_VERSION/bin/linux/amd64/kubelet && \
chmod +x kubelet && \
wget https://storage.googleapis.com/kubernetes-release/release/$KUBERNETES_VERSION/bin/linux/amd64/kubectl && \
wget https://dl.k8s.io/$KUBERNETES_VERSION/bin/linux/amd64/kubectl && \
chmod +x kubectl && \
wget https://storage.googleapis.com/kubernetes-release/release/$KUBERNETES_VERSION/bin/linux/amd64/kubeadm && \
wget https://dl.k8s.io/$KUBERNETES_VERSION/bin/linux/amd64/kubeadm && \
chmod +x kubeadm
RUN mkdir -p cni-bin && \
wget -O- https://github.com/containernetworking/plugins/releases/download/${CNI_PLUGINS_RELEASE}/cni-plugins-linux-${ARCH}-${CNI_PLUGINS_RELEASE}.tgz | tar -xz -C cni-bin
Expand Down

0 comments on commit 3419fb7

Please sign in to comment.