Skip to content

Update all component versions for Kubernetes v1.30 #6

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 16, 2024
Merged
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
22 changes: 14 additions & 8 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM ubuntu:20.04
FROM ubuntu:24.04

ARG EKSCTL_VER=v0.82.0
ARG HELM_VER=v3.8.0
ARG KUBECTL_VER=v1.21.9
ARG KUBENT_VER=0.5.0
ARG TERRAFORM_VER=1.1.5
ARG EKSCTL_VER=v0.190.0
ARG HELM_VER=v3.16.1
ARG KUBECTL_VER=v1.30.4
ARG KUBENT_VER=0.7.3
ARG TERRAFORM_VER=1.9.5

ENV DEBIAN_FRONTEND=noninteractive
# ENV TZ=America/New_York
Expand All @@ -25,31 +25,37 @@ RUN apt update && apt install -y \
&& rm -rf /var/lib/apt/lists/*

# aws-cli2
# https://docs.aws.amazon.com/cli/latest/userguide/getting-started-install.html#cliv2-linux-install
RUN curl -sL "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o awscliv2.zip \
&& unzip -q awscliv2.zip \
&& aws/install \
&& rm -rf aws awscliv2.zip

# eksctl
RUN curl -sL "https://github.com/weaveworks/eksctl/releases/download/${EKSCTL_VER}/eksctl_$(uname -s)_amd64.tar.gz" | tar xz \
# https://github.com/eksctl-io/eksctl/releases
RUN curl -sL "https://github.com/eksctl-io/eksctl/releases/download/${EKSCTL_VER}/eksctl_Linux_amd64.tar.gz" | tar xz \
&& mv eksctl /usr/local/bin

# helm3
# https://github.com/helm/helm/releases
RUN curl -sL "https://get.helm.sh/helm-${HELM_VER}-linux-amd64.tar.gz" | tar xz \
&& mv linux-amd64/helm /usr/local/bin \
&& rm -rf linux-amd64

# kubectl
RUN curl -sLO "https://dl.k8s.io/release/${KUBECTL_VER}/bin/linux/amd64/kubectl" \
# https://www.downloadkubernetes.com/
RUN curl -sLO "https://dl.k8s.io/${KUBECTL_VER}/bin/linux/amd64/kubectl" \
&& chmod +x kubectl \
&& mv kubectl /usr/local/bin

# kubent
# https://github.com/doitintl/kube-no-trouble/releases
RUN curl -sL "https://github.com/doitintl/kube-no-trouble/releases/download/${KUBENT_VER}/kubent-${KUBENT_VER}-linux-amd64.tar.gz" | tar xz \
&& chmod +x kubent \
&& mv kubent /usr/local/bin

# terraform
# https://developer.hashicorp.com/terraform/install#linux
RUN curl -sL "https://releases.hashicorp.com/terraform/${TERRAFORM_VER}/terraform_${TERRAFORM_VER}_linux_amd64.zip" -o terraform.zip \
&& unzip -q terraform.zip \
&& mv terraform /usr/local/bin \
Expand Down
Loading