From 53b22d247fb8500ea977774d727fe0d41950189c Mon Sep 17 00:00:00 2001 From: Alex Dunn Date: Mon, 12 Oct 2020 16:19:13 -0700 Subject: helm: add optional cron job to run `tootctl remove media` (#14396) --- chart/values.yaml.template | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'chart/values.yaml.template') diff --git a/chart/values.yaml.template b/chart/values.yaml.template index ff680b81f..c18d2f0b5 100644 --- a/chart/values.yaml.template +++ b/chart/values.yaml.template @@ -39,6 +39,12 @@ createAdmin: # available locales: https://github.com/tootsuite/mastodon/blob/master/config/application.rb#L43 locale: en +cron: + # run `tootctl media remove` every week + removeMedia: + enabled: true + schedule: "0 0 * * 0" + application: web: port: 3000 -- cgit From b37c9e56606da35d32e6c6dbf7daeff961279e16 Mon Sep 17 00:00:00 2001 From: Alex Dunn Date: Wed, 21 Oct 2020 16:36:07 -0700 Subject: helm: bump version to 3.2.1 (#15019) --- chart/values.yaml.template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'chart/values.yaml.template') diff --git a/chart/values.yaml.template b/chart/values.yaml.template index c18d2f0b5..c1dc29f57 100644 --- a/chart/values.yaml.template +++ b/chart/values.yaml.template @@ -4,7 +4,7 @@ image: repository: tootsuite/mastodon pullPolicy: Always # https://hub.docker.com/r/tootsuite/mastodon/tags - tag: v3.2.0 + tag: v3.2.1 # alternatively, use `latest` for the latest release or `edge` for the image # built from the most recent commit # -- cgit