From fa5f379a53cc5c82d1bd7ef0d94367212890b29c Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Tue, 23 Mar 2021 18:31:26 +0100 Subject: [PATCH] outposts: fix docker image not having correct tag Signed-off-by: Jens Langhammer --- outpost/azure-pipelines.yml | 2 +- website/docs/installation/beta.mdx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/outpost/azure-pipelines.yml b/outpost/azure-pipelines.yml index 5e7a5d9b8..d1c089918 100644 --- a/outpost/azure-pipelines.yml +++ b/outpost/azure-pipelines.yml @@ -99,7 +99,7 @@ stages: - task: Docker@2 inputs: containerRegistry: 'beryjuorg-harbor' - repository: 'authentik/proxy' + repository: 'authentik/outpost-proxy' command: 'buildAndPush' Dockerfile: 'outpost/proxy.Dockerfile' buildContext: 'outpost/' diff --git a/website/docs/installation/beta.mdx b/website/docs/installation/beta.mdx index 370d1eaf4..8ff51b511 100644 --- a/website/docs/installation/beta.mdx +++ b/website/docs/installation/beta.mdx @@ -20,7 +20,7 @@ Add the following block to your `.env` file: AUTHENTIK_IMAGE=docker.beryju.org/authentik/server AUTHENTIK_IMAGE_STATIC=docker.beryju.org/authentik/static AUTHENTIK_TAG=gh-next -AUTHENTIK_OUTPOSTS__DOCKER_IMAGE_BASE=docker.beryju.org/authentik +AUTHENTIK_OUTPOSTS__DOCKER_IMAGE_BASE=docker.beryju.org/authentik/outpost ``` Afterwards, run the upgrade commands from the [release notes](../releases/next) @@ -32,7 +32,7 @@ Add the following block to your `values.yml` file: image: name: docker.beryju.org/authentik/server name_static: docker.beryju.org/authentik/static - name_outposts: docker.beryju.org/authentik + name_outposts: docker.beryju.org/authentik/outpost tag: gh-next # pullPolicy: Always to ensure you always get the latest version pullPolicy: Always