Skip to content

Commit

Permalink
Initial version of cert-manager
Browse files Browse the repository at this point in the history
    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
Gardener Development Community authored and msohn committed Aug 14, 2019
0 parents commit b004991
Show file tree
Hide file tree
Showing 2,550 changed files with 955,046 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .gitignore
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/
3 changes: 3 additions & 0 deletions CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# cert-management maintainers
* @MartinWeindel
* @mandelsoft
1 change: 1 addition & 0 deletions CONTRIBUTING.md
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).
12 changes: 12 additions & 0 deletions Dockerfile
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"]
Loading

0 comments on commit b004991

Please sign in to comment.