Skip to content
Merged
Show file tree
Hide file tree
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 @@ -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/ && \
Expand Down Expand Up @@ -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" && \
Expand All @@ -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 | \
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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...

Expand Down
6 changes: 3 additions & 3 deletions scripts/check_version_in_toolkit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
)

Expand Down