From 6e5e2d39f66e0ba1713dd8a8cc45da142c88f4d5 Mon Sep 17 00:00:00 2001 From: Xstar97TheNoob <9399967+xstar97@users.noreply.github.com> Date: Tue, 29 Aug 2023 18:15:04 -0400 Subject: [PATCH] fix(gamevault-backend) fix admin user (#12032) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** fix gamevault-backend admin user credential ⚒️ Fixes # **⚙️ 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?** **📃 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 - [ ] ⚠️ My changes generate no new warnings - [ ] 🧪 I have added tests to this description that prove my fix is effective or that my feature works - [X] ⬆️ 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/gamevault-backend/Chart.yaml | 2 +- charts/stable/gamevault-backend/values.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/stable/gamevault-backend/Chart.yaml b/charts/stable/gamevault-backend/Chart.yaml index 6e1f6fa9c5c..34923d42c68 100644 --- a/charts/stable/gamevault-backend/Chart.yaml +++ b/charts/stable/gamevault-backend/Chart.yaml @@ -21,7 +21,7 @@ sources: - https://github.com/truecharts/charts/tree/master/charts/stable/gamevault-backend - https://github.com/Phalcode/gamevault-backend type: application -version: 1.1.1 +version: 1.1.2 annotations: truecharts.org/catagories: | - games diff --git a/charts/stable/gamevault-backend/values.yaml b/charts/stable/gamevault-backend/values.yaml index acf45a5be63..86edf2c395a 100644 --- a/charts/stable/gamevault-backend/values.yaml +++ b/charts/stable/gamevault-backend/values.yaml @@ -20,7 +20,7 @@ service: gamevault: server: - admin_user: admin + admin_username: admin admin_password: password registration_disabled: false account_activation_disabled: false @@ -74,7 +74,7 @@ workload: name: cnpg-main-user key: password # ADMIN - SERVER_ADMIN_USERNAME: "{{ .Values.gamevault.server.admin_user }}" + SERVER_ADMIN_USERNAME: "{{ .Values.gamevault.server.admin_username }}" SERVER_ADMIN_PASSWORD: "{{ .Values.gamevault.server.admin_password }}" SERVER_REGISTRATION_DISABLED: "{{ .Values.gamevault.server.registration_disabled }}" SERVER_ACCOUNT_ACTIVATION_DISABLED: "{{ .Values.gamevault.server.account_activation_disabled }}"