diff --git a/charts/stable/anonaddy/Chart.yaml b/charts/stable/anonaddy/Chart.yaml index b3591ac9040..2ed5616ad07 100644 --- a/charts/stable/anonaddy/Chart.yaml +++ b/charts/stable/anonaddy/Chart.yaml @@ -26,7 +26,7 @@ name: anonaddy sources: - https://github.com/truecharts/charts/tree/master/charts/stable/anonaddy - https://github.com/anonaddy/docker -version: 15.0.1 +version: 15.0.2 annotations: truecharts.org/catagories: | - email diff --git a/charts/stable/anonaddy/templates/_secrets.tpl b/charts/stable/anonaddy/templates/_secrets.tpl index 177368e5f93..6c7999cfae0 100644 --- a/charts/stable/anonaddy/templates/_secrets.tpl +++ b/charts/stable/anonaddy/templates/_secrets.tpl @@ -11,6 +11,9 @@ {{- end }} enabled: true data: - APP_KEY: {{ $appKey }} + # Anonaddy requires APP_KEY to be in base 64 format presented in the container, so this b64enc here is intentional + # https://github.com/anonaddy/docker/blob/master/README.md#app + APP_KEY: {{ $appKey | b64enc }} + # Anonaddy requires ANONADDY_SECRET to be a long string ANONADDY_SECRET: {{ $secretKey }} {{- end -}}