Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sources: add SCIM source #3051

Merged
merged 30 commits into from
Apr 15, 2024
Merged

sources: add SCIM source #3051

merged 30 commits into from
Apr 15, 2024

Conversation

BeryJu
Copy link
Member

@BeryJu BeryJu commented Jun 6, 2022

Add SCIM source which provides endpoints for other applications to create/read/update/delete users and groups in authentik

@netlify
Copy link

netlify bot commented Jun 6, 2022

👷 Deploy Preview for authentik processing.

Name Link
🔨 Latest commit 10d76fa
🔍 Latest deploy log https://app.netlify.com/sites/authentik/deploys/6555f47832f4fd0008d369ab

@codecov
Copy link

codecov bot commented Jun 6, 2022

Codecov Report

Attention: Patch coverage is 89.79592% with 55 lines in your changes are missing coverage. Please review.

Project coverage is 92.37%. Comparing base (bc9984f) to head (1d0ad2a).
Report is 1 commits behind head on main.

Files Patch % Lines
authentik/sources/scim/views/v2/base.py 74.35% 20 Missing ⚠️
authentik/sources/scim/views/v2/groups.py 79.45% 15 Missing ⚠️
authentik/sources/scim/api/sources.py 67.64% 11 Missing ⚠️
authentik/sources/scim/views/v2/users.py 88.31% 9 Missing ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##             main    #3051      +/-   ##
==========================================
- Coverage   92.41%   92.37%   -0.05%     
==========================================
  Files         647      665      +18     
  Lines       32011    32549     +538     
==========================================
+ Hits        29584    30067     +483     
- Misses       2427     2482      +55     
Flag Coverage Δ
e2e 50.66% <66.04%> (+0.27%) ⬆️
integration 26.02% <6.67%> (-0.33%) ⬇️
unit 89.66% <79.96%> (-0.17%) ⬇️

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

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@chaosgrid
Copy link

SCIM source would be great to have, is there an ETA for it? :)

@netlify
Copy link

netlify bot commented Sep 26, 2023

Deploy Preview for authentik-storybook ready!

Name Link
🔨 Latest commit 1d0ad2a
🔍 Latest deploy log https://app.netlify.com/sites/authentik-storybook/deploys/661d0cb624293c0007b9934f
😎 Deploy Preview https://deploy-preview-3051--authentik-storybook.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.

Copy link
Contributor

@tanberry tanberry left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM on the docs!

Copy link

netlify bot commented Mar 29, 2024

Deploy Preview for authentik-docs canceled.

Name Link
🔨 Latest commit 1d0ad2a
🔍 Latest deploy log https://app.netlify.com/sites/authentik-docs/deploys/661d0cb6e0c2cf0008899905

@BeryJu BeryJu force-pushed the sources/scim branch 3 times, most recently from f19b938 to cc0baa0 Compare April 7, 2024 16:55
Copy link
Contributor

github-actions bot commented Apr 7, 2024

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-ghcr.io/goauthentik/dev-server:gh-1d0ad2ad01a3653024fe190cc6cc2009e30fbf13
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-ghcr.io/goauthentik/dev-server:gh-1d0ad2ad01a3653024fe190cc6cc2009e30fbf13-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
image:
    repository: ghcr.io/goauthentik/dev-server
    tag: gh-ghcr.io/goauthentik/dev-server:gh-1d0ad2ad01a3653024fe190cc6cc2009e30fbf13

For arm64, use these values:

authentik:
    outposts:
        container_image_base: ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)s
image:
    repository: ghcr.io/goauthentik/dev-server
    tag: gh-ghcr.io/goauthentik/dev-server:gh-1d0ad2ad01a3653024fe190cc6cc2009e30fbf13-arm64

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

BeryJu and others added 24 commits April 15, 2024 12:48
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com>
Signed-off-by: Jens L. <jens@beryju.org>
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
BeryJu added 2 commits April 15, 2024 13:00
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
@BeryJu BeryJu merged commit 3c28cf1 into main Apr 15, 2024
65 of 66 checks passed
@BeryJu BeryJu deleted the sources/scim branch April 15, 2024 12:23
kensternberg-authentik added a commit that referenced this pull request Apr 16, 2024
* main: (34 commits)
  web: bump API Client version (#9299)
  core: fix api schema for users and groups (#9298)
  providers/oauth2: fix refresh_token grant returning incorrect id_token (#9275)
  web: bump @sentry/browser from 7.110.0 to 7.110.1 in /web in the sentry group (#9278)
  core, web: update translations (#9277)
  web: bump the rollup group in /web with 3 updates (#9280)
  web: bump lit from 3.1.2 to 3.1.3 in /web (#9282)
  web: bump @lit/context from 1.1.0 to 1.1.1 in /web (#9281)
  website: bump @types/react from 18.2.78 to 18.2.79 in /website (#9286)
  core: bump goauthentik.io/api/v3 from 3.2024022.10 to 3.2024022.11 (#9285)
  core: bump sqlparse from 0.4.4 to 0.5.0 (#9276)
  lifecycle: gunicorn: fix app preload (#9274)
  events: add indexes (#9272)
  web/flows: fix passwordless hidden without input (#9273)
  root: fix geoipupdate arguments (#9271)
  website/docs: cleanup more (#9249)
  web: bump API Client version (#9270)
  sources: add SCIM source (#3051)
  core: delegated group member management (#9254)
  web: bump API Client version (#9269)
  ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants