Skip to content

Commit

Permalink
charts/authentik: allow additional objects to be created
Browse files Browse the repository at this point in the history
Signed-off-by: Marc 'risson' Schmitt <[email protected]>
  • Loading branch information
rissson committed Jan 6, 2024
1 parent ce02884 commit fd2c101
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions charts/authentik/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ redis:
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| additionalObjects | list | `[]` | additional resources to deploy. Those objects are templated. |
| authentik.email.from | string | `""` | Email from address, can either be in the format "[email protected]" or "authentik <[email protected]>" |
| authentik.email.host | string | `""` | SMTP Server emails are sent from, fully optional |
| authentik.email.password | string | `""` | SMTP credentials, when left empty, no authentication will be done |
Expand Down
4 changes: 4 additions & 0 deletions charts/authentik/templates/additional-objects.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{{- range .Values.additionalObjects }}
---
{{- tpl (toYaml . ) . }}
{{- end }}
9 changes: 9 additions & 0 deletions charts/authentik/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -784,6 +784,7 @@ worker:
# maxSurge: 25%
# maxUnavailable: 25%


serviceAccount:
# -- Create service account. Needed for managed outposts
create: true
Expand All @@ -795,6 +796,7 @@ serviceAccount:
# disable its creation
enabled: false


geoip:
# -- enable GeoIP sidecars for the authentik server and worker pods
enabled: false
Expand Down Expand Up @@ -867,6 +869,7 @@ geoip:
# drop:
# - ALL


prometheus:
rules:
enabled: false
Expand All @@ -881,6 +884,7 @@ prometheus:
# -- PrometheusRule annotations
annotations: {}


postgresql:
# -- enable the Bitnami PostgreSQL chart. Refer to https://github.com/bitnami/charts/blob/main/bitnami/postgresql/ for possible values.
enabled: false
Expand All @@ -897,9 +901,14 @@ postgresql:
# accessModes:
# - ReadWriteOnce


redis:
# -- enable the Bitnami Redis chart. Refer to https://github.com/bitnami/charts/blob/main/bitnami/redis/ for possible values.
enabled: false
architecture: standalone
auth:
enabled: false


# -- additional resources to deploy. Those objects are templated.
additionalObjects: []

0 comments on commit fd2c101

Please sign in to comment.