From 35ea5639f67f53bb17dea91700cb853e6bee03f2 Mon Sep 17 00:00:00 2001 From: Gerrit Date: Thu, 8 Sep 2022 13:35:49 +0200 Subject: [PATCH] Update Ansible, Helm and Google Cloud SDK. --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 594c6ad..151296e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,9 @@ FROM debian:11-slim -ENV VERSION_ANSIBLE=5.8.0 \ +ENV VERSION_ANSIBLE=6.3.0 \ VERSION_CT=0.9.0 \ - VERSION_HELM=3.9.0 \ - CLOUD_SDK_VERSION=388.0.0 + VERSION_HELM=3.9.4 \ + CLOUD_SDK_VERSION=401.0.0 ENV PATH /google-cloud-sdk/bin:$PATH @@ -43,7 +43,7 @@ RUN set -x \ && gcloud --version \ && curl -fsSL https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash -s -- --version "v${VERSION_HELM}" \ && python3 -m pip install --upgrade pip \ - && python3 -m pip install ansible==${VERSION_ANSIBLE} Jinja2==3.0.1 netaddr==0.8.0 humanfriendly==9.2 openshift==0.13.1 paramiko==2.11.0 \ + && python3 -m pip install ansible==${VERSION_ANSIBLE} Jinja2==3.0.1 netaddr==0.8.0 humanfriendly==9.2 kubernetes==24.2.0 paramiko==2.11.0 \ && curl -Lo ct https://github.com/coreos/container-linux-config-transpiler/releases/download/v${VERSION_CT}/ct-v${VERSION_CT}-x86_64-unknown-linux-gnu \ && chmod +x ct \ && mv ct /usr/local/bin/ \