File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
images/tectonic-installer Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
workspace (name = "installer" )
2
2
3
- terrafom_version = "0.11.7 "
3
+ terrafom_version = "0.11.8 "
4
4
5
5
supported_platforms = [
6
6
"linux" ,
Original file line number Diff line number Diff line change @@ -6,12 +6,12 @@ if [ "$IS_CONTAINER" != "" ]; then
6
6
set -- -list -check -write=false
7
7
fi
8
8
set -x
9
- /terraform fmt " ${@ } "
9
+ /terraform fmt " ${@ } " # FIXME: drop this slash after we update openshift/release
10
10
else
11
11
podman run --rm \
12
12
--env IS_CONTAINER=TRUE \
13
13
--volume " ${PWD} :${PWD} :z" \
14
14
--workdir " ${PWD} " \
15
- quay.io/coreos/terraform-alpine:v0.11.7 \
15
+ quay.io/coreos/terraform-alpine:v0.11.8 \
16
16
./hack/tf-fmt.sh
17
17
fi
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ FROM openshift/origin-release:golang-1.10 as build
4
4
WORKDIR /go/src/github.com/openshift/installer
5
5
COPY . .
6
6
### Install Terraform
7
- ENV TERRAFORM_VERSION="0.11.1 "
7
+ ENV TERRAFORM_VERSION="0.11.8 "
8
8
ARG TERRAFORM_URL=https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip
9
9
10
10
RUN go build -o ./installer/tectonic ./installer/cmd/tectonic && \
You can’t perform that action at this time.
0 commit comments