Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ RUN curl -L "https://download.docker.com/linux/static/stable/$(uname -m)/docker-

# https://github.com/aws/aws-cli/tags
# renovate: datasource=github-tags depName=aws-cli packageName=aws/aws-cli
ENV AWS_CLI_VERSION=2.34.6
ENV AWS_CLI_VERSION=2.34.14
RUN curl -lo awscliv2.zip "https://awscli.amazonaws.com/awscli-exe-linux-$(uname -m)-${AWS_CLI_VERSION}.zip" && \
unzip -q awscliv2.zip && \
./aws/install && \
Expand All @@ -85,14 +85,14 @@ RUN curl -Lo /usr/local/bin/yq "https://github.com/mikefarah/yq/releases/downloa

# https://kubernetes.io/docs/tasks/tools/install-kubectl-linux/
# renovate: datasource=github-releases depName=kubectl packageName=kubernetes/kubernetes
ENV KUBECTL_VERSION=v1.35.2
ENV KUBECTL_VERSION=v1.35.3
RUN curl -Lo /usr/local/bin/kubectl "https://dl.k8s.io/release/$KUBECTL_VERSION/bin/linux/$TARGETARCH/kubectl" && \
chmod +x /usr/local/bin/kubectl && \
kubectl version --client=true

# https://github.com/helm/helm/releases
# renovate: datasource=github-releases depName=helm packageName=helm/helm
ENV HELM_VERSION=v4.1.1
ENV HELM_VERSION=v4.1.3
RUN curl -L "https://get.helm.sh/helm-$HELM_VERSION-linux-$TARGETARCH.tar.gz" \
| tar -zxvf - --strip-components=1 -C /usr/local/bin linux-$TARGETARCH/helm && \
chmod +x /usr/local/bin/helm && \
Expand Down