From 165c8a4f446c16bdafd8acabd34cd3006bfdcab3 Mon Sep 17 00:00:00 2001 From: Tung Bui Date: Wed, 6 Mar 2024 21:41:10 +0700 Subject: [PATCH] core: update tool versions --- Dockerfile | 6 +++--- README.md | 6 +++--- scripts/check_version_in_toolkit.sh | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5106144..57487f3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -38,7 +38,7 @@ RUN apt-get install -y \ rm -rf /var/lib/apt/lists/* # Set Python version as an argument -ARG PYTHON_VERSION=3.11.3 +ARG PYTHON_VERSION=3.11.8 # Install Python with specified version RUN mkdir /tmp/python_env/ && \ cd /tmp/python_env/ && \ @@ -88,7 +88,7 @@ RUN mkdir /tmp/helm_env/ && \ rm helm-v${HELM_VERSION}-linux-amd64.tar.gz # Install AwsCLI -ARG AWSCLI_VERSION=2.15.24 +ARG AWSCLI_VERSION=2.15.25 RUN mkdir /tmp/awscli_env/ && \ cd /tmp/awscli_env/ && \ wget "https://awscli.amazonaws.com/awscli-exe-linux-x86_64-${AWSCLI_VERSION}.zip" && \ @@ -97,7 +97,7 @@ RUN mkdir /tmp/awscli_env/ && \ rm awscli-exe-linux-x86_64-${AWSCLI_VERSION}.zip # Install AzureCLI -ARG AZURECLI_VERSION=2.57.0 +ARG AZURECLI_VERSION=2.58.0 RUN mkdir -p /etc/apt/keyrings && \ curl -sLS https://packages.microsoft.com/keys/microsoft.asc | \ gpg --dearmor | \ diff --git a/README.md b/README.md index 5c9e129..a525b52 100644 --- a/README.md +++ b/README.md @@ -103,13 +103,13 @@ Built on `ubuntu:22.04` base image | Name | Version | Release | | :-------- | :---------------------- | :------------------------------------------------------------------------------------------------- | -| Python | PYTHON_VERSION=3.11.3 | [Check](https://www.python.org/downloads/source/) | +| Python | PYTHON_VERSION=3.11.8 | [Check](https://www.python.org/downloads/source/) | | Ansible | ANSIBLE_VERSION=2.16.4 | [Check](https://docs.ansible.com/ansible/latest/reference_appendices/release_and_maintenance.html) | | Terraform | TERRAFORM_VERSION=1.7.4 | [Check](https://releases.hashicorp.com/terraform/) | | Kubectl | KUBECTL_VERSION=1.29.2 | [Check](https://dl.k8s.io/release/stable.txt) | | Helm | HELM_VERSION=3.14.2 | [Check](https://github.com/helm/helm/releases) | -| AwsCLI | AWSCLI_VERSION=2.15.24 | [Check](https://raw.githubusercontent.com/aws/aws-cli/v2/CHANGELOG.rst) | -| AzureCLI | AZURECLI_VERSION=2.57.0 | [Check](https://learn.microsoft.com/en-us/cli/azure/release-notes-azure-cli) | +| AwsCLI | AWSCLI_VERSION=2.15.25 | [Check](https://raw.githubusercontent.com/aws/aws-cli/v2/CHANGELOG.rst) | +| AzureCLI | AZURECLI_VERSION=2.58.0 | [Check](https://learn.microsoft.com/en-us/cli/azure/release-notes-azure-cli) | And more tools to be implemented... diff --git a/scripts/check_version_in_toolkit.sh b/scripts/check_version_in_toolkit.sh index 66cd600..82923bd 100644 --- a/scripts/check_version_in_toolkit.sh +++ b/scripts/check_version_in_toolkit.sh @@ -4,13 +4,13 @@ image_name=$1 # Define the tools and their expected versions declare -A tools=( - [python3]="3.11.3" + [python3]="3.11.8" [ansible]="2.16.4" [terraform]="1.7.4" [kubectl]="1.29.2" [helm]="3.14.2" - [aws]="2.15.24" - [az]="2.57.0" + [aws]="2.15.25" + [az]="2.58.0" # Add more tools as needed )