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
8 changes: 4 additions & 4 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.8
ARG PYTHON_VERSION=3.12.2
# Install Python with specified version
RUN mkdir /tmp/python_env/ && \
cd /tmp/python_env/ && \
Expand All @@ -51,9 +51,9 @@ RUN mkdir /tmp/python_env/ && \
cd / && \
rm -rf /tmp/python_env/

# Install pip for Python 3.11
# Install pip for Python 3.12
RUN curl -k https://bootstrap.pypa.io/get-pip.py -o get-pip.py && \
python3.11 get-pip.py && \
python3.12 get-pip.py && \
rm get-pip.py

# Install Ansible
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.25
ARG AWSCLI_VERSION=2.15.27
RUN mkdir /tmp/awscli_env/ && \
cd /tmp/awscli_env/ && \
wget "https://awscli.amazonaws.com/awscli-exe-linux-x86_64-${AWSCLI_VERSION}.zip" && \
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,12 +103,12 @@ Built on `ubuntu:22.04` base image

| Name | Version | Release |
| :-------- | :---------------------- | :------------------------------------------------------------------------------------------------- |
| Python | PYTHON_VERSION=3.11.8 | [Check](https://www.python.org/downloads/source/) |
| Python | PYTHON_VERSION=3.12.2 | [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.25 | [Check](https://raw.githubusercontent.com/aws/aws-cli/v2/CHANGELOG.rst) |
| AwsCLI | AWSCLI_VERSION=2.15.27 | [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
16 changes: 8 additions & 8 deletions toolkit_info.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"python3": "3.11.8",
"ansible": "2.16.4",
"terraform": "1.7.4",
"kubectl": "1.29.2",
"helm": "3.14.2",
"awscli": "2.15.25",
"azurecli": "2.58.0"
}
"python3": "3.12.2",
"ansible": "2.16.4",
"terraform": "1.7.4",
"kubectl": "1.29.2",
"helm": "3.14.2",
"awscli": "2.15.27",
"azurecli": "2.58.0"
}