Browse Source

Merge 0c1cc69191 into 3980e3d678

pull/53/merge
Joachim Hill-Grannec 8 years ago
committed by GitHub
parent
commit
234eb246b7
  1. 105
      .drone.yml
  2. 28
      Dockerfile
  3. 23
      Dockerfile.arm
  4. 23
      Dockerfile.arm64
  5. 13
      Dockerfile.windows
  6. 46
      MAINTAINERS
  7. 34
      Makefile
  8. 6
      README.md

105
.drone.yml

@ -1,12 +1,109 @@
workspace: workspace:
base: /go base: /go
path: src/github.com/drone-plugins/drone-terraform path: src/github.com/${DRONE_REPO}
pipeline: pipeline:
test: test:
image: golang:1.8 image: golang:1.9
pull: true
commands:
- go vet
- go test -cover -coverprofile=coverage.out
build_linux_amd64:
image: golang:1.9
pull: true
group: build
environment: environment:
- GOOS=linux
- GOARCH=amd64
- CGO_ENABLED=0 - CGO_ENABLED=0
commands: commands:
- go test -cover -coverprofile=coverage.out - go build -v -ldflags "-X main.revision=$(git rev-parse HEAD)" -a -o release/linux/amd64/${DRONE_REPO_NAME}
- go build -ldflags "-s -w -X main.revision=$(git rev-parse HEAD)" -a
# build_linux_arm64:
# image: golang:1.9
# pull: true
# group: build
# environment:
# - GOOS=linux
# - GOARCH=arm64
# - CGO_ENABLED=0
# commands:
# - go build -v -ldflags "-X main.revision=$(git rev-parse HEAD)" -a -o release/linux/arm64/${DRONE_REPO_NAME}
build_linux_arm:
image: golang:1.9
pull: true
group: build
environment:
- GOOS=linux
- GOARCH=arm
- CGO_ENABLED=0
- GOARM=7
commands:
- go build -v -ldflags "-X main.revision=$(git rev-parse HEAD)" -a -o release/linux/arm/${DRONE_REPO_NAME}
# build_windows_amd64:
# image: golang:1.9-nanoserver
# pull: true
# group: build
# environment:
# - GOOS=windows
# - GOARCH=amd64
# - CGO_ENABLED=0
# commands:
# - go build -v -ldflags "-X main.build=${DRONE_BUILD_NUMBER}" -a -o release/windows/amd64/${DRONE_REPO_NAME}
# publish_linux_amd64:
# image: plugins/docker:17.05
# pull: true
# repo: ${DRONE_REPO}
# tags: [ latest, 1.0.0, 1.0, 1 ]
# secrets: [ docker_username, docker_password ]
# dockerfile: Dockerfile
# when:
# branch: master
# event: push
# publish_linux_arm64:
# image: plugins/docker:17.05
# pull: true
# repo: ${DRONE_REPO}
# tags: [ linux-arm64 ]
# secrets: [ docker_username, docker_password ]
# dockerfile: Dockerfile.arm64
# when:
# branch: master
# event: push
#
# publish_linux_arm:
# image: plugins/docker:17.05
# pull: true
# repo: ${DRONE_REPO}
# tags: [ linux-arm ]
# secrets: [ docker_username, docker_password ]
# dockerfile: Dockerfile.arm
# when:
# branch: master
# event: push
# publish_windows_amd64:
# image: plugins/docker:17.05
# pull: true
# repo: ${DRONE_REPO}
# tags: [ windows-amd64 ]
# secrets: [ docker_username, docker_password ]
# dockerfile: Dockerfile.windows
# when:
# branch: master
# event: push
# microbadger:
# image: plugins/webhook:1
# pull: true
# secrets: [ webhook_url ]
# when:
# branch: master
# event: push
# status: [ success ]

28
Dockerfile

@ -1,19 +1,27 @@
# Docker image for the Drone Terraform plugin # Docker image for the Drone Terraform plugin
# #
# docker build --rm=true -t jmccann/drone-terraform:latest . # docker build --rm=true -t jmccann/drone-terraform:latest .
FROM alpine:3.6 as alpine
RUN apk add -U --no-cache ca-certificates git wget
FROM alpine:3.4 ENV TERRAFORM_VERSION 0.10.3
RUN apk -U add \
ca-certificates \
git \
wget && \
rm -rf /var/cache/apk/*
ENV TERRAFORM_VERSION 0.9.11
RUN wget -q https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip -O terraform.zip && \ RUN wget -q https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip -O terraform.zip && \
unzip terraform.zip -d /bin && \ unzip terraform.zip -d /bin && \
rm -f terraform.zip rm -f terraform.zip
ADD drone-terraform /bin/ #TODO: need to add rm to scratch
#FROM scratch
ENV GODEBUG=netdns=go
#COPY --from=alpine /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
#COPY --from=alpine /bin/terraform /bin/terraform
LABEL org.label-schema.version=latest
LABEL org.label-schema.vcs-url="https://github.com/jmccann/drone-terraform.git"
LABEL org.label-schema.name="Drone Terraform"
LABEL org.label-schema.vendor="jmccann"
ADD release/linux/amd64/drone-terraform /bin/
ENTRYPOINT ["/bin/drone-terraform"] ENTRYPOINT ["/bin/drone-terraform"]

23
Dockerfile.arm

@ -0,0 +1,23 @@
FROM alpine:3.6 as alpine
RUN apk add -U --no-cache ca-certificates git wget
ENV TERRAFORM_VERSION 0.10.3
RUN wget -q https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_arm.zip -O terraform.zip && \
unzip terraform.zip -d /bin && \
rm -f terraform.zip
#TODO: need to add rm to scratch
#FROM scratch
ENV GODEBUG=netdns=go
#COPY --from=alpine /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
#COPY --from=alpine /bin/terraform /bin/terraform
LABEL org.label-schema.version=latest
LABEL org.label-schema.vcs-url="https://github.com/jmccann/drone-terraform.git"
LABEL org.label-schema.name="Drone Terraform"
LABEL org.label-schema.vendor="jmccann"
ADD release/linux/arm/drone-terraform /bin/
ENTRYPOINT ["/bin/drone-terraform"]

23
Dockerfile.arm64

@ -0,0 +1,23 @@
FROM alpine:3.6 as alpine
RUN apk add -U --no-cache ca-certificates git wget
ENV TERRAFORM_VERSION 0.10.3
RUN wget -q https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_arm.zip -O terraform.zip && \
unzip terraform.zip -d /bin && \
rm -f terraform.zip
#TODO: need to add rm to scratch
#FROM scratch
ENV GODEBUG=netdns=go
#COPY --from=alpine /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
#COPY --from=alpine /bin/terraform /bin/terraform
LABEL org.label-schema.version=latest
LABEL org.label-schema.vcs-url="https://github.com/jmccann/drone-terraform.git"
LABEL org.label-schema.name="Drone Terraform"
LABEL org.label-schema.vendor="jmccann"
ADD release/linux/arm64/drone-terraform /bin/
ENTRYPOINT ["/bin/drone-terraform"]

13
Dockerfile.windows

@ -0,0 +1,13 @@
FROM microsoft/nanoserver:latest
ENV GODEBUG=netdns=go
ENV TERRAFORM_VERSION 0.10.3
LABEL org.label-schema.version=latest
LABEL org.label-schema.vcs-url="https://github.com/jmccann/drone-terraform.git"
LABEL org.label-schema.name="Drone Terraform"
LABEL org.label-schema.vendor="jmccann"
ADD release/windows/amd64/drone-terraform /bin/
ENTRYPOINT [ "/bin/drone-terraform" ]

46
MAINTAINERS

@ -1,46 +0,0 @@
[people]
[people.bradrydzewski]
name = "Brad Rydzewski"
email = "brad@drone.io"
login = "bradrydzewski"
[people.Bugagazavr]
name = "Kirill"
email = ""
login = "Bugagazavr"
[people.donny-dont]
name = "Don Olmstead"
email = "donny-dont@gmail.com"
login = "donny-dont"
[people.jackspirou]
name = "Jack Spirou"
email = ""
login = "jackspirou"
[people.msteinert]
name = "Mike Steinert"
email = ""
login = "msteinert"
[people.nlf]
name = "Nathan LaFreniere"
email = ""
login = "nlf"
[people.tboerger]
name = "Thomas Boerger"
email = "thomas@webhippie.de"
login = "tboerger"
[people.athieriot]
name = "Aurélien Thieriot"
email = "a.thieriot@gmail.com"
login = "athieriot"
[org]
[org.core]
people = [
"bradrydzewski",
"Bugagazavr",
"donny-dont",
"jackspirou",
"msteinert",
"nlf",
"tboerger",
"athieriot"
]

34
Makefile

@ -1,34 +0,0 @@
.PHONY: all clean deps fmt vet test docker
EXECUTABLE ?= drone-terraform
IMAGE ?= plugins/$(EXECUTABLE)
COMMIT ?= $(shell git rev-parse --short HEAD)
LDFLAGS = -X "main.buildCommit=$(COMMIT)"
PACKAGES = $(shell go list ./... | grep -v /vendor/)
all: deps build test
clean:
go clean -i ./...
deps:
go get -t ./...
fmt:
go fmt $(PACKAGES)
vet:
go vet $(PACKAGES)
test:
@for PKG in $(PACKAGES); do go test -cover -coverprofile $$GOPATH/src/$$PKG/coverage.out $$PKG || exit 1; done;
docker:
GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -ldflags '-s -w $(LDFLAGS)'
docker build --rm -t $(IMAGE) .
$(EXECUTABLE): $(wildcard *.go)
go build -ldflags '-s -w $(LDFLAGS)'
build: $(EXECUTABLE)

6
README.md

@ -1,6 +1,10 @@
# drone-terraform # drone-terraform
[![Build Status](http://beta.drone.io/api/badges/jmccann/drone-terraform/status.svg)](http://beta.drone.io/jmccann/drone-terraform) [![Build Status](http://beta.drone.io/api/badges/jmccann/drone-terraform/status.svg)](http://beta.drone.io/jmccann/drone-terraform)
[![Join the chat at https://gitter.im/drone/drone](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/drone/drone)
[![Go Doc](https://godoc.org/github.com/jmccann/drone-terraform?status.svg)](http://godoc.org/github.com/jmccann/drone-terraform)
[![Go Report](https://goreportcard.com/badge/github.com/jmccann/drone-terraform)](https://goreportcard.com/report/github.com/jmccann/drone-terraform)
[![](https://images.microbadger.com/badges/image/jmccann/drone-terraform.svg)](https://microbadger.com/images/jmccann/drone-terraform "Get your own image badge on microbadger.com")
Drone plugin to execute Terraform plan and apply. For the usage information and Drone plugin to execute Terraform plan and apply. For the usage information and
a listing of the available options please take a look at [the docs](DOCS.md). a listing of the available options please take a look at [the docs](DOCS.md).
@ -19,7 +23,7 @@ go test
Build the docker image with the following commands: Build the docker image with the following commands:
``` ```
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -tags netgo CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -tags netgo -o release/linux/amd64/drone-terraform
docker build --rm=true -t jmccann/drone-terraform . docker build --rm=true -t jmccann/drone-terraform .
``` ```

Loading…
Cancel
Save