From 6d6eedb7670b43f36f4f38526efe7365bfb89400 Mon Sep 17 00:00:00 2001 From: Stavros Kois <47820033+stavros-k@users.noreply.github.com> Date: Sat, 22 Jul 2023 20:12:49 +0300 Subject: [PATCH] feat(mealie): move to stable (#10751) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** ⚒️ Fixes # **⚙️ Type of change** - [x] ⚙️ 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:** - [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 - [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/incubator/authentik/Chart.yaml | 2 +- charts/incubator/authentik/docs/how_to.md | 12 ++++++------ charts/{incubator => stable}/mealie/.helmignore | 0 charts/{incubator => stable}/mealie/CHANGELOG.md | 0 charts/{incubator => stable}/mealie/Chart.yaml | 2 +- charts/{incubator => stable}/mealie/LICENSE | 0 charts/{incubator => stable}/mealie/README.md | 0 .../mealie/ci/test-values.yaml | 0 charts/{incubator => stable}/mealie/icon.png | Bin charts/{incubator => stable}/mealie/questions.yaml | 1 + .../mealie/templates/NOTES.txt | 0 .../mealie/templates/_secrets.tpl | 0 .../mealie/templates/common.yaml | 0 charts/{incubator => stable}/mealie/values.yaml | 0 14 files changed, 9 insertions(+), 8 deletions(-) rename charts/{incubator => stable}/mealie/.helmignore (100%) rename charts/{incubator => stable}/mealie/CHANGELOG.md (100%) rename charts/{incubator => stable}/mealie/Chart.yaml (97%) rename charts/{incubator => stable}/mealie/LICENSE (100%) rename charts/{incubator => stable}/mealie/README.md (100%) rename charts/{incubator => stable}/mealie/ci/test-values.yaml (100%) rename charts/{incubator => stable}/mealie/icon.png (100%) rename charts/{incubator => stable}/mealie/questions.yaml (99%) rename charts/{incubator => stable}/mealie/templates/NOTES.txt (100%) rename charts/{incubator => stable}/mealie/templates/_secrets.tpl (100%) rename charts/{incubator => stable}/mealie/templates/common.yaml (100%) rename charts/{incubator => stable}/mealie/values.yaml (100%) diff --git a/charts/incubator/authentik/Chart.yaml b/charts/incubator/authentik/Chart.yaml index 1496baa4b8a..9d9cdf7d629 100644 --- a/charts/incubator/authentik/Chart.yaml +++ b/charts/incubator/authentik/Chart.yaml @@ -23,7 +23,7 @@ sources: - https://github.com/truecharts/charts/tree/master/charts/incubator/authentik - https://github.com/goauthentik/authentik - https://goauthentik.io/docs/ -version: 13.0.6 +version: 13.0.7 annotations: truecharts.org/catagories: | - authentication diff --git a/charts/incubator/authentik/docs/how_to.md b/charts/incubator/authentik/docs/how_to.md index 6aef5cbd21f..8b01d44413e 100644 --- a/charts/incubator/authentik/docs/how_to.md +++ b/charts/incubator/authentik/docs/how_to.md @@ -61,12 +61,12 @@ Default username is `akadmin` and password is whatever you entered in the initia ![New-Provider-2](img/New-Provider-2.png) - If you want to use subdomain-level access control, select `Forward auth (single application)` and enter the URL you have chosen for your apps' ingress. -- The example uses `https://application.mydomain.com/`, make sure your app is reachable and uses a valid certificate beforehand. -- You can set HTTP-Basic Authentication Attributes under `Authentication settings` for your service here. - - Don't use a `basicAuth` middleware in the apps' ingress settings. Only use this if your app has build in basic auth support. +- The example uses `https://application.mydomain.com/`, make sure your app is reachable and uses a valid certificate beforehand. +- You can set HTTP-Basic Authentication Attributes under `Authentication settings` for your service here. + - Don't use a `basicAuth` middleware in the apps' ingress settings. Only use this if your app has build in basic auth support. - Add the attributes in a `authentik` group, then assign any user you want to be able to access the application to this group. -![New-Provider-3](image.png) +![New-Provider-3](img/New-Provider-3.png) - Once done use that new `Provider` you created @@ -100,9 +100,9 @@ Once `authentik` is setup and running, you must create a `forwardAuth` inside `T The main thing about this screen is to use the internal DNS name for simplicity -- I have successfully used an `authentik` instance on a difference host together with `external-service` using this URL: +- I have successfully used an `authentik` instance on a difference host together with `external-service` using this URL: - `https://authentik-external-service.ix-authentik.svc.cluster.local:9443/outpost.goauthentik.io/auth/traefik` -- Use `heavyscript dns -a` to get the internal DNS name for your `authentik` instance in that case. +- Use `heavyscript dns -a` to get the internal DNS name for your `authentik` instance in that case. - I suggest using the `https` endpoint and port because it is what worked for me. ::: diff --git a/charts/incubator/mealie/.helmignore b/charts/stable/mealie/.helmignore similarity index 100% rename from charts/incubator/mealie/.helmignore rename to charts/stable/mealie/.helmignore diff --git a/charts/incubator/mealie/CHANGELOG.md b/charts/stable/mealie/CHANGELOG.md similarity index 100% rename from charts/incubator/mealie/CHANGELOG.md rename to charts/stable/mealie/CHANGELOG.md diff --git a/charts/incubator/mealie/Chart.yaml b/charts/stable/mealie/Chart.yaml similarity index 97% rename from charts/incubator/mealie/Chart.yaml rename to charts/stable/mealie/Chart.yaml index ca634f1bc49..86b924dc337 100644 --- a/charts/incubator/mealie/Chart.yaml +++ b/charts/stable/mealie/Chart.yaml @@ -18,7 +18,7 @@ name: mealie sources: - https://github.com/truecharts/charts/tree/master/charts/incubator/mealie - https://github.com/hay-kot/mealie -version: 16.0.0 +version: 16.0.1 annotations: truecharts.org/catagories: | - utilities diff --git a/charts/incubator/mealie/LICENSE b/charts/stable/mealie/LICENSE similarity index 100% rename from charts/incubator/mealie/LICENSE rename to charts/stable/mealie/LICENSE diff --git a/charts/incubator/mealie/README.md b/charts/stable/mealie/README.md similarity index 100% rename from charts/incubator/mealie/README.md rename to charts/stable/mealie/README.md diff --git a/charts/incubator/mealie/ci/test-values.yaml b/charts/stable/mealie/ci/test-values.yaml similarity index 100% rename from charts/incubator/mealie/ci/test-values.yaml rename to charts/stable/mealie/ci/test-values.yaml diff --git a/charts/incubator/mealie/icon.png b/charts/stable/mealie/icon.png similarity index 100% rename from charts/incubator/mealie/icon.png rename to charts/stable/mealie/icon.png diff --git a/charts/incubator/mealie/questions.yaml b/charts/stable/mealie/questions.yaml similarity index 99% rename from charts/incubator/mealie/questions.yaml rename to charts/stable/mealie/questions.yaml index b80e6a73773..e1bb0e07145 100644 --- a/charts/incubator/mealie/questions.yaml +++ b/charts/stable/mealie/questions.yaml @@ -270,6 +270,7 @@ questions: description: Mail From Email schema: type: string + show_if: [["host", "!=", ""]] required: true default: "" - variable: auth_strategy diff --git a/charts/incubator/mealie/templates/NOTES.txt b/charts/stable/mealie/templates/NOTES.txt similarity index 100% rename from charts/incubator/mealie/templates/NOTES.txt rename to charts/stable/mealie/templates/NOTES.txt diff --git a/charts/incubator/mealie/templates/_secrets.tpl b/charts/stable/mealie/templates/_secrets.tpl similarity index 100% rename from charts/incubator/mealie/templates/_secrets.tpl rename to charts/stable/mealie/templates/_secrets.tpl diff --git a/charts/incubator/mealie/templates/common.yaml b/charts/stable/mealie/templates/common.yaml similarity index 100% rename from charts/incubator/mealie/templates/common.yaml rename to charts/stable/mealie/templates/common.yaml diff --git a/charts/incubator/mealie/values.yaml b/charts/stable/mealie/values.yaml similarity index 100% rename from charts/incubator/mealie/values.yaml rename to charts/stable/mealie/values.yaml