An open API service indexing awesome lists of open source software.

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

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)