From d0320214167d7e023a50fb9233fe8a11542d721b Mon Sep 17 00:00:00 2001 From: Stavros Kois <47820033+stavros-k@users.noreply.github.com> Date: Tue, 15 Mar 2022 22:34:09 +0200 Subject: [PATCH] fix(ff3): use correct secret for newly generated keys (#2183) --- charts/stable/fireflyiii/Chart.yaml | 2 +- charts/stable/fireflyiii/templates/_secrets.tpl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/stable/fireflyiii/Chart.yaml b/charts/stable/fireflyiii/Chart.yaml index fd806e51d71..39653b0d593 100644 --- a/charts/stable/fireflyiii/Chart.yaml +++ b/charts/stable/fireflyiii/Chart.yaml @@ -28,7 +28,7 @@ name: fireflyiii sources: - https://github.com/firefly-iii/firefly-iii/ type: application -version: 14.0.2 +version: 14.0.3 annotations: truecharts.org/catagories: | - finacial diff --git a/charts/stable/fireflyiii/templates/_secrets.tpl b/charts/stable/fireflyiii/templates/_secrets.tpl index 81b82a2ad78..dc4d67f4ddf 100644 --- a/charts/stable/fireflyiii/templates/_secrets.tpl +++ b/charts/stable/fireflyiii/templates/_secrets.tpl @@ -18,7 +18,7 @@ data: {{- $static_cron_token := randAlphaNum 32 }} {{- $app_key := randAlphaNum 32 }} STATIC_CRON_TOKEN: {{ $static_cron_token | b64enc }} - APP_KEY: {{ $static_cron_token | b64enc }} + APP_KEY: {{ $app_key | b64enc }} {{- end }} {{- end -}}