From 6742c6fb05f96c15d7701d1dbad285ae1e0c4ed7 Mon Sep 17 00:00:00 2001 From: MaverickD650 <92877124+MaverickD650@users.noreply.github.com> Date: Tue, 11 Apr 2023 16:01:59 +0100 Subject: [PATCH] fix(tailscale): Primary service account (#7921) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** Tailscale values.yaml missing primary: true for the service account so added this in. ⚒️ Fixes #7920 **⚙️ 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?** Found the initial bug but relying on CI and SCALE install to test. **📃 Notes:** Referred to the Prometheus chart to find the "primary" addition. **✔️ 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 - [ ] ⚠️ 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/tailscale/Chart.yaml | 2 +- charts/stable/tailscale/values.yaml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/charts/stable/tailscale/Chart.yaml b/charts/stable/tailscale/Chart.yaml index 03500efcdeb..de840e41e06 100644 --- a/charts/stable/tailscale/Chart.yaml +++ b/charts/stable/tailscale/Chart.yaml @@ -19,7 +19,7 @@ name: tailscale sources: - https://github.com/truecharts/charts/tree/master/charts/stable/tailscale - https://github.com/tailscale/tailscale/blob/main/docs/k8s/run.sh -version: 4.0.0 +version: 4.0.1 annotations: truecharts.org/catagories: | - network diff --git a/charts/stable/tailscale/values.yaml b/charts/stable/tailscale/values.yaml index 1814a41a4a7..83331cd058a 100644 --- a/charts/stable/tailscale/values.yaml +++ b/charts/stable/tailscale/values.yaml @@ -5,6 +5,7 @@ image: serviceAccount: main: enabled: true + primary: true rbac: main: enabled: true