From ca314c262ccc8f78b725dfef85a43e6b3bfeb28c Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Tue, 21 Dec 2021 13:54:49 +0100 Subject: [PATCH] *: revert to using GHCR directly Signed-off-by: Jens Langhammer --- authentik/lib/default.yml | 2 +- docker-compose.yml | 4 ++-- .../developer-docs/setup/frontend-only-dev-environment.md | 4 ++-- website/docs/installation/beta.mdx | 8 ++++---- website/docs/installation/configuration.md | 2 +- website/docs/releases/v2021.10.md | 2 +- website/docs/releases/v2021.12.md | 2 +- website/docs/releases/v2021.8.md | 2 +- website/docs/releases/v2021.9.md | 2 +- 9 files changed, 14 insertions(+), 14 deletions(-) diff --git a/authentik/lib/default.yml b/authentik/lib/default.yml index c9e843340..4b6304678 100644 --- a/authentik/lib/default.yml +++ b/authentik/lib/default.yml @@ -64,7 +64,7 @@ outposts: # %(type)s: Outpost type; proxy, ldap, etc # %(version)s: Current version; 2021.4.1 # %(build_hash)s: Build hash if you're running a beta version - container_image_base: goauthentik.io/%(type)s:%(version)s + container_image_base: ghcr.io/goauthentik/%(type)s:%(version)s cookie_domain: null disable_update_check: false diff --git a/docker-compose.yml b/docker-compose.yml index ee2882b22..536fbee9d 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -17,7 +17,7 @@ services: image: redis:alpine restart: unless-stopped server: - image: ${AUTHENTIK_IMAGE:-goauthentik.io/server}:${AUTHENTIK_TAG:-2021.12.2} + image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2021.12.2} restart: unless-stopped command: server environment: @@ -38,7 +38,7 @@ services: - "0.0.0.0:9000:9000" - "0.0.0.0:9443:9443" worker: - image: ${AUTHENTIK_IMAGE:-goauthentik.io/server}:${AUTHENTIK_TAG:-2021.12.2} + image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik}:${AUTHENTIK_TAG:-2021.12.2} restart: unless-stopped command: worker environment: diff --git a/website/developer-docs/setup/frontend-only-dev-environment.md b/website/developer-docs/setup/frontend-only-dev-environment.md index e6b72a69e..676a54487 100644 --- a/website/developer-docs/setup/frontend-only-dev-environment.md +++ b/website/developer-docs/setup/frontend-only-dev-environment.md @@ -17,9 +17,9 @@ If you want to only make changes on the UI, you don't need a backend running fro 3. Add the following entry to your `.env` file: ``` - AUTHENTIK_IMAGE=goauthentik.io/dev-server + AUTHENTIK_IMAGE=ghcr.io/goauthentik/dev-server AUTHENTIK_TAG=gh-next - AUTHENTIK_OUTPOSTS__CONTAINER_IMAGE_BASE=goauthentik.io/dev-%(type)s:gh-next + AUTHENTIK_OUTPOSTS__CONTAINER_IMAGE_BASE=ghcr.io/goauthentik/dev-%(type)s:gh-next AUTHENTIK_LOG_LEVEL=debug ``` diff --git a/website/docs/installation/beta.mdx b/website/docs/installation/beta.mdx index ee44ac5c1..732d148fc 100644 --- a/website/docs/installation/beta.mdx +++ b/website/docs/installation/beta.mdx @@ -17,9 +17,9 @@ import TabItem from '@theme/TabItem'; Add the following block to your `.env` file: ```shell -AUTHENTIK_IMAGE=goauthentik.io/dev-server +AUTHENTIK_IMAGE=ghcr.io/goauthentik/dev-server AUTHENTIK_TAG=gh-next -AUTHENTIK_OUTPOSTS__CONTAINER_IMAGE_BASE=goauthentik.io/dev-%(type)s:gh-next +AUTHENTIK_OUTPOSTS__CONTAINER_IMAGE_BASE=ghcr.io/goauthentik/dev-%(type)s:gh-next ``` Afterwards, run the upgrade commands from the latest releasae notes. @@ -30,9 +30,9 @@ Add the following block to your `values.yml` file: ```yaml authentik: outposts: - container_image_base: goauthentik.io/dev-%(type)s:gh-%(build_hash)s + container_image_base: ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)s image: - repository: goauthentik.io/dev-server + repository: ghcr.io/goauthentik/dev-server tag: gh-next # pullPolicy: Always to ensure you always get the latest version pullPolicy: Always diff --git a/website/docs/installation/configuration.md b/website/docs/installation/configuration.md index 61939aded..b1c54e934 100644 --- a/website/docs/installation/configuration.md +++ b/website/docs/installation/configuration.md @@ -136,7 +136,7 @@ Disable the inbuilt update-checker. Defaults to `false`. - `%(version)s`: Current version; 2021.4.1 - `%(build_hash)s`: Build hash if you're running a beta version - Placeholder for outpost docker images. Default: `goauthentik.io/%(type)s:%(version)s`. + Placeholder for outpost docker images. Default: `ghcr.io/goauthentik/%(type)s:%(version)s`. ### AUTHENTIK_AVATARS diff --git a/website/docs/releases/v2021.10.md b/website/docs/releases/v2021.10.md index ffddd2452..57002eecc 100644 --- a/website/docs/releases/v2021.10.md +++ b/website/docs/releases/v2021.10.md @@ -233,6 +233,6 @@ Update your values to use the new images: ```yaml image: - repository: goauthentik.io/server + repository: ghcr.io/goauthentik/server tag: 2021.10.1 ``` diff --git a/website/docs/releases/v2021.12.md b/website/docs/releases/v2021.12.md index 73c8f2dbd..e1322efe4 100644 --- a/website/docs/releases/v2021.12.md +++ b/website/docs/releases/v2021.12.md @@ -191,6 +191,6 @@ Update your values to use the new images: ```yaml image: - repository: goauthentik.io/server + repository: ghcr.io/goauthentik/server tag: 2021.12.1-rc1 ``` diff --git a/website/docs/releases/v2021.8.md b/website/docs/releases/v2021.8.md index b1ee3ed50..2fa01bdf3 100644 --- a/website/docs/releases/v2021.8.md +++ b/website/docs/releases/v2021.8.md @@ -151,6 +151,6 @@ Update your values to use the new images: ```yaml image: - repository: goauthentik.io/server + repository: ghcr.io/goauthentik/server tag: 2021.8.5 ``` diff --git a/website/docs/releases/v2021.9.md b/website/docs/releases/v2021.9.md index cb3a1a7f9..774aa4ab9 100644 --- a/website/docs/releases/v2021.9.md +++ b/website/docs/releases/v2021.9.md @@ -206,6 +206,6 @@ Update your values to use the new images: ```yaml image: - repository: goauthentik.io/server + repository: ghcr.io/goauthentik/server tag: 2021.9.1 ```