From 1d9c9db1d3ea9e725aeeeb776c71f402cbc5fbce Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Thu, 22 Dec 2022 22:57:34 +0100 Subject: [PATCH] update docs Signed-off-by: Jens Langhammer --- website/developer-docs/blueprints/index.md | 13 +++++++++++-- website/docs/releases/2022/v2022.12.md | 1 + 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/website/developer-docs/blueprints/index.md b/website/developer-docs/blueprints/index.md index 0713fb9a0..8e5e0fd05 100644 --- a/website/developer-docs/blueprints/index.md +++ b/website/developer-docs/blueprints/index.md @@ -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//blueprint/:latest :application/vnd.goauthentik.blueprint.v1+yaml +oras push ghcr.io//blueprint/:latest \ + :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//blueprint/:latest \ + blueprint1.yaml:application/vnd.goauthentik.blueprint.v1+yaml \ + blueprint2.yaml:application/vnd.goauthentik.blueprint.v1+yaml ``` ## Storage - Internal diff --git a/website/docs/releases/2022/v2022.12.md b/website/docs/releases/2022/v2022.12.md index ab71d2641..eabd63d97 100644 --- a/website/docs/releases/2022/v2022.12.md +++ b/website/docs/releases/2022/v2022.12.md @@ -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.