From a652bbc28bbe20a1b2c3c9434b1e225d1a2c6228 Mon Sep 17 00:00:00 2001 From: Sheogorath <sheogorath@shivering-isles.com> Date: Sun, 4 Dec 2022 00:24:59 +0000 Subject: [PATCH] fix(mastodon): Restore default weights Adjusted from upstream commit: https://github.com/mastodon/chart/pull/1/commits/518634b4ab78f4bafa73b30c7b9ec87df828e5a7 --- charts/mastodon/values.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/mastodon/values.yaml b/charts/mastodon/values.yaml index 0ae876f89..846b28caa 100644 --- a/charts/mastodon/values.yaml +++ b/charts/mastodon/values.yaml @@ -104,9 +104,9 @@ mastodon: # -- Sidekiq queues for Mastodon that are handled by this worker. See https://docs.joinmastodon.org/admin/scaling/#concurrency # See https://github.com/mperham/sidekiq/wiki/Advanced-Options#queues for how to weight queues as argument queues: - - default - - push - - mailers + - default,8 + - push,6 + - mailers,2 - pull - scheduler # Make sure the scheduler queue only exists once and with a worker that has 1 replica. #- name: push-pull -- GitLab