Add updated Janitor template using official meltwater/docker-cleanup
container image rather than the temporary patched version Some fixes to the README documentation to help clarify behaviour and fix typos.
This commit is contained in:
parent
0817364ed9
commit
5d12e5ebdd
18
templates/janitor/2/docker-compose.yml
Normal file
18
templates/janitor/2/docker-compose.yml
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
cleanup:
|
||||||
|
image: meltwater/docker-cleanup:1.6.0
|
||||||
|
environment:
|
||||||
|
CLEAN_PERIOD: ${FREQUENCY}
|
||||||
|
DELAY_TIME: "900"
|
||||||
|
KEEP_IMAGES: "${KEEP}"
|
||||||
|
KEEP_CONTAINERS: "${KEEPC}"
|
||||||
|
LOOP: "true"
|
||||||
|
DEBUG: "0"
|
||||||
|
labels:
|
||||||
|
io.rancher.scheduler.global: "true"
|
||||||
|
io.rancher.scheduler.affinity:host_label_ne: "${EXCLUDE_LABEL}"
|
||||||
|
privileged: true
|
||||||
|
tty: false
|
||||||
|
stdin_open: false
|
||||||
|
volumes:
|
||||||
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
|
- /var/lib/docker:/var/lib/docker
|
31
templates/janitor/2/rancher-compose.yml
Normal file
31
templates/janitor/2/rancher-compose.yml
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
.catalog:
|
||||||
|
name: "Janitor"
|
||||||
|
version: "v1.6"
|
||||||
|
description: "Docker cleanup"
|
||||||
|
uuid: janitor-2
|
||||||
|
questions:
|
||||||
|
- variable: "FREQUENCY"
|
||||||
|
label: "Frequency"
|
||||||
|
description: "Run the cleanup on a cycle of this many seconds"
|
||||||
|
default: 3600
|
||||||
|
required: true
|
||||||
|
type: "int"
|
||||||
|
- variable: "EXCLUDE_LABEL"
|
||||||
|
label: "Exclude label"
|
||||||
|
description: "Specify a Rancher host label here that will be used to determine on which hosts the Janitor container should not deploy."
|
||||||
|
default: janitor.exclude=true
|
||||||
|
required: true
|
||||||
|
type: "string"
|
||||||
|
- variable: "KEEP"
|
||||||
|
label: "Keep images"
|
||||||
|
description: "A comma separated list of images that should never be removed. These are left-anchored Bash Shell Wildcard patterns."
|
||||||
|
default: "rancher/"
|
||||||
|
required: false
|
||||||
|
type: "string"
|
||||||
|
- variable: "KEEPC"
|
||||||
|
label: "Keep containers"
|
||||||
|
description: "A comma separated list of images that should never have stopped containers removed. These are left-anchored Bash Shell Wildcard patterns."
|
||||||
|
default: "*:*"
|
||||||
|
required: false
|
||||||
|
type: "string"
|
||||||
|
|
@ -11,10 +11,13 @@ This will run a task daily (by default) that will delete any unused
|
|||||||
image, and any orphaned volume. The rancher container images are excluded
|
image, and any orphaned volume. The rancher container images are excluded
|
||||||
from the list of images to clean up, and you can add your own containers to
|
from the list of images to clean up, and you can add your own containers to
|
||||||
the exclude list if you wish. It will also remove any stopped containers
|
the exclude list if you wish. It will also remove any stopped containers
|
||||||
that are taking up space.
|
that are taking up space; note that this may not be what you want if you
|
||||||
|
are using stopped containers to hold volumes! If this is the case, use the
|
||||||
|
Keep List below.
|
||||||
|
|
||||||
This will halp to prevent the /var/lib/docker filesystem from filling up
|
This cleanup will help to prevent the /var/lib/docker filesystem from filling
|
||||||
with old and unused container images.
|
up with old and unused container images, which is an issue on lighter-weight
|
||||||
|
Docker hosts.
|
||||||
|
|
||||||
### Keep list
|
### Keep list
|
||||||
|
|
||||||
@ -31,7 +34,7 @@ patterns. For example, an image called **foo/bar:latest** will match:
|
|||||||
* \*:\*
|
* \*:\*
|
||||||
* fo
|
* fo
|
||||||
|
|
||||||
However it will notmatch
|
However it will not match
|
||||||
|
|
||||||
* foo/baz
|
* foo/baz
|
||||||
* bar:latest
|
* bar:latest
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
name: Janitor
|
name: Janitor
|
||||||
description: |
|
description: |
|
||||||
Automatic cleanup of unused images on hosts, in order to save disk space.
|
Automatic cleanup of unused images on hosts, in order to save disk space.
|
||||||
version: v1.5.2
|
version: v1.6
|
||||||
category: Monitoring
|
category: Monitoring
|
||||||
maintainer: Steve Shipway <s.shipway@auckland.ac.nz>
|
maintainer: Steve Shipway <s.shipway@auckland.ac.nz>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user