https://github.com/averagemarcus/kube-image-prefetch
Pre-pull all images, on all nodes, within a Kubernetes cluster
https://github.com/averagemarcus/kube-image-prefetch
hacktoberfest kubernertes
Last synced: over 1 year ago
JSON representation
Pre-pull all images, on all nodes, within a Kubernetes cluster
- Host: GitHub
- URL: https://github.com/averagemarcus/kube-image-prefetch
- Owner: AverageMarcus
- License: mit
- Created: 2020-07-22T17:54:31.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-10-01T19:46:46.000Z (almost 6 years ago)
- Last Synced: 2025-03-27T09:46:25.853Z (over 1 year ago)
- Topics: hacktoberfest, kubernertes
- Language: Go
- Homepage:
- Size: 33.2 KB
- Stars: 25
- Watchers: 1
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# kube-image-prefetch
> Pre-pull all images, on all nodes, within a Kubernetes cluster
## Features
* Pull all images used by deployments in the cluster on all nodes
* Watch for new, changed or removed deployments and pre-fetch images on all nodes
* Ignore deployments with annotation `kube-image-prefetch/ignore: "true"`
* Ignore specific containers with annotation `kube-image-prefetch/ignore-containers: "container-name"`. Multiple containers within a pod can be specified as a comma separated list.
## Install
```sh
kubectl apply -f https://raw.githubusercontent.com/AverageMarcus/kube-image-prefetch/master/manifest.yaml
```
## Building from source
With Docker:
```sh
make docker-build
```
Standalone:
```sh
make build
```
## Contributing
If you find a bug or have an idea for a new feature please [raise an issue](https://github.com/AverageMarcus/kube-image-prefetch/issues/new) to discuss it.
Pull requests are welcomed but please try and follow similar code style as the rest of the project and ensure all tests and code checkers are passing.
Thank you 💙
## License
See [LICENSE](LICENSE)