-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Keep all binaries in a single container (#244)
Until now, each binary was kept in its own container image. That is expensive on resource and also introduces non-negligible maintenance cost. All these containers are always deployed under a single DaemonSet and they only serve to deliver basic binaries, thus there is no reason to keep them split. With this patch, all four container images get merged into one. Signed-off-by: Petr Horáček <[email protected]> Signed-off-by: Petr Horáček <[email protected]>
- Loading branch information
Showing
13 changed files
with
47 additions
and
106 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
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
FROM registry.access.redhat.com/ubi8/ubi-minimal | ||
RUN microdnf install findutils | ||
COPY marker/marker /marker | ||
COPY plugin/plugin /ovs | ||
COPY mirror-consumer/mirror-consumer /ovs-mirror-consumer | ||
COPY mirror-producer/mirror-producer /ovs-mirror-producer | ||
COPY .version /.version |
Empty file.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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