forked from lyft/flinkk8soperator
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 6fdd92f
Showing
124 changed files
with
13,129 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,7 @@ | ||
.idea/ | ||
.DS_Store | ||
.vscode/ | ||
.vendor-new/ | ||
|
||
vendor/ | ||
node_modules/ |
Validating CODEOWNERS rules …
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 @@ | ||
# These owners will be the default owners for everything in | ||
# the repo. Unless a later match takes precedence. | ||
* @anandswaminathan @kumare3 @mwylde |
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,2 @@ | ||
This project is governed by [Lyft's code of conduct](https://github.com/lyft/code-of-conduct). | ||
All contributors and participants agree to abide by its terms. |
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,29 @@ | ||
# Using go1.10.4 | ||
FROM golang:1.10.4-alpine3.8 as builder | ||
RUN apk add git openssh-client make curl bash | ||
|
||
COPY boilerplate/lyft/golang_test_targets/dep_install.sh /go/src/github.com/lyft/flinkk8soperator/ | ||
|
||
# COPY only the dep files for efficient caching | ||
COPY Gopkg.* /go/src/github.com/lyft/flinkk8soperator/ | ||
WORKDIR /go/src/github.com/lyft/flinkk8soperator | ||
|
||
# Pull dependencies | ||
RUN : \ | ||
&& sh dep_install.sh \ | ||
&& dep ensure -vendor-only | ||
|
||
# COPY the rest of the source code | ||
COPY . /go/src/github.com/lyft/flinkk8soperator/ | ||
|
||
# This 'linux_compile' target should compile binaries to the /artifacts directory | ||
# The main entrypoint should be compiled to /artifacts/flinkk8soperator | ||
RUN make linux_compile | ||
|
||
# update the PATH to include the /artifacts directory | ||
ENV PATH="/artifacts:${PATH}" | ||
|
||
# This will eventually move to centurylink/ca-certs:latest for minimum possible image size | ||
FROM alpine:3.8 | ||
COPY --from=builder /artifacts /bin | ||
CMD ["flinkoperator"] |
Oops, something went wrong.