goauthentik / authentik

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

providers/oauth2: Add provider federation between OAuth2 Providers #12083

Open BeryJu opened 2 days ago

BeryJu commented 2 days ago

Details

REPLACE ME


Checklist

If an API change has been made

If changes to the frontend have been made

If applicable

netlify[bot] commented 2 days ago

Deploy Preview for authentik-storybook canceled.

Name Link
Latest commit d3114d9e6dfa088805eb5f22b7fb60f98b898890
Latest deploy log https://app.netlify.com/sites/authentik-storybook/deploys/674094804bc1cb0008695d20
netlify[bot] commented 2 days ago

Deploy Preview for authentik-docs canceled.

Name Link
Latest commit d3114d9e6dfa088805eb5f22b7fb60f98b898890
Latest deploy log https://app.netlify.com/sites/authentik-docs/deploys/674094804a08c5000878e3d4
codecov[bot] commented 2 days ago

Codecov Report

Attention: Patch coverage is 4.65116% with 123 lines in your changes missing coverage. Please review.

Project coverage is 50.25%. Comparing base (1c4165a) to head (d3114d9). Report is 1 commits behind head on main.

:white_check_mark: All tests successful. No failed tests found.

Files with missing lines Patch % Lines
...oviders/oauth2/tests/test_token_cc_jwt_provider.py 0.00% 78 Missing :warning:
authentik/providers/oauth2/views/token.py 7.69% 36 Missing :warning:
...providers/oauth2/tests/test_token_cc_jwt_source.py 0.00% 9 Missing :warning:

:exclamation: There is a different number of reports uploaded between BASE (1c4165a) and HEAD (d3114d9). Click for more details.

HEAD has 2 uploads less than BASE | Flag | BASE (1c4165a) | HEAD (d3114d9) | |------|------|------| |unit|2|0|
Additional details and impacted files ```diff @@ Coverage Diff @@ ## main #12083 +/- ## =========================================== - Coverage 92.62% 50.25% -42.37% =========================================== Files 761 760 -1 Lines 38025 37863 -162 =========================================== - Hits 35219 19027 -16192 - Misses 2806 18836 +16030 ``` | [Flag](https://app.codecov.io/gh/goauthentik/authentik/pull/12083/flags?src=pr&el=flags&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=goauthentik) | Coverage Δ | | |---|---|---| | [e2e](https://app.codecov.io/gh/goauthentik/authentik/pull/12083/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=goauthentik) | `48.99% <4.65%> (-0.13%)` | :arrow_down: | | [integration](https://app.codecov.io/gh/goauthentik/authentik/pull/12083/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=goauthentik) | `24.76% <2.32%> (-0.07%)` | :arrow_down: | | [unit](https://app.codecov.io/gh/goauthentik/authentik/pull/12083/flags?src=pr&el=flag&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=goauthentik) | `?` | | Flags with carried forward coverage won't be shown. [Click here](https://docs.codecov.io/docs/carryforward-flags?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=goauthentik#carryforward-flags-in-the-pull-request-comment) to find out more.

:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.


🚨 Try these New Features:

github-actions[bot] commented 2 days 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-f888d395b50e2a0834ce41f73eef6de4521eb3ef 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-f888d395b50e2a0834ce41f73eef6de4521eb3ef-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-f888d395b50e2a0834ce41f73eef6de4521eb3ef ``` 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-f888d395b50e2a0834ce41f73eef6de4521eb3ef-arm64 ``` Afterwards, run the upgrade commands from the latest release notes.