-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat(sync): local tmp store Signed-off-by: a <[email protected]> * fix(sync): various fixes for s3+remote storage feature Signed-off-by: Petu Eusebiu <[email protected]> --------- Signed-off-by: a <[email protected]> Signed-off-by: Petu Eusebiu <[email protected]> Co-authored-by: a <[email protected]>
- Loading branch information
1 parent
0de2210
commit 3c8da6e
Showing
12 changed files
with
934 additions
and
61 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
{ | ||
"distSpecVersion": "1.1.0-dev", | ||
"storage": { | ||
"rootDirectory": "/tmp/zot", | ||
"dedupe": true, | ||
"gc": true, | ||
"remoteCache": true, | ||
"storageDriver": { | ||
"name": "s3", | ||
"rootdirectory": "/zot", | ||
"region": "us-east-2", | ||
"bucket": "zot-storage", | ||
"secure": true, | ||
"skipverify": false | ||
}, | ||
"cacheDriver": { | ||
"name": "dynamodb", | ||
"region": "us-east-2", | ||
"cacheTablename": "BlobTable" | ||
} | ||
}, | ||
"http": { | ||
"address": "0.0.0.0", | ||
"port": "8080" | ||
}, | ||
"log": { | ||
"level": "debug" | ||
}, | ||
"extensions": { | ||
"sync": { | ||
"downloadDir": "/tmp/sync", | ||
"registries": [ | ||
{ | ||
"urls": [ | ||
"http://localhost:5000" | ||
], | ||
"onDemand": false, | ||
"tlsVerify": false, | ||
"PollInterval": "30m", | ||
"content": [ | ||
{ | ||
"prefix": "**" | ||
} | ||
] | ||
} | ||
] | ||
} | ||
} | ||
} |
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
Oops, something went wrong.