From 9563c7489cc29cb4d7bd86688998bc610c514c40 Mon Sep 17 00:00:00 2001 From: Julien Duchesne Date: Wed, 8 Aug 2018 09:32:24 -0400 Subject: [PATCH] Update versions --- Dockerfile.0.Base | 2 +- Dockerfile.1 | 2 +- Dockerfile.2.AWS | 2 +- Dockerfile.2.K8S | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile.0.Base b/Dockerfile.0.Base index aff67389..a63ce9f7 100644 --- a/Dockerfile.0.Base +++ b/Dockerfile.0.Base @@ -19,6 +19,6 @@ RUN apk update && \ # Update version here (do not move at the beginning of the file since it would slow down the docker build) RUN TERRAFORM=0.11.7 && curl -sLo_ https://releases.hashicorp.com/terraform/${TERRAFORM}/terraform_${TERRAFORM}_linux_amd64.zip && unzip -p _ > ${EXE_FOLDER}/terraform && \ - TG=1.1.0 && curl -sLo_ https://github.com/coveo/terragrunt/releases/download/v${TG}/terragrunt_${TG}${EXT} && unzip -p _ > ${EXE_FOLDER}/terragrunt && \ + TG=1.1.1 && curl -sLo_ https://github.com/coveo/terragrunt/releases/download/v${TG}/terragrunt_${TG}${EXT} && unzip -p _ > ${EXE_FOLDER}/terragrunt && \ GOTEMPLATE=2.5.2 && curl -sLo_ https://github.com/coveo/gotemplate/releases/download/v${GOTEMPLATE}/gotemplate_${GOTEMPLATE}${EXT} && unzip -p _ > ${EXE_FOLDER}/gotemplate && \ chmod +x $EXE_FOLDER/* && rm _ diff --git a/Dockerfile.1 b/Dockerfile.1 index 6c49e532..54d8ed2f 100644 --- a/Dockerfile.1 +++ b/Dockerfile.1 @@ -19,7 +19,7 @@ RUN apk add py2-pip python3 groff less tree && \ apk add jq zip nano vim git mercurial # Update version here (do not move at the beginning of the file since it would slow down the docker build) -RUN TF_LINT=0.7.0 && curl -sLo_ https://github.com/wata727/tflint/releases/download/v${TF_LINT}/tflint_linux_amd64.zip && unzip -p _ > ${EXE_FOLDER}/tflint && \ +RUN TF_LINT=0.7.1 && curl -sLo_ https://github.com/wata727/tflint/releases/download/v${TF_LINT}/tflint_linux_amd64.zip && unzip -p _ > ${EXE_FOLDER}/tflint && \ TF_DOC=0.3.1 && curl -sLo_ https://github.com/coveo/terraform-docs/releases/download/v${TF_DOC}/terraform-docs_${TF_DOC}${EXT} && unzip -p _ > ${EXE_FOLDER}/terraform-docs && \ TF_QUANTUM=0.4.0 && curl -sLo_ https://github.com/coveo/terraform-provider-quantum/releases/download/v${TF_QUANTUM}/terraform-provider-quantum_${TF_QUANTUM}${EXT} && unzip -p _ > ${EXE_FOLDER}/terraform-provider-quantum && \ chmod +x $EXE_FOLDER/* && rm _ diff --git a/Dockerfile.2.AWS b/Dockerfile.2.AWS index 5b53881f..d3470025 100644 --- a/Dockerfile.2.AWS +++ b/Dockerfile.2.AWS @@ -9,5 +9,5 @@ LABEL maintainer "jgiroux@coveo.com" ENV TGF_IMAGE_TAG="aws" # Update version here (do not move at the beginning of the file since it would slow down the docker build) -RUN TF_AWS=1.27.0-coveo.1 && curl -sLo_ https://github.com/coveo/terraform-provider-aws/releases/download/v${TF_AWS}/terraform-provider-aws_${TF_AWS}${EXT} && unzip -p _ > ${EXE_FOLDER}/terraform-provider-aws && \ +RUN TF_AWS=1.30.0-coveo.0 && curl -sLo_ https://github.com/coveo/terraform-provider-aws/releases/download/v${TF_AWS}/terraform-provider-aws_${TF_AWS}${EXT} && unzip -p _ > ${EXE_FOLDER}/terraform-provider-aws && \ chmod +x $EXE_FOLDER/* && rm _ diff --git a/Dockerfile.2.K8S b/Dockerfile.2.K8S index 7dd4dfea..e87894aa 100644 --- a/Dockerfile.2.K8S +++ b/Dockerfile.2.K8S @@ -12,7 +12,7 @@ RUN apk add openssh git # Install kubectl ENV KUBECONFIG=/home/tgf/.kube/config -RUN KUBE_VERSION=1.10.5 && curl -sLo_ https://storage.googleapis.com/kubernetes-release/release/v${KUBE_VERSION}/bin/linux/amd64/kubectl && mv _ ${EXE_FOLDER}/kubectl && \ +RUN KUBE_VERSION=1.10.6 && curl -sLo_ https://storage.googleapis.com/kubernetes-release/release/v${KUBE_VERSION}/bin/linux/amd64/kubectl && mv _ ${EXE_FOLDER}/kubectl && \ mkdir -p /home/tgf/.kube && touch ${KUBECONFIG} && chmod 666 ${KUBECONFIG} # Install helm (git is also required by helm)