goauthentik / authentik

The authentication glue you need.
https://goauthentik.io
Other
13.67k stars 915 forks source link

providers/oauth2: fix migration (cherry-pick #12138) #12139

Closed gcp-cherry-pick-bot[bot] closed 15 hours ago

gcp-cherry-pick-bot[bot] commented 15 hours ago

Cherry-picked providers/oauth2: fix migration (#12138)

Signed-off-by: Jens Langhammer jens@goauthentik.io

netlify[bot] commented 15 hours ago

Deploy Preview for authentik-docs ready!

Name Link
Latest commit 0f2eafb29d751ba27f672b23b8cfccabc3a2063d
Latest deploy log https://app.netlify.com/sites/authentik-docs/deploys/673f73dd56018e000898ee6a
Deploy Preview https://deploy-preview-12139--authentik-docs.netlify.app
Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

github-actions[bot] commented 14 hours ago

authentik PR Installation instructions

Instructions for docker-compose Add the following block to your `.env` file: ```shell AUTHENTIK_IMAGE=ghcr.io/goauthentik/dev-server AUTHENTIK_TAG=gh-0f2eafb29d751ba27f672b23b8cfccabc3a2063d AUTHENTIK_OUTPOSTS__CONTAINER_IMAGE_BASE=ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)s ``` For arm64, use these values: ```shell AUTHENTIK_IMAGE=ghcr.io/goauthentik/dev-server AUTHENTIK_TAG=gh-0f2eafb29d751ba27f672b23b8cfccabc3a2063d-arm64 AUTHENTIK_OUTPOSTS__CONTAINER_IMAGE_BASE=ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)s ``` Afterwards, run the upgrade commands from the latest release notes.
Instructions for Kubernetes Add the following block to your `values.yml` file: ```yaml authentik: outposts: container_image_base: ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)s global: image: repository: ghcr.io/goauthentik/dev-server tag: gh-0f2eafb29d751ba27f672b23b8cfccabc3a2063d ``` For arm64, use these values: ```yaml authentik: outposts: container_image_base: ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)s global: image: repository: ghcr.io/goauthentik/dev-server tag: gh-0f2eafb29d751ba27f672b23b8cfccabc3a2063d-arm64 ``` Afterwards, run the upgrade commands from the latest release notes.