From 049b77ad8c55329f7a91b2c9fb36378fb76a2c3a Mon Sep 17 00:00:00 2001 From: MaverickD650 <92877124+MaverickD650@users.noreply.github.com> Date: Tue, 1 Aug 2023 08:17:16 +0100 Subject: [PATCH] feat(authentik): Move to stable (#11105) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** Move Authentik to stable after successful incubator testing. ⚒️ 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?** Users installing incubator chart and testing fuctionality last remaining blueprint bug has been resolved by Stavros and chart operates as expected. **📃 Notes:** **✔️ Checklist:** - [X] ⚖️ My code follows the style guidelines of this project - [X] 👀 I have performed a self-review of my own code - [X] #️⃣ I have commented my code, particularly in hard-to-understand areas - [X] 📄 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/{incubator => stable}/authentik/.helmignore | 0 charts/{incubator => stable}/authentik/CHANGELOG.md | 0 charts/{incubator => stable}/authentik/Chart.yaml | 2 +- charts/{incubator => stable}/authentik/LICENSE | 0 charts/{incubator => stable}/authentik/README.md | 0 .../authentik/ci/outposts-values.yaml | 0 .../{incubator => stable}/authentik/docs/how_to.md | 0 .../authentik/docs/img/Applications-Screen.png | Bin .../authentik/docs/img/Create-Applications-2.png | Bin .../authentik/docs/img/Create-Applications-3.png | Bin .../authentik/docs/img/Create-Applications.png | Bin .../authentik/docs/img/Ingress-Auth.png | Bin .../authentik/docs/img/New-Provider-1.png | Bin .../authentik/docs/img/New-Provider-2.png | Bin .../authentik/docs/img/New-Provider-3.png | Bin .../authentik/docs/img/Outposts.png | Bin .../authentik/docs/img/Providers.png | Bin .../authentik/docs/img/Traefik-Middleware.png | Bin .../authentik/docs/img/Traefik-forwardAuth.png | Bin .../authentik/docs/img/Update-Outpost.png | Bin .../authentik/docs/img/Verify-2.png | Bin .../authentik/docs/img/Verify-Outpost.png | Bin .../authentik/docs/img/Verify.png | Bin .../authentik/docs/installation_notes.md | 0 charts/{incubator => stable}/authentik/icon.png | Bin .../{incubator => stable}/authentik/questions.yaml | 9 --------- .../authentik/templates/NOTES.txt | 0 .../authentik/templates/_config.tpl | 1 - .../authentik/templates/_secret.tpl | 0 .../authentik/templates/_validation.tpl | 0 .../authentik/templates/_waitAuthentik.tpl | 0 .../authentik/templates/common.yaml | 0 charts/{incubator => stable}/authentik/values.yaml | 2 -- 33 files changed, 1 insertion(+), 13 deletions(-) rename charts/{incubator => stable}/authentik/.helmignore (100%) rename charts/{incubator => stable}/authentik/CHANGELOG.md (100%) rename charts/{incubator => stable}/authentik/Chart.yaml (98%) rename charts/{incubator => stable}/authentik/LICENSE (100%) rename charts/{incubator => stable}/authentik/README.md (100%) rename charts/{incubator => stable}/authentik/ci/outposts-values.yaml (100%) rename charts/{incubator => stable}/authentik/docs/how_to.md (100%) rename charts/{incubator => stable}/authentik/docs/img/Applications-Screen.png (100%) rename charts/{incubator => stable}/authentik/docs/img/Create-Applications-2.png (100%) rename charts/{incubator => stable}/authentik/docs/img/Create-Applications-3.png (100%) rename charts/{incubator => stable}/authentik/docs/img/Create-Applications.png (100%) rename charts/{incubator => stable}/authentik/docs/img/Ingress-Auth.png (100%) rename charts/{incubator => stable}/authentik/docs/img/New-Provider-1.png (100%) rename charts/{incubator => stable}/authentik/docs/img/New-Provider-2.png (100%) rename charts/{incubator => stable}/authentik/docs/img/New-Provider-3.png (100%) rename charts/{incubator => stable}/authentik/docs/img/Outposts.png (100%) rename charts/{incubator => stable}/authentik/docs/img/Providers.png (100%) rename charts/{incubator => stable}/authentik/docs/img/Traefik-Middleware.png (100%) rename charts/{incubator => stable}/authentik/docs/img/Traefik-forwardAuth.png (100%) rename charts/{incubator => stable}/authentik/docs/img/Update-Outpost.png (100%) rename charts/{incubator => stable}/authentik/docs/img/Verify-2.png (100%) rename charts/{incubator => stable}/authentik/docs/img/Verify-Outpost.png (100%) rename charts/{incubator => stable}/authentik/docs/img/Verify.png (100%) rename charts/{incubator => stable}/authentik/docs/installation_notes.md (100%) rename charts/{incubator => stable}/authentik/icon.png (100%) rename charts/{incubator => stable}/authentik/questions.yaml (98%) rename charts/{incubator => stable}/authentik/templates/NOTES.txt (100%) rename charts/{incubator => stable}/authentik/templates/_config.tpl (97%) rename charts/{incubator => stable}/authentik/templates/_secret.tpl (100%) rename charts/{incubator => stable}/authentik/templates/_validation.tpl (100%) rename charts/{incubator => stable}/authentik/templates/_waitAuthentik.tpl (100%) rename charts/{incubator => stable}/authentik/templates/common.yaml (100%) rename charts/{incubator => stable}/authentik/values.yaml (99%) diff --git a/charts/incubator/authentik/.helmignore b/charts/stable/authentik/.helmignore similarity index 100% rename from charts/incubator/authentik/.helmignore rename to charts/stable/authentik/.helmignore diff --git a/charts/incubator/authentik/CHANGELOG.md b/charts/stable/authentik/CHANGELOG.md similarity index 100% rename from charts/incubator/authentik/CHANGELOG.md rename to charts/stable/authentik/CHANGELOG.md diff --git a/charts/incubator/authentik/Chart.yaml b/charts/stable/authentik/Chart.yaml similarity index 98% rename from charts/incubator/authentik/Chart.yaml rename to charts/stable/authentik/Chart.yaml index 88122aca5b2..aa685b75a61 100644 --- a/charts/incubator/authentik/Chart.yaml +++ b/charts/stable/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.13 +version: 14.0.0 annotations: truecharts.org/catagories: | - authentication diff --git a/charts/incubator/authentik/LICENSE b/charts/stable/authentik/LICENSE similarity index 100% rename from charts/incubator/authentik/LICENSE rename to charts/stable/authentik/LICENSE diff --git a/charts/incubator/authentik/README.md b/charts/stable/authentik/README.md similarity index 100% rename from charts/incubator/authentik/README.md rename to charts/stable/authentik/README.md diff --git a/charts/incubator/authentik/ci/outposts-values.yaml b/charts/stable/authentik/ci/outposts-values.yaml similarity index 100% rename from charts/incubator/authentik/ci/outposts-values.yaml rename to charts/stable/authentik/ci/outposts-values.yaml diff --git a/charts/incubator/authentik/docs/how_to.md b/charts/stable/authentik/docs/how_to.md similarity index 100% rename from charts/incubator/authentik/docs/how_to.md rename to charts/stable/authentik/docs/how_to.md diff --git a/charts/incubator/authentik/docs/img/Applications-Screen.png b/charts/stable/authentik/docs/img/Applications-Screen.png similarity index 100% rename from charts/incubator/authentik/docs/img/Applications-Screen.png rename to charts/stable/authentik/docs/img/Applications-Screen.png diff --git a/charts/incubator/authentik/docs/img/Create-Applications-2.png b/charts/stable/authentik/docs/img/Create-Applications-2.png similarity index 100% rename from charts/incubator/authentik/docs/img/Create-Applications-2.png rename to charts/stable/authentik/docs/img/Create-Applications-2.png diff --git a/charts/incubator/authentik/docs/img/Create-Applications-3.png b/charts/stable/authentik/docs/img/Create-Applications-3.png similarity index 100% rename from charts/incubator/authentik/docs/img/Create-Applications-3.png rename to charts/stable/authentik/docs/img/Create-Applications-3.png diff --git a/charts/incubator/authentik/docs/img/Create-Applications.png b/charts/stable/authentik/docs/img/Create-Applications.png similarity index 100% rename from charts/incubator/authentik/docs/img/Create-Applications.png rename to charts/stable/authentik/docs/img/Create-Applications.png diff --git a/charts/incubator/authentik/docs/img/Ingress-Auth.png b/charts/stable/authentik/docs/img/Ingress-Auth.png similarity index 100% rename from charts/incubator/authentik/docs/img/Ingress-Auth.png rename to charts/stable/authentik/docs/img/Ingress-Auth.png diff --git a/charts/incubator/authentik/docs/img/New-Provider-1.png b/charts/stable/authentik/docs/img/New-Provider-1.png similarity index 100% rename from charts/incubator/authentik/docs/img/New-Provider-1.png rename to charts/stable/authentik/docs/img/New-Provider-1.png diff --git a/charts/incubator/authentik/docs/img/New-Provider-2.png b/charts/stable/authentik/docs/img/New-Provider-2.png similarity index 100% rename from charts/incubator/authentik/docs/img/New-Provider-2.png rename to charts/stable/authentik/docs/img/New-Provider-2.png diff --git a/charts/incubator/authentik/docs/img/New-Provider-3.png b/charts/stable/authentik/docs/img/New-Provider-3.png similarity index 100% rename from charts/incubator/authentik/docs/img/New-Provider-3.png rename to charts/stable/authentik/docs/img/New-Provider-3.png diff --git a/charts/incubator/authentik/docs/img/Outposts.png b/charts/stable/authentik/docs/img/Outposts.png similarity index 100% rename from charts/incubator/authentik/docs/img/Outposts.png rename to charts/stable/authentik/docs/img/Outposts.png diff --git a/charts/incubator/authentik/docs/img/Providers.png b/charts/stable/authentik/docs/img/Providers.png similarity index 100% rename from charts/incubator/authentik/docs/img/Providers.png rename to charts/stable/authentik/docs/img/Providers.png diff --git a/charts/incubator/authentik/docs/img/Traefik-Middleware.png b/charts/stable/authentik/docs/img/Traefik-Middleware.png similarity index 100% rename from charts/incubator/authentik/docs/img/Traefik-Middleware.png rename to charts/stable/authentik/docs/img/Traefik-Middleware.png diff --git a/charts/incubator/authentik/docs/img/Traefik-forwardAuth.png b/charts/stable/authentik/docs/img/Traefik-forwardAuth.png similarity index 100% rename from charts/incubator/authentik/docs/img/Traefik-forwardAuth.png rename to charts/stable/authentik/docs/img/Traefik-forwardAuth.png diff --git a/charts/incubator/authentik/docs/img/Update-Outpost.png b/charts/stable/authentik/docs/img/Update-Outpost.png similarity index 100% rename from charts/incubator/authentik/docs/img/Update-Outpost.png rename to charts/stable/authentik/docs/img/Update-Outpost.png diff --git a/charts/incubator/authentik/docs/img/Verify-2.png b/charts/stable/authentik/docs/img/Verify-2.png similarity index 100% rename from charts/incubator/authentik/docs/img/Verify-2.png rename to charts/stable/authentik/docs/img/Verify-2.png diff --git a/charts/incubator/authentik/docs/img/Verify-Outpost.png b/charts/stable/authentik/docs/img/Verify-Outpost.png similarity index 100% rename from charts/incubator/authentik/docs/img/Verify-Outpost.png rename to charts/stable/authentik/docs/img/Verify-Outpost.png diff --git a/charts/incubator/authentik/docs/img/Verify.png b/charts/stable/authentik/docs/img/Verify.png similarity index 100% rename from charts/incubator/authentik/docs/img/Verify.png rename to charts/stable/authentik/docs/img/Verify.png diff --git a/charts/incubator/authentik/docs/installation_notes.md b/charts/stable/authentik/docs/installation_notes.md similarity index 100% rename from charts/incubator/authentik/docs/installation_notes.md rename to charts/stable/authentik/docs/installation_notes.md diff --git a/charts/incubator/authentik/icon.png b/charts/stable/authentik/icon.png similarity index 100% rename from charts/incubator/authentik/icon.png rename to charts/stable/authentik/icon.png diff --git a/charts/incubator/authentik/questions.yaml b/charts/stable/authentik/questions.yaml similarity index 98% rename from charts/incubator/authentik/questions.yaml rename to charts/stable/authentik/questions.yaml index afaa6e60cad..91af38fea8e 100644 --- a/charts/incubator/authentik/questions.yaml +++ b/charts/stable/authentik/questions.yaml @@ -359,15 +359,6 @@ questions: additional_attrs: true type: dict attrs: - - variable: disableEmbeddedOutpost - label: EXPERIMENTAL - Disable Embedded Outpost - description: | - Disables the embedded outpost.
- This will disable the embedded outpost, and will require you to deploy your own outpost.
- Only use this for testing, it might be removed without notice. - schema: - type: boolean - default: false - variable: proxy label: Proxy schema: diff --git a/charts/incubator/authentik/templates/NOTES.txt b/charts/stable/authentik/templates/NOTES.txt similarity index 100% rename from charts/incubator/authentik/templates/NOTES.txt rename to charts/stable/authentik/templates/NOTES.txt diff --git a/charts/incubator/authentik/templates/_config.tpl b/charts/stable/authentik/templates/_config.tpl similarity index 97% rename from charts/incubator/authentik/templates/_config.tpl rename to charts/stable/authentik/templates/_config.tpl index 75dacda7771..3f4299fd1f4 100644 --- a/charts/incubator/authentik/templates/_config.tpl +++ b/charts/stable/authentik/templates/_config.tpl @@ -24,7 +24,6 @@ server-worker: {{/* Outposts */}} AUTHENTIK_OUTPOSTS__DISCOVER: "false" - AUTHENTIK_OUTPOSTS__DISABLE_EMBEDDED_OUTPOST: {{ .Values.authentik.outposts.disableEmbeddedOutpost | quote }} {{/* GeoIP */}} {{- $geoipPath := (printf "/geoip/%v.mmdb" .Values.authentik.geoip.editionID) -}} diff --git a/charts/incubator/authentik/templates/_secret.tpl b/charts/stable/authentik/templates/_secret.tpl similarity index 100% rename from charts/incubator/authentik/templates/_secret.tpl rename to charts/stable/authentik/templates/_secret.tpl diff --git a/charts/incubator/authentik/templates/_validation.tpl b/charts/stable/authentik/templates/_validation.tpl similarity index 100% rename from charts/incubator/authentik/templates/_validation.tpl rename to charts/stable/authentik/templates/_validation.tpl diff --git a/charts/incubator/authentik/templates/_waitAuthentik.tpl b/charts/stable/authentik/templates/_waitAuthentik.tpl similarity index 100% rename from charts/incubator/authentik/templates/_waitAuthentik.tpl rename to charts/stable/authentik/templates/_waitAuthentik.tpl diff --git a/charts/incubator/authentik/templates/common.yaml b/charts/stable/authentik/templates/common.yaml similarity index 100% rename from charts/incubator/authentik/templates/common.yaml rename to charts/stable/authentik/templates/common.yaml diff --git a/charts/incubator/authentik/values.yaml b/charts/stable/authentik/values.yaml similarity index 99% rename from charts/incubator/authentik/values.yaml rename to charts/stable/authentik/values.yaml index 4194d93107f..243445b2a1c 100644 --- a/charts/incubator/authentik/values.yaml +++ b/charts/stable/authentik/values.yaml @@ -77,8 +77,6 @@ authentik: accountID: "" licenseKey: "" outposts: - # Experimental feature - disableEmbeddedOutpost: false proxy: enabled: false token: ""