Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/m-lab/archive-repacker
Process and repackage existing archives
https://github.com/m-lab/archive-repacker
Last synced: about 1 month ago
JSON representation
Process and repackage existing archives
- Host: GitHub
- URL: https://github.com/m-lab/archive-repacker
- Owner: m-lab
- License: apache-2.0
- Created: 2023-02-09T15:43:40.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-26T16:08:38.000Z (about 1 year ago)
- Last Synced: 2024-10-29T16:06:49.104Z (about 2 months ago)
- Language: Go
- Size: 264 KB
- Stars: 1
- Watchers: 6
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# archive-repacker
Process and repackage existing archives.
## Node pool configuration
The archive-repacker services run in the data-processing cluster. So these
services do not interfere with other parts of the data pipeline, a separate
node-pool is dedicated to the archive-repacker.```sh
gcloud --project=${PROJECT} container node-pools create archive-repacker \
--cluster=data-processing --region=us-east1 --enable-autoscaling \
--max-nodes=9 --min-nodes=0 --total-min-nodes=0 --num-nodes=0 \
--node-labels=archiver=true --enable-autorepair --enable-autoupgrade \
--machine-type=c2-standard-8 --scopes=cloud-platform
```