From a24e599f024a25584b464dd5f5a25517bea2a36c Mon Sep 17 00:00:00 2001 From: Alex Suraci Date: Fri, 17 Feb 2017 10:13:37 -0500 Subject: [PATCH] default grace time to indefinite Having a default grace time of 5 minutes means there's no way to create a container with an indefinite TTL. It also doesn't seem like a sane default; either everyone has to disable it manually or the consumer of Garden has to continuously heartbeat containers that it wants to keep. The CLI defaults to indefinite, so this also makes them consistent with each other. --- jobs/garden/spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jobs/garden/spec b/jobs/garden/spec index 04f58f485..4281643d7 100644 --- a/jobs/garden/spec +++ b/jobs/garden/spec @@ -53,7 +53,7 @@ properties: garden.default_container_grace_time: description: "duration after which to reap idle containers" - default: 5m + default: 0 garden.default_container_rootfs: description: "path to the rootfs to use when a container specifies no rootfs"