From b1614207489a5a854b484a4749de41014fb148aa Mon Sep 17 00:00:00 2001 From: StevenMcElligott <89483932+StevenMcElligott@users.noreply.github.com> Date: Thu, 31 Aug 2023 11:05:46 -0400 Subject: [PATCH] fix(notifiarr): Fix questions again (#12090) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** Hopefully fixes q's since env_vars weren't passing ⚒️ Fixes # **⚙️ Type of change** - [ ] ⚙️ Feature/App addition - [ ] 🪛 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:** - [ ] ⚖️ My code follows the style guidelines of this project - [ ] 👀 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/incubator/notifiarr/Chart.yaml | 2 +- charts/incubator/notifiarr/questions.yaml | 99 +++++++++++------------ 2 files changed, 50 insertions(+), 51 deletions(-) diff --git a/charts/incubator/notifiarr/Chart.yaml b/charts/incubator/notifiarr/Chart.yaml index 7371afde1a7..0ee70cc6f95 100644 --- a/charts/incubator/notifiarr/Chart.yaml +++ b/charts/incubator/notifiarr/Chart.yaml @@ -23,7 +23,7 @@ sources: - https://github.com/truecharts/charts/tree/master/charts/incubator/notifiarr - https://github.com/Notifiarr/notifiarr type: application -version: 0.0.2 +version: 0.0.3 annotations: truecharts.org/catagories: | - MediaApp-Other diff --git a/charts/incubator/notifiarr/questions.yaml b/charts/incubator/notifiarr/questions.yaml index 55c63ea10b1..e551e154d3e 100644 --- a/charts/incubator/notifiarr/questions.yaml +++ b/charts/incubator/notifiarr/questions.yaml @@ -10,58 +10,57 @@ questions: # Include{replicas1} # Include{podSpec} # Include{containerMain} - - variable: notifiarr - group: App Configuration - label: Image Environment - schema: - additional_attrs: true - type: dict - attrs: - - variable: apikey - label: Notifiarr All API Key - description: Notifiarr All Integrations API key from https://notifiarr.com - schema: - type: string - default: "" - required: true - - variable: upstreams - label: Upstreams - description: Controls which IP is written to the web server log file (requestor or x-forwarded-for header). Also allows the x-webauth-user header for proxy authentication. Separate with spaces. The default kubernetes network is pre-filled. - schema: - type: list - default: - - 172.16.0.0/16 - items: - - variable: upstreamEntry - label: Upstream - description: Upstream IP or CIDR - schema: - type: string - default: "" - required: true - - variable: credentials - label: Web UI Credentials - schema: - additional_attrs: true - type: dict - attrs: - - variable: username - label: Web UI Username - description: Default username is admin. Change it here. - schema: - type: string - default: "" - required: true - - variable: password - label: Web UI Password - description: Set a first time login password (minimum 9 characters) & change the password from the Web UI to encrypt it. If you don't set this you will need to check the logs on first start to find the generated password. - schema: - type: string - default: "" - required: true - # Include{containerBasic} # Include{containerAdvanced} + - variable: notifiarr + group: App Configuration + label: Image Environment + schema: + additional_attrs: true + type: dict + attrs: + - variable: apikey + label: Notifiarr All API Key + description: Notifiarr All Integrations API key from https://notifiarr.com + schema: + type: string + default: "" + required: true + - variable: upstreams + label: Upstreams + description: Controls which IP is written to the web server log file (requestor or x-forwarded-for header). Also allows the x-webauth-user header for proxy authentication. Separate with spaces. The default kubernetes network is pre-filled. + schema: + type: list + default: + - 172.16.0.0/16 + items: + - variable: upstreamEntry + label: Upstream + description: Upstream IP or CIDR + schema: + type: string + default: "" + required: true + - variable: credentials + label: Web UI Credentials + schema: + additional_attrs: true + type: dict + attrs: + - variable: username + label: Web UI Username + description: Default username is admin. Change it here. + schema: + type: string + default: "" + required: true + - variable: password + label: Web UI Password + description: Set a first time login password (minimum 9 characters) & change the password from the Web UI to encrypt it. If you don't set this you will need to check the logs on first start to find the generated password. + schema: + type: string + default: "" + required: true # Include{containerConfig} # Include{podOptions} # Include{serviceRoot}