authentik icon indicating copy to clipboard operation
authentik copied to clipboard

flows: provider invalidation

Open BeryJu opened this issue 2 years ago • 3 comments

replace the current static end_session interface with flows

closes #8369

BeryJu avatar Mar 22 '23 22:03 BeryJu

Codecov Report

Attention: Patch coverage is 95.06173% with 4 lines in your changes missing coverage. Please review.

Project coverage is 92.76%. Comparing base (09e8f07) to head (7a02b99). Report is 8 commits behind head on main.

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

Files with missing lines Patch % Lines
authentik/providers/oauth2/views/end_session.py 92.30% 2 Missing :warning:
authentik/providers/ldap/api.py 88.88% 1 Missing :warning:
authentik/providers/saml/views/slo.py 94.11% 1 Missing :warning:
Additional details and impacted files
@@            Coverage Diff             @@
##             main    #5048      +/-   ##
==========================================
- Coverage   92.76%   92.76%   -0.01%     
==========================================
  Files         736      736              
  Lines       36548    36601      +53     
==========================================
+ Hits        33903    33952      +49     
- Misses       2645     2649       +4     
Flag Coverage Δ
e2e 49.38% <88.88%> (+0.12%) :arrow_up:
integration 24.96% <16.04%> (-0.02%) :arrow_down:
unit 90.20% <61.72%> (-0.06%) :arrow_down:

Flags with carried forward coverage won't be shown. Click here to find out more.

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

codecov[bot] avatar Mar 22 '23 22:03 codecov[bot]

Deploy Preview for authentik-storybook canceled.

Name Link
Latest commit 7a02b990bf35d0e490181ab03e8ca57ad059567d
Latest deploy log https://app.netlify.com/sites/authentik-storybook/deploys/670d1763c6132d0008715cf0

netlify[bot] avatar Oct 18 '23 21:10 netlify[bot]

Deploy Preview for authentik-docs canceled.

Name Link
Latest commit 7a02b990bf35d0e490181ab03e8ca57ad059567d
Latest deploy log https://app.netlify.com/sites/authentik-docs/deploys/670d17636986b90008d54e1d

netlify[bot] avatar Mar 24 '24 12:03 netlify[bot]

authentik PR Installation instructions

Instructions for docker-compose

Add the following block to your .env file:

AUTHENTIK_IMAGE=ghcr.io/goauthentik/dev-server
AUTHENTIK_TAG=gh-7a02b990bf35d0e490181ab03e8ca57ad059567d
AUTHENTIK_OUTPOSTS__CONTAINER_IMAGE_BASE=ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)s

For arm64, use these values:

AUTHENTIK_IMAGE=ghcr.io/goauthentik/dev-server
AUTHENTIK_TAG=gh-7a02b990bf35d0e490181ab03e8ca57ad059567d-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:

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-7a02b990bf35d0e490181ab03e8ca57ad059567d

For arm64, use these values:

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-7a02b990bf35d0e490181ab03e8ca57ad059567d-arm64

Afterwards, run the upgrade commands from the latest release notes.

github-actions[bot] avatar Oct 12 '24 00:10 github-actions[bot]