From c43049a981bcc6836b9239b1bb19b221c52ea77b Mon Sep 17 00:00:00 2001
From: Jens Langhammer <jens.langhammer@beryju.org>
Date: Mon, 15 Nov 2021 15:58:04 +0100
Subject: [PATCH] website/docs: remove deprecated docker_image_base

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
---
 authentik/lib/default.yml                                     | 2 +-
 website/developer-docs/setup/frontend-only-dev-environment.md | 2 +-
 website/docs/installation/beta.mdx                            | 4 ++--
 website/docs/installation/configuration.md                    | 2 +-
 4 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/authentik/lib/default.yml b/authentik/lib/default.yml
index fa88ee2c7..3c7715906 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: env://AUTHENTIK_OUTPOSTS__DOCKER_IMAGE_BASE?goauthentik.io/%(type)s:%(version)s
+  container_image_base: goauthentik.io/%(type)s:%(version)s
 
 cookie_domain: null
 disable_update_check: false
diff --git a/website/developer-docs/setup/frontend-only-dev-environment.md b/website/developer-docs/setup/frontend-only-dev-environment.md
index 21edfd337..33adfaec4 100644
--- a/website/developer-docs/setup/frontend-only-dev-environment.md
+++ b/website/developer-docs/setup/frontend-only-dev-environment.md
@@ -19,7 +19,7 @@ If you want to only make changes on the UI, you don't need a backend running fro
     ```
     AUTHENTIK_IMAGE=goauthentik.io/dev-server
     AUTHENTIK_TAG=gh-next
-    AUTHENTIK_OUTPOSTS__DOCKER_IMAGE_BASE=goauthentik.io/dev-%(type)s:gh-next
+    AUTHENTIK_OUTPOSTS__CONTAINER_IMAGE_BASE=goauthentik.io/dev-%(type)s:gh-next
     AUTHENTIK_LOG_LEVEL=debug
     AUTHENTIK_WEB_LOAD_LOCAL_FILES=true
     ```
diff --git a/website/docs/installation/beta.mdx b/website/docs/installation/beta.mdx
index 34c0599f9..ee44ac5c1 100644
--- a/website/docs/installation/beta.mdx
+++ b/website/docs/installation/beta.mdx
@@ -19,7 +19,7 @@ Add the following block to your `.env` file:
 ```shell
 AUTHENTIK_IMAGE=goauthentik.io/dev-server
 AUTHENTIK_TAG=gh-next
-AUTHENTIK_OUTPOSTS__DOCKER_IMAGE_BASE=goauthentik.io/dev-%(type)s:gh-next
+AUTHENTIK_OUTPOSTS__CONTAINER_IMAGE_BASE=goauthentik.io/dev-%(type)s:gh-next
 ```
 
 Afterwards, run the upgrade commands from the latest releasae notes.
@@ -30,7 +30,7 @@ Add the following block to your `values.yml` file:
 ```yaml
 authentik:
   outposts:
-    docker_image_base: goauthentik.io/dev-%(type)s:gh-%(build_hash)s
+    container_image_base: goauthentik.io/dev-%(type)s:gh-%(build_hash)s
 image:
   repository: goauthentik.io/dev-server
   tag: gh-next
diff --git a/website/docs/installation/configuration.md b/website/docs/installation/configuration.md
index 76ba8f7f1..a7c207298 100644
--- a/website/docs/installation/configuration.md
+++ b/website/docs/installation/configuration.md
@@ -126,7 +126,7 @@ Disable the inbuilt update-checker. Defaults to `false`.
 
 ### AUTHENTIK_OUTPOSTS
 
-- `AUTHENTIK_OUTPOSTS__DOCKER_IMAGE_BASE`
+- `AUTHENTIK_OUTPOSTS__CONTAINER_IMAGE_BASE`
 
   Placeholders:
    - `%(type)s`: Outpost type; proxy, ldap, etc