Skip to content

Commit 0032348

Browse files
committed
Bump Terraform from 0.11.7 to 0.11.8
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)
1 parent 2457075 commit 0032348

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

WORKSPACE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
workspace(name = "installer")
22

3-
terrafom_version = "0.11.7"
3+
terrafom_version = "0.11.8"
44

55
supported_platforms = [
66
"linux",

hack/tf-fmt.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ if [ "$IS_CONTAINER" != "" ]; then
66
set -- -list -check -write=false
77
fi
88
set -x
9-
/terraform fmt "${@}"
9+
terraform fmt "${@}"
1010
else
1111
podman run --rm \
1212
--env IS_CONTAINER=TRUE \
1313
--volume "${PWD}:${PWD}:z" \
1414
--workdir "${PWD}" \
15-
quay.io/coreos/terraform-alpine:v0.11.7 \
15+
quay.io/coreos/terraform-alpine:v0.11.8 \
1616
./hack/tf-fmt.sh
1717
fi

images/tectonic-installer/Dockerfile.ci

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FROM openshift/origin-release:golang-1.10 as build
44
WORKDIR /go/src/github.com/openshift/installer
55
COPY . .
66
### Install Terraform
7-
ENV TERRAFORM_VERSION="0.11.1"
7+
ENV TERRAFORM_VERSION="0.11.8"
88
ARG TERRAFORM_URL=https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip
99

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

0 commit comments

Comments
 (0)