From fa1a98f03910a0f995ccf2be5b28096e58d64aaa Mon Sep 17 00:00:00 2001 From: Varac Date: Wed, 27 Sep 2023 07:53:23 +0200 Subject: [PATCH] fix(plausible): Increase secret_key_base length to 64 bytes (#12947) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** ⚒️ Fixes #12946 **⚙️ Type of change** - [ ] ⚙️ Feature/App addition - [x] 🪛 Bugfix - [ ] ⚠️ Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] 🔃 Refactor of current code **🧪 How Has This Been Tested?** I tested this change on my cluster. **📃 Notes:** - **✔️ Checklist:** - [x] ⚖️ My code follows the style guidelines of this project - [ x 👀 I have performed a self-review of my own code - [ ] #️⃣ I have commented my code, particularly in hard-to-understand areas - [ ] 📄 I have made corresponding changes to the documentation - [x] ⚠️ My changes generate no new warnings - [ ] 🧪 I have added tests to this description that prove my fix is effective or that my feature works - [ ] ⬆️ I increased versions for any altered app according to semantic versioning **➕ App addition** If this PR is an app addition please make sure you have done the following. - [ ] 🪞 I have opened a PR on [truecharts/containers](https://github.com/truecharts/containers) adding the container to TrueCharts mirror repo. - [ ] 🖼️ I have added an icon in the Chart's root directory called `icon.png` --- _Please don't blindly check all the boxes. Read them and only check those that apply. Those checkboxes are there for the reviewer to see what is this all about and the status of this PR with a quick glance._ --- charts/stable/plausible/Chart.yaml | 2 +- charts/stable/plausible/templates/_secret.tpl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/stable/plausible/Chart.yaml b/charts/stable/plausible/Chart.yaml index 1b7b0102a57..7b2866f07e2 100644 --- a/charts/stable/plausible/Chart.yaml +++ b/charts/stable/plausible/Chart.yaml @@ -28,7 +28,7 @@ sources: - https://github.com/plausible/analytics - https://github.com/plausible/hosting type: application -version: 5.0.1 +version: 5.0.2 annotations: truecharts.org/catagories: | - analytics diff --git a/charts/stable/plausible/templates/_secret.tpl b/charts/stable/plausible/templates/_secret.tpl index 75ea665dd36..a8371694c82 100644 --- a/charts/stable/plausible/templates/_secret.tpl +++ b/charts/stable/plausible/templates/_secret.tpl @@ -7,7 +7,7 @@ {{- $maxmind := $plausible.maxmind -}} {{- $google := $plausible.google -}} -{{- $baseKey := randAlphaNum 32 -}} +{{- $baseKey := randAlphaNum 64 -}} {{- with (lookup "v1" "Secret" .Release.Namespace $secretName) -}} {{- $baseKey = index .data "SECRET_KEY_BASE" | b64dec -}} {{- end }}