update docs

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer 2022-12-22 22:57:34 +01:00 committed by Jens Langhammer
parent 9dfe06fb18
commit 1d9c9db1d3
No known key found for this signature in database
2 changed files with 12 additions and 2 deletions

View File

@ -46,10 +46,19 @@ To fetch blueprints from a private registry with authentication, credentials can
Blueprints are re-fetched each execution, so when using changing tags, blueprints will automatically be updated.
To push a blueprint to an OCI-compatible registry, [ORAS](https://oras.land/) can be used with this command
To push a blueprint to an OCI-compatible registry, [ORAS](https://oras.land) can be used with this command
```
oras push ghcr.io/<username>/blueprint/<blueprint name>:latest <yaml file>:application/vnd.goauthentik.blueprint.v1+yaml
oras push ghcr.io/<username>/blueprint/<blueprint name>:latest \
<yaml file>:application/vnd.goauthentik.blueprint.v1+yaml
```
Starting with authentik 2022.12, blueprints hosted in OCI registries can contain multiple blueprints in a single package. To push an artifact with multiple files, just append more files to the command above:
```
oras push ghcr.io/<username>/blueprint/<blueprint name>:latest \
blueprint1.yaml:application/vnd.goauthentik.blueprint.v1+yaml \
blueprint2.yaml:application/vnd.goauthentik.blueprint.v1+yaml
```
## Storage - Internal

View File

@ -31,6 +31,7 @@ slug: "/releases/2022.12"
The captcha stage now supports alternate compatible providers, like [hCaptcha](https://docs.hcaptcha.com/switch/) and [Turnstile](https://developers.cloudflare.com/turnstile/get-started/migrating-from-recaptcha/).
## Upgrading
This release does not introduce any new requirements.