-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is the initial contribution to the Open Source Gardener project. The following SAP developers contributed to this project until this initial contribution was published as open source: $ git shortlog -sn 23 Martin Weindel
- Loading branch information
0 parents
commit b004991
Showing
2,550 changed files
with
955,046 additions
and
0 deletions.
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,8 @@ | ||
bin/ | ||
.idea/ | ||
*.sw[pq] | ||
tmp/ | ||
/local/ | ||
/cmd/cert-controller-manager/cert-controller-manager | ||
/cert-controller-manager | ||
.vscode/ |
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 @@ | ||
# cert-management maintainers | ||
* @MartinWeindel | ||
* @mandelsoft |
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 @@ | ||
Please refer to the [Gardener contributor guide](https://github.com/gardener/documentation/blob/master/CONTRIBUTING.md). |
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,12 @@ | ||
FROM golang:1.12.7 | ||
WORKDIR /go/src/github.com/gardener/cert-management/ | ||
RUN go get -u github.com/golang/dep/cmd/dep | ||
COPY . . | ||
RUN dep ensure | ||
RUN CGO_ENABLED=0 GOOS=linux go build -a -o cert-controller-manager -ldflags "-X main.Version=$(cat VERSION)-$(git rev-parse HEAD)" ./cmd/cert-controller-manager | ||
|
||
FROM alpine:latest | ||
RUN apk --no-cache add ca-certificates tzdata | ||
WORKDIR /root/ | ||
COPY --from=0 /go/src/github.com/gardener/cert-management/cert-controller-manager . | ||
ENTRYPOINT ["./cert-controller-manager"] |
Oops, something went wrong.