-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Kevin Lefevre <[email protected]>
- Loading branch information
1 parent
244eefa
commit e1b2577
Showing
3 changed files
with
64 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
FROM alpine:3.10 | ||
|
||
ENV BINDIR /usr/local/bin | ||
ENV TF_PLUGIN_CACHE_DIR=$HOME/.terraform.d/plugin-cache | ||
ARG TERRAFORM_VERSION=0.12.17 | ||
ARG HELM_VERSION=v2.16.1 | ||
ARG TERRAGRUNT_VERSION=v0.21.6 | ||
ARG KUBECTL_VERSION=v1.14.8 | ||
ARG AWS_IAM_AUTHENTICATOR_VERSION=0.4.0 | ||
|
||
COPY --from=terraform-bundler-build /go/terraform-bundle/* $TF_PLUGIN_CACHE_DIR/ | ||
|
||
RUN apk add -U unzip \ | ||
tar \ | ||
curl \ | ||
wget \ | ||
ca-certificates \ | ||
py3-pip \ | ||
sed \ | ||
findutils \ | ||
git \ | ||
bash \ | ||
&& rm -rf /var/cache/apk/* | ||
|
||
RUN pip3 install -U pip \ | ||
&& pip3 install -U awscli \ | ||
&& aws --version | ||
|
||
RUN curl -sSL \ | ||
-o terraform.zip \ | ||
"https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip" \ | ||
&& unzip terraform.zip -d $BINDIR \ | ||
&& chmod +x $BINDIR/terraform \ | ||
&& rm -f terraform.zip \ | ||
&& terraform version | ||
|
||
RUN curl -L https://github.com/gruntwork-io/terragrunt/releases/download/${TERRAGRUNT_VERSION}/terragrunt_linux_amd64 -o $BINDIR/terragrunt \ | ||
&& chmod +x $BINDIR/terragrunt \ | ||
&& terragrunt --version | ||
|
||
RUN wget -qO- "https://storage.googleapis.com/kubernetes-helm/helm-${HELM_VERSION}-linux-amd64.tar.gz" | \ | ||
tar xvz --strip-components=1 -C $BINDIR \ | ||
&& chmod +x $BINDIR/helm \ | ||
&& helm version --client | ||
|
||
RUN curl -L https://storage.googleapis.com/kubernetes-release/release/${KUBECTL_VERSION}/bin/linux/amd64/kubectl -o $BINDIR/kubectl \ | ||
&& chmod +x $BINDIR/kubectl \ | ||
&& kubectl version --client | ||
|
||
RUN curl -L https://github.com/kubernetes-sigs/aws-iam-authenticator/releases/download/v${AWS_IAM_AUTHENTICATOR_VERSION}/aws-iam-authenticator_${AWS_IAM_AUTHENTICATOR_VERSION}_linux_amd64 -o $BINDIR/aws-iam-authenticator \ | ||
&& chmod +x $BINDIR/aws-iam-authenticator \ | ||
&& aws-iam-authenticator version | ||
|
||
COPY . /infra | ||
|
||
WORKDIR /infra/terraform |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
# Linux | ||
https://releases.hashicorp.com/terraform/0.11.14/terraform_0.11.14_linux_amd64.zip | ||
https://github.com/gruntwork-io/terragrunt/releases/download/v0.18.7/terragrunt_linux_amd64 | ||
https://storage.googleapis.com/kubernetes-release/release/v1.12.7/bin/linux/amd64/kubectl | ||
https://get.helm.sh/helm-v2.14.1-linux-amd64.tar.gz | ||
https://releases.hashicorp.com/terraform/0.11.14/terraform_0.12.17_linux_amd64.zip | ||
https://github.com/gruntwork-io/terragrunt/releases/download/v0.21.6/terragrunt_linux_amd64 | ||
https://storage.googleapis.com/kubernetes-release/release/v1.14.8/bin/linux/amd64/kubectl | ||
https://get.helm.sh/helm-v2.16.1-linux-amd64.tar.gz | ||
https://github.com/kubernetes-sigs/aws-iam-authenticator/releases/download/v0.4.0/aws-iam-authenticator_0.4.0_linux_amd64 | ||
|
||
# Darwin | ||
https://releases.hashicorp.com/terraform/0.11.14/terraform_0.11.14_darwin_amd64.zip | ||
https://github.com/gruntwork-io/terragrunt/releases/download/v0.18.7/terragrunt_darwin_amd64 | ||
https://storage.googleapis.com/kubernetes-release/release/v1.12.7/bin/darwin/amd64/kubectl | ||
https://get.helm.sh/helm-v2.14.1-darwin-amd64.tar.gz | ||
https://releases.hashicorp.com/terraform/0.11.14/terraform_0.12.17_darwin_amd64.zip | ||
https://github.com/gruntwork-io/terragrunt/releases/download/v0.21.6/terragrunt_darwin_amd64 | ||
https://storage.googleapis.com/kubernetes-release/release/v1.14.8/bin/darwin/amd64/kubectl | ||
https://get.helm.sh/helm-v2.16.1-darwin-amd64.tar.gz | ||
https://github.com/kubernetes-sigs/aws-iam-authenticator/releases/download/v0.4.0/aws-iam-authenticator_0.4.0_darwin_amd64 |