Skip to content

Commit

Permalink
Bump Terraform from 0.11.7 to 0.11.8
Browse files Browse the repository at this point in the history
0.11.8 was cut on 2018-08-15 [1,2].

Removing the leading slash is because with v0.11.8, terraform-alpine
is dropping the terraform binary into the PATH [3,4,5].

[1]: https://github.com/hashicorp/terraform/releases/tag/v0.11.8
[2]: https://releases.hashicorp.com/terraform/0.11.8/
[3]: sallyom/scripts-images#3
[4]: sallyom/scripts-images@7221114
[5]: #218 (comment)
  • Loading branch information
wking committed Sep 14, 2018
1 parent 2457075 commit 0032348
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion WORKSPACE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
workspace(name = "installer")

terrafom_version = "0.11.7"
terrafom_version = "0.11.8"

supported_platforms = [
"linux",
Expand Down
4 changes: 2 additions & 2 deletions hack/tf-fmt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ if [ "$IS_CONTAINER" != "" ]; then
set -- -list -check -write=false
fi
set -x
/terraform fmt "${@}"
terraform fmt "${@}"
else
podman run --rm \
--env IS_CONTAINER=TRUE \
--volume "${PWD}:${PWD}:z" \
--workdir "${PWD}" \
quay.io/coreos/terraform-alpine:v0.11.7 \
quay.io/coreos/terraform-alpine:v0.11.8 \
./hack/tf-fmt.sh
fi
2 changes: 1 addition & 1 deletion images/tectonic-installer/Dockerfile.ci
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM openshift/origin-release:golang-1.10 as build
WORKDIR /go/src/github.com/openshift/installer
COPY . .
### Install Terraform
ENV TERRAFORM_VERSION="0.11.1"
ENV TERRAFORM_VERSION="0.11.8"
ARG TERRAFORM_URL=https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip

RUN go build -o ./installer/tectonic ./installer/cmd/tectonic && \
Expand Down

0 comments on commit 0032348

Please sign in to comment.