Skip to content

Commit

Permalink
Merge pull request #22 from coveo/update-versions
Browse files Browse the repository at this point in the history
Update versions
  • Loading branch information
julienduchesne authored Aug 8, 2018
2 parents 692d5e2 + 9563c74 commit aabb54a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile.0.Base
Original file line number Diff line number Diff line change
Expand Up @@ -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 _
2 changes: 1 addition & 1 deletion Dockerfile.1
Original file line number Diff line number Diff line change
Expand Up @@ -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 _
2 changes: 1 addition & 1 deletion Dockerfile.2.AWS
Original file line number Diff line number Diff line change
Expand Up @@ -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 _
2 changes: 1 addition & 1 deletion Dockerfile.2.K8S
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit aabb54a

Please sign in to comment.