Update argocd/authentik/values.yaml

This commit is contained in:
2022-09-29 14:22:19 +00:00
parent 76a637b8b6
commit 03d9cb7332

View File

@@ -19,7 +19,7 @@ authentik:
tag: 2022.9.0 tag: 2022.9.0
# -- optional container image digest # -- optional container image digest
digest: "" digest: ""
pullPolicy: IfNotPresent pullPolicy: Always
pullSecrets: [] pullSecrets: []
# -- See https://github.com/k8s-at-home/library-charts/tree/main/charts/stable/common#values # -- See https://github.com/k8s-at-home/library-charts/tree/main/charts/stable/common#values
@@ -29,23 +29,27 @@ authentik:
additionalContainers: {} additionalContainers: {}
ingress: ingress:
enabled: false enabled: true
ingressClassName: "" ingressClassName: "nginx"
annotations: {} annotations:
cert-manager.io/cluster-issuer: letsencrypt-production
labels: {} labels: {}
hosts: hosts:
- host: authentik.domain.tld - host: authentik.durp.info
paths: paths:
- path: "/" - path: "/"
pathType: Prefix pathType: Prefix
tls: [] tls:
- secretName: authentik-tls
hosts:
- authentik.durp.info
authentik: authentik:
# -- Log level for server and worker # -- Log level for server and worker
log_level: info log_level: info
# -- Secret key used for cookie singing and unique user IDs, # -- Secret key used for cookie singing and unique user IDs,
# don't change this after the first install # 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. # -- Path for the geoip database. If the file doesn't exist, GeoIP features are disabled.
geoip: /geoip/GeoLite2-City.mmdb geoip: /geoip/GeoLite2-City.mmdb
# -- Mode for the avatars. Defaults to gravatar. Possible options 'gravatar' and 'none' # -- Mode for the avatars. Defaults to gravatar. Possible options 'gravatar' and 'none'