Skip to content

Commit

Permalink
Fixed download location
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholasdille authored and github-actions[bot] committed Sep 12, 2024
1 parent e7b826b commit 32600b0
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion tools/kube-controller-manager/Dockerfile.template
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ ARG name
ARG version
RUN <<EOF
curl --silent --show-error --location --fail --output "${prefix}/bin/kube-controller-manager" \
"https://storage.googleapis.com/kubernetes-release/release/v${version}/bin/linux/${alt_arch}/kube-controller-manager"
"https://dl.k8s.io/release/v${version}/bin/linux/${alt_arch}/kube-controller-manager"
chmod +x "${prefix}/bin/kube-controller-manager"

echo "Verifying keyless signature for kube-controller-manager"
Expand Down
2 changes: 1 addition & 1 deletion tools/kube-proxy/Dockerfile.template
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ ARG name
ARG version
RUN <<EOF
curl --silent --show-error --location --fail --output "${prefix}/bin/kube-proxy" \
"https://storage.googleapis.com/kubernetes-release/release/v${version}/bin/linux/${alt_arch}/kube-proxy"
"https://dl.k8s.io/release/v${version}/bin/linux/${alt_arch}/kube-proxy"
chmod +x "${prefix}/bin/kube-proxy"

echo "Verifying keyless signature for kube-proxy"
Expand Down
2 changes: 1 addition & 1 deletion tools/kube-scheduler/Dockerfile.template
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ ARG name
ARG version
RUN <<EOF
curl --silent --show-error --location --fail --output "${prefix}/bin/kube-scheduler" \
"https://storage.googleapis.com/kubernetes-release/release/v${version}/bin/linux/${alt_arch}/kube-scheduler"
"https://dl.k8s.io/release/v${version}/bin/linux/${alt_arch}/kube-scheduler"
chmod +x "${prefix}/bin/kube-scheduler"

echo "Verifying keyless signature for kube-scheduler"
Expand Down
2 changes: 1 addition & 1 deletion tools/kubeadm/Dockerfile.template
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ARG version
COPY kubelet.service.go-template /uniget_bootstrap/etc/systemd/system/
RUN <<EOF
curl --silent --show-error --location --fail --output "${prefix}/bin/kubeadm" \
"https://storage.googleapis.com/kubernetes-release/release/v${version}/bin/linux/${alt_arch}/kubeadm"
"https://dl.k8s.io/release/v${version}/bin/linux/${alt_arch}/kubeadm"
chmod +x "${prefix}/bin/kubeadm"

echo "Verifying keyless signature for kubeadm"
Expand Down
2 changes: 1 addition & 1 deletion tools/kubelet/Dockerfile.template
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ARG version
COPY kubelet.service.go-template /uniget_bootstrap/etc/systemd/system/
RUN <<EOF
curl --silent --show-error --location --fail --output "${prefix}/bin/kubelet" \
"https://storage.googleapis.com/kubernetes-release/release/v${version}/bin/linux/${alt_arch}/kubelet"
"https://dl.k8s.io/release/v${version}/bin/linux/${alt_arch}/kubelet"
chmod +x "${prefix}/bin/kubelet"

echo "Verifying keyless signature for kubelet"
Expand Down

0 comments on commit 32600b0

Please sign in to comment.