-
Notifications
You must be signed in to change notification settings - Fork 153
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from yamamoto-febc/init
Initial implements
- Loading branch information
Showing
3,252 changed files
with
1,009,807 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.env | ||
bin/ | ||
test/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
bin/ | ||
test/ | ||
/**/.terraform* | ||
/**/terraform.tfstate* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
language: go | ||
go: "1.10" | ||
|
||
install: | ||
- make tools | ||
|
||
script: | ||
- make test build-x |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
FROM golang:1.10 as builder | ||
LABEL maintainer="Kazumichi Yamamoto <[email protected]>" | ||
MAINTAINER Kazumichi Yamamoto <[email protected]> | ||
|
||
RUN apt-get update && apt-get -y install bash git make zip && apt-get clean && rm -rf /var/cache/apt/archives/* /var/lib/apt/lists/* | ||
|
||
RUN go get -u github.com/motemen/gobump/cmd/gobump | ||
|
||
ADD . /go/src/github.com/yamamoto-febc/terraform-provider-rke | ||
WORKDIR /go/src/github.com/yamamoto-febc/terraform-provider-rke | ||
RUN make build | ||
### | ||
|
||
FROM hashicorp/terraform:0.11.5 | ||
MAINTAINER Kazumichi Yamamoto <[email protected]> | ||
LABEL MAINTAINER 'Kazumichi Yamamoto <[email protected]>' | ||
|
||
RUN set -x && apk add --no-cache --update ca-certificates | ||
RUN mkdir -p /root/.terraform.d/plugins | ||
COPY --from=builder /go/src/github.com/yamamoto-febc/terraform-provider-rke/bin/* /root/.terraform.d/plugins/ |
Oops, something went wrong.