-
Notifications
You must be signed in to change notification settings - Fork 257
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
deployer(MockedBuilder): push to container registry (#904)
* wip * deployer(oci): added support to push OCI tar images to a CR * deployer: Mocked builder pushes tar images to CR * deployer(builder): add support for pushing image against... ...a local container registry. * deployer(oci): simplified the annotations module * deployer(oci): update the docs * deployer(oci): added unit tests and simplified module structure * deployer: fix clippy * deployer: fix clippy * deployer: addressed P review * deployer: address O feedback * deployer: addressed P second review
- Loading branch information
1 parent
aaeba25
commit 73f0a9f
Showing
22 changed files
with
1,320 additions
and
46 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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,4 +1,3 @@ | ||
FROM alpine:latest | ||
|
||
COPY shuttle-service /usr/bin/ | ||
RUN chmod +x /usr/bin/shuttle-service | ||
RUN apk update |
Oops, something went wrong.