outposts: fix controller not using token.key

This commit is contained in:
Jens Langhammer 2020-12-14 11:03:49 +01:00
parent e9bb583b32
commit a3d361f500
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ class SecretReconciler(KubernetesObjectReconciler[V1Secret]):
"authentik_host_insecure": b64string( "authentik_host_insecure": b64string(
str(self.controller.outpost.config.authentik_host_insecure) str(self.controller.outpost.config.authentik_host_insecure)
), ),
"token": b64string(self.controller.outpost.token.token_uuid.hex), "token": b64string(self.controller.outpost.token.key),
}, },
) )