From edc96193c50e84e2eea97d9c204f3242caaee210 Mon Sep 17 00:00:00 2001
From: Sheogorath <sheogorath@shivering-isles.com>
Date: Sun, 10 Sep 2023 14:57:04 +0200
Subject: [PATCH] fix(mastodon): Drop `rollme` annotation forcing unnecessary
 redeployments

This patch removes the `rollme` annotation that is used to force
redeployments on upgrades. However, it's quite unnecessary since config
changes and image upgrades are already covered.

Currently it causes more harm than helping.
---
 charts/mastodon/templates/_helpers.tpl | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/charts/mastodon/templates/_helpers.tpl b/charts/mastodon/templates/_helpers.tpl
index 2bc5dc5c8..d69165eed 100644
--- a/charts/mastodon/templates/_helpers.tpl
+++ b/charts/mastodon/templates/_helpers.tpl
@@ -55,7 +55,6 @@ app.kubernetes.io/instance: {{ .Release.Name }}
 Rolling pod annotations
 */}}
 {{- define "mastodon.rollingPodAnnotations" -}}
-rollme: {{ .Release.Revision | quote }}
 checksum/config-secrets: {{ include ( print $.Template.BasePath "/secrets.yaml" ) . | sha256sum | quote }}
 checksum/config-configmap: {{ include ( print $.Template.BasePath "/configmap-env.yaml" ) . | sha256sum | quote }}
 {{- end }}
@@ -147,4 +146,4 @@ Find highest number of needed database connections to set DB_POOL variable
 {{- $poolSize = max $poolSize .concurrency }}
 {{- end }}
 {{- $poolSize | quote }}
-{{- end }}
\ No newline at end of file
+{{- end }}
-- 
GitLab