Unattended upgrades for Docker containers, the hard way.
10K+
Unattended upgrades for Docker containers, the hard way.
$ go get github.com/camptocamp/upkick
Upkick helps you keep your containers up-to-date. When you launch it, it performs the following actions:
--warn-only is used, stop/remove all containers using outdated images (you need an orchestrator such as Rancher to restart them)No. Catalog templates usually use tagged versions of images. However, Docker tags are not fixed: they correspond more to branches actually. So while a new catalog template might upgrade the tag and force an upgrade of a container, there is never a garantee that the container runs on the latest hash for the given tag. This is a concern for security, as images should be rebuilt on a regular basis.
Rancher allows to set containers to "Always pull image before creating". While this is useful, it only garantees that images are updated when containers are recreated. We want containers to be up-to-date all the time!
Usage:
upkick [OPTIONS]
Application Options:
-V, --version Display version.
-l, --loglevel= Set loglevel ('debug', 'info', 'warn', 'error', 'fatal', 'panic'). (default: info) [$UPKICK_LOG_LEVEL]
-m, --manpage Output manpage.
-j, --json Log as JSON (to stderr). [$UPKICK_JSON_OUTPUT]
-w, --warn-only Only warn, do not kick out-of-date containers. [$UPKICK_WARN_ONLY]
Docker Options:
-e, --docker-endpoint= The Docker endpoint. (default: unix:///var/run/docker.sock) [$DOCKER_ENDPOINT]
Help Options:
-h, --help Show this help message
$ docker run -v /var/run/docker.sock:/var/run/docker.sock:ro --rm -ti \
camptocamp/upkick
You can set containers to only warn if they are outdated by placing an io.upkick.warn_only=true label on them.
Upkick can push metrics to a Prometheus gateway. The currently exported metrics are:
upkick_containers{what="total",image="<image>"}: total number of containers using a given image tagupkick_containers{what="blacklisted_tag",image="<image>"}: number of containers using a given image that is blacklistedupkick_containers{what="blacklisted_container",image="<image>"}: number of containers that opted-out of update (using labels)upkick_containers{what="up_to_date",image="<image>"}: number of containers using a given image already up-to-dateupkick_containers{what="updated",image="<image>"}: number of containers using a given image successfully updatedupkick_containers{what="update_failed",image="<image>"}: number of containers using a given image whose update failedupkick_containers{what="not_updated",image="<image>"}: number of containers using a given image that were not updated (because --warn-only was used)Here are some examples of useful Prometheus queries using these metrics:

Content type
Image
Digest
Size
2.1 MB
Last updated
about 8 years ago
docker pull camptocamp/upkick