From 03d9cb73326122d3438511f379b98c2d4e579ec0 Mon Sep 17 00:00:00 2001 From: DeveloperDurp Date: Thu, 29 Sep 2022 14:22:19 +0000 Subject: [PATCH] Update argocd/authentik/values.yaml --- argocd/authentik/values.yaml | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/argocd/authentik/values.yaml b/argocd/authentik/values.yaml index 24f6a55..d5a479d 100644 --- a/argocd/authentik/values.yaml +++ b/argocd/authentik/values.yaml @@ -19,7 +19,7 @@ authentik: tag: 2022.9.0 # -- optional container image digest digest: "" - pullPolicy: IfNotPresent + pullPolicy: Always pullSecrets: [] # -- See https://github.com/k8s-at-home/library-charts/tree/main/charts/stable/common#values @@ -29,23 +29,27 @@ authentik: additionalContainers: {} ingress: - enabled: false - ingressClassName: "" - annotations: {} + enabled: true + ingressClassName: "nginx" + annotations: + cert-manager.io/cluster-issuer: letsencrypt-production labels: {} hosts: - - host: authentik.domain.tld + - host: authentik.durp.info paths: - path: "/" pathType: Prefix - tls: [] + tls: + - secretName: authentik-tls + hosts: + - authentik.durp.info authentik: # -- Log level for server and worker log_level: info # -- Secret key used for cookie singing and unique user IDs, # don't change this after the first install - secret_key: "" + secret_key: "Password@123" # -- Path for the geoip database. If the file doesn't exist, GeoIP features are disabled. geoip: /geoip/GeoLite2-City.mmdb # -- Mode for the avatars. Defaults to gravatar. Possible options 'gravatar' and 'none'