2021-06-13 21:56:38 +00:00
|
|
|
```yaml
|
|
|
|
# Log level that the outpost will set
|
2021-12-21 12:14:09 +00:00
|
|
|
# Allowed levels: trace, debug, info, warning, error
|
2022-08-18 12:29:53 +00:00
|
|
|
# Applies to: non-embedded
|
2021-06-13 21:56:38 +00:00
|
|
|
log_level: debug
|
|
|
|
########################################
|
|
|
|
# The settings below are only relevant when using a managed outpost
|
|
|
|
########################################
|
|
|
|
# URL that the outpost uses to connect back to authentik
|
|
|
|
authentik_host: https://authentik.tld/
|
|
|
|
# Disable SSL Validation for the authentik connection
|
|
|
|
authentik_host_insecure: false
|
2021-09-26 10:00:51 +00:00
|
|
|
# Optionally specify a different URL used for user-facing interactions
|
2022-08-18 12:29:53 +00:00
|
|
|
# Applies to: proxy outposts
|
2021-09-26 10:00:51 +00:00
|
|
|
authentik_host_browser:
|
2021-10-27 13:04:59 +00:00
|
|
|
# Template used for objects created (deployments/containers, services, secrets, etc)
|
2021-06-13 21:56:38 +00:00
|
|
|
object_naming_template: ak-outpost-%(name)s
|
2021-10-14 17:54:56 +00:00
|
|
|
# Use a specific docker image for this outpost rather than the default. This also applies to Kubernetes
|
|
|
|
# outposts.
|
2022-08-18 12:29:53 +00:00
|
|
|
# Applies to: non-embedded
|
2021-10-27 13:04:59 +00:00
|
|
|
container_image:
|
2021-06-13 21:56:38 +00:00
|
|
|
########################################
|
2021-10-03 17:43:56 +00:00
|
|
|
# Docker outpost specific settings
|
2021-06-13 21:56:38 +00:00
|
|
|
########################################
|
2021-08-27 17:10:30 +00:00
|
|
|
# Network the outpost container should be connected to
|
2022-08-18 12:29:53 +00:00
|
|
|
# Applies to: non-embedded
|
2021-08-27 17:10:30 +00:00
|
|
|
docker_network: null
|
2021-09-29 21:55:22 +00:00
|
|
|
# Optionally disable mapping of ports to outpost container, may be useful when using docker networks
|
|
|
|
# (Available with 2021.9.4+)
|
2022-08-18 12:29:53 +00:00
|
|
|
# Applies to: non-embedded
|
2021-09-29 21:55:22 +00:00
|
|
|
docker_map_ports: true
|
2022-01-23 20:55:58 +00:00
|
|
|
# Optionally additional labels for docker containers
|
|
|
|
# (Available with 2022.1.2)
|
2022-08-18 12:29:53 +00:00
|
|
|
# Applies to: non-embedded
|
2022-01-23 20:55:58 +00:00
|
|
|
docker_labels: null
|
2021-08-27 17:10:30 +00:00
|
|
|
########################################
|
|
|
|
# Kubernetes outpost specific settings
|
|
|
|
########################################
|
2021-06-13 21:56:38 +00:00
|
|
|
# Replica count for the deployment of the outpost
|
2022-08-18 12:29:53 +00:00
|
|
|
# Applies to: non-embedded
|
2021-06-13 21:56:38 +00:00
|
|
|
kubernetes_replicas: 1
|
|
|
|
# Namespace to deploy in, defaults to the same namespace authentik is deployed in (if available)
|
|
|
|
kubernetes_namespace: authentik
|
|
|
|
# Any additional annotations to add to the ingress object, for example cert-manager
|
|
|
|
kubernetes_ingress_annotations: {}
|
|
|
|
# Name of the secret that is used for TLS connections
|
|
|
|
kubernetes_ingress_secret_name: authentik-outpost-tls
|
|
|
|
# Service kind created, can be set to LoadBalancer for LDAP outposts for example
|
|
|
|
kubernetes_service_type: ClusterIP
|
|
|
|
# Disable any components of the kubernetes integration, can be any of
|
|
|
|
# - 'secret'
|
|
|
|
# - 'deployment'
|
|
|
|
# - 'service'
|
2021-09-09 13:52:24 +00:00
|
|
|
# - 'prometheus servicemonitor'
|
2021-06-13 21:56:38 +00:00
|
|
|
# - 'ingress'
|
|
|
|
# - 'traefik middleware'
|
|
|
|
kubernetes_disabled_components: []
|
2021-10-14 17:54:56 +00:00
|
|
|
# If the above docker image is in a private repository, use these secrets to pull.
|
|
|
|
# NOTE: The secret must be created manually in the namespace first.
|
2022-08-18 12:29:53 +00:00
|
|
|
# Applies to: non-embedded
|
2021-10-14 17:54:56 +00:00
|
|
|
kubernetes_image_pull_secrets: []
|
2022-11-14 13:24:11 +00:00
|
|
|
# Optionally configure an ingress class name. If not set, the ingress will use the cluster's
|
|
|
|
# default ingress class
|
|
|
|
# (Available with 2022.11.0+)
|
|
|
|
# Applies to: proxy outposts
|
|
|
|
kubernetes_ingress_class_name: null
|
2021-06-13 21:56:38 +00:00
|
|
|
```
|