Skip to content

Commit

Permalink
Upgrade terraform to 1.0.0 (#1368)
Browse files Browse the repository at this point in the history
Signed-off-by: Artiom Diomin <kron82@gmail.com>
  • Loading branch information
kron4eg authored Jun 10, 2021
1 parent dba75ae commit 997cec0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions hack/images/kubeone-e2e/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@

# building image

FROM golang:1.16.1 as builder
FROM golang:1.16.5 as builder

RUN apt-get update && apt-get install -y \
unzip \
upx-ucl

ENV TERRAFORM_VERSION "0.12.30"
ENV TERRAFORM_VERSION "1.0.0"
RUN curl -fL https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip | funzip >/usr/local/bin/terraform
RUN chmod +x /usr/local/bin/terraform

Expand All @@ -37,7 +37,7 @@ RUN /opt/install-kube-tests-binaries.sh

# resulting image

FROM golang:1.16.1
FROM golang:1.16.5

ARG version

Expand Down
2 changes: 1 addition & 1 deletion hack/images/kubeone-e2e/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

set -euox pipefail

TAG=v0.1.15
TAG=v0.1.16

docker build --build-arg version=${TAG} --pull -t kubermatic/kubeone-e2e:${TAG} .
docker push kubermatic/kubeone-e2e:${TAG}

0 comments on commit 997cec0

Please sign in to comment.