-
Notifications
You must be signed in to change notification settings - Fork 4k
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 #3123 from povilasv/multiarch
vpa: add multiarch builds
- Loading branch information
Showing
11 changed files
with
154 additions
and
36 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 |
---|---|---|
|
@@ -18,6 +18,9 @@ LABEL maintainer="Beata Skiba <[email protected]>" | |
ENV GOPATH /gopath/ | ||
ENV PATH $GOPATH/bin:$PATH | ||
|
||
ARG GOARCH | ||
ARG LDFLAGS | ||
|
||
RUN go version | ||
RUN go get github.com/tools/godep | ||
RUN godep version | ||
|
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 |
---|---|---|
@@ -1,2 +1,7 @@ | ||
# Admission Controller binary | ||
admission-controller | ||
admission-controller-amd64 | ||
admission-controller-arm64 | ||
admission-controller-arm | ||
admission-controller-ppc64le | ||
admission-controller-s390x |
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 |
---|---|---|
|
@@ -14,8 +14,8 @@ | |
|
||
FROM gcr.io/distroless/static:latest | ||
MAINTAINER Tomasz Kulczynski "[email protected]" | ||
|
||
copy admission-controller / | ||
ARG ARCH | ||
copy admission-controller-$ARCH /admission-controller | ||
|
||
ENTRYPOINT ["/admission-controller"] | ||
CMD ["--v=4", "--stderrthreshold=info"] |
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
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 |
---|---|---|
@@ -1,2 +1,7 @@ | ||
# Recommender binary | ||
recommender | ||
recommender-amd64 | ||
recommender-arm64 | ||
recommender-arm | ||
recommender-ppc64le | ||
recommender-s390x |
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 |
---|---|---|
|
@@ -15,7 +15,8 @@ | |
FROM gcr.io/distroless/static:latest | ||
MAINTAINER Krzysztof Grygiel "[email protected]" | ||
|
||
COPY recommender / | ||
ARG ARCH | ||
COPY recommender-$ARCH /recommender | ||
|
||
ENTRYPOINT ["/recommender"] | ||
CMD ["--v=4", "--stderrthreshold=info", "--prometheus-address=http://prometheus.monitoring.svc"] |
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
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
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 |
---|---|---|
@@ -1,2 +1,7 @@ | ||
# Updater binary | ||
updater | ||
updater-amd64 | ||
updater-arm64 | ||
updater-arm | ||
updater-ppc64le | ||
updater-s390x |
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 |
---|---|---|
|
@@ -16,7 +16,8 @@ | |
FROM gcr.io/distroless/static:latest | ||
MAINTAINER Marcin Wielgus "[email protected]" | ||
|
||
COPY updater / | ||
ARG ARCH | ||
COPY updater-$ARCH /updater | ||
|
||
ENTRYPOINT ["/updater"] | ||
CMD ["--v=4", "--stderrthreshold=info"] |
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