Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Registry sync #3

Open
wants to merge 23 commits into
base: sync
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
308573c
Introduce the sync command
flavio Jul 9, 2018
6dfd7f2
openshift cluster: remove .docker directory on teardown
marcov Nov 5, 2018
c16d20a
Add sync integration tests
marcov Jul 13, 2018
533cbc3
Initial branch and start of the extension to sync, it builds
Apr 17, 2019
97ec9fe
added gdb_histroy to gitignore
Apr 17, 2019
0807c1f
My use case requires 'pulling' and keeping in 'sync' an entire regist…
Apr 25, 2019
532f24d
Removed the commented out code, update gitignore for vim swp files
Apr 29, 2019
640a042
Introduce the sync command
flavio Jul 9, 2018
8b023fe
openshift cluster: remove .docker directory on teardown
marcov Nov 5, 2018
95834e8
Add sync integration tests
marcov Jul 13, 2018
f8cc809
Initial branch and start of the extension to sync, it builds
Apr 17, 2019
ee1002c
added gdb_histroy to gitignore
Apr 17, 2019
2ffb12a
My use case requires 'pulling' and keeping in 'sync' an entire regist…
Apr 25, 2019
e53596b
Removed the commented out code, update gitignore for vim swp files
Apr 29, 2019
c79cb25
Merge branch 'registry-sync' of github.com:gobha-me/skopeo into regis…
Apr 29, 2019
4ab9f9b
Fixed bug in code that I introduced, when applying a retry ensure the…
May 2, 2019
9b15a35
Worked out a "poor man's" do I have have this already for registry sy…
May 7, 2019
f05bb31
Added inspect and compare to the sync, this feature was the point of …
May 10, 2019
6644294
First attempt at multi-arch support using overrideArch global option
Jun 20, 2019
3e7c129
removed commented out imports
Jul 15, 2019
f323604
Update registry-sync.go
gobha-me Dec 9, 2019
c00549c
Remove to Remove all
Dec 12, 2019
c3ba361
Update registry-sync.go
gobha-me Jan 15, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
*.1
*.swp
.gdb_history
/layers-*
/skopeo
2 changes: 2 additions & 0 deletions cmd/skopeo/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,8 @@ func createApp() (*cli.App, *globalOptions) {
layersCmd(&opts),
deleteCmd(&opts),
manifestDigestCmd(),
syncCmd(&opts),
registrySyncCmd(&opts),
standaloneSignCmd(),
standaloneVerifyCmd(),
untrustedSignatureDumpCmd(),
Expand Down
Loading