-
-
Notifications
You must be signed in to change notification settings - Fork 991
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
website/docs: add procedurals to flow inspector docs #9556
Conversation
✅ Deploy Preview for authentik-storybook canceled.
|
✅ Deploy Preview for authentik-docs ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #9556 +/- ##
==========================================
+ Coverage 92.45% 92.50% +0.04%
==========================================
Files 669 669
Lines 32712 32899 +187
==========================================
+ Hits 30245 30433 +188
+ Misses 2467 2466 -1
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
authentik PR Installation instructions Instructions for docker-composeAdd the following block to your AUTHENTIK_IMAGE=ghcr.io/goauthentik/dev-server
AUTHENTIK_TAG=gh-ghcr.io/goauthentik/dev-server:gh-1cfcc8bd6e84ccdb9d97358ea6ca7f69adf57b1b
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-1cfcc8bd6e84ccdb9d97358ea6ca7f69adf57b1b-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 KubernetesAdd the following block to your 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-1cfcc8bd6e84ccdb9d97358ea6ca7f69adf57b1b 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-1cfcc8bd6e84ccdb9d97358ea6ca7f69adf57b1b-arm64 Afterwards, run the upgrade commands from the latest release notes. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A few nitpicks.
website/docs/flow/inspector.md
Outdated
|
||
:::info | ||
When running a flow with the inspector enabled, the flow is still executed normally. This means that for example, a [User write](../flow/stages/user_write.md) stage will _actually_ write user data. | ||
Be aware that when running a flow with the inspector enabled, the flow is still executed normally. This means that for example, a [User write](../flow/stages/user_write.md) stage will _actually_ write user data. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"akshualllllly" is one of those words that makes me twitch.
"For example, even with the flow inspector enabled, executing a User write will write user data."
website/docs/flow/inspector.md
Outdated
When developing authentik with the debug-mode enabled, the inspector is enabled by default and can be accessed by both unauthenticated users and standard users. However the debug-mode should only be used for the development of authentik. | ||
3. On the Flow's detail page, on the left side under **Execute Flow**, click **with inspector**. | ||
|
||
4. The selected flow will launch in a new browser window, with the Inspector displayed to the right. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Window or Tab?
website/docs/flow/inspector.md
Outdated
|
||
4. The selected flow will launch in a new browser window, with the Inspector displayed to the right. | ||
|
||
Alternatively, to launch the inspector a user with the correct permission can add the query parameter `?inspector` to the URL when a flow is designated in the URL; that is when you have a flow open. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Suggestion: "Alternatively, a user with the correct permission can launch the inspector by adding the query parameter ?inspector
to the URL when the URL opens on a flow."
* main: (42 commits) website/docs: prepare 2024.4.2 release notes (#9555) web: bump the esbuild group in /web with 2 updates (#9616) translate: Updates for file locale/en/LC_MESSAGES/django.po in ru (#9611) translate: Updates for file locale/en/LC_MESSAGES/django.po in zh_CN (#9560) translate: Updates for file locale/en/LC_MESSAGES/django.po in zh-Hans (#9563) ci: bump golangci/golangci-lint-action from 5 to 6 (#9615) web: bump esbuild from 0.20.2 to 0.21.0 in /web (#9617) core: bump cryptography from 42.0.6 to 42.0.7 (#9618) core: bump sentry-sdk from 2.0.1 to 2.1.1 (#9619) core: bump django from 5.0.4 to 5.0.5 (#9620) core, web: update translations (#9613) website/docs: move Sources from Integrations into Docs (#9515) website/docs: add procedurals to flow inspector docs (#9556) core: bump jinja2 from 3.1.3 to 3.1.4 (#9610) web: clean up the options rendering in PromptForm (#9564) translate: Updates for file locale/en/LC_MESSAGES/django.po in ru (#9608) website/docs: add instructions for deploying radius manually with docker compose (#9605) sources/scim: fix duplicate groups and invalid schema (#9466) core: fix condition in task clean_expiring_models (#9603) translate: Updates for file web/xliff/en.xlf in fr (#9600) ...
This PR adds steps about how to open the Flow Inspector, permissions needed, when to use (and not use) Debug mode. Adds a link to Permissions doc.
make website
)