Skip to content

Commit

Permalink
correctly bump main chart (#155)
Browse files Browse the repository at this point in the history
* correctly bump main chart

* remove default avatars setting
  • Loading branch information
BeryJu authored Apr 23, 2023
1 parent b8a8b40 commit bc77232
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion charts/authentik/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ dependencies:
version: 4.2.0
- name: authentik-remote-cluster
repository: https://charts.goauthentik.io
version: 1.1.0
version: 1.1.2
condition: serviceAccount.create
alias: serviceAccount
annotations:
Expand Down
4 changes: 2 additions & 2 deletions charts/authentik/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ redis:
| Repository | Name | Version |
|------------|------|---------|
| https://charts.goauthentik.io | serviceAccount(authentik-remote-cluster) | 1.1.0 |
| https://charts.goauthentik.io | serviceAccount(authentik-remote-cluster) | 1.1.2 |
| https://charts.goauthentik.io | postgresql | 10.16.2 |
| https://charts.goauthentik.io | redis | 15.7.6 |
| https://library-charts.k8s-at-home.com | common | 4.2.0 |
Expand All @@ -66,7 +66,6 @@ redis:
|-----|------|---------|-------------|
| additionalContainers | object | `{}` | See https://github.com/k8s-at-home/library-charts/tree/main/charts/stable/common#values |
| affinity | object | `{}` | affinity applied to the deployments |
| authentik.avatars | string | `"gravatar"` | Mode for the avatars. Defaults to gravatar. Possible options 'gravatar' and 'none' |
| 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, not authentication will be done |
Expand Down Expand Up @@ -154,6 +153,7 @@ redis:
| service.type | string | `"ClusterIP"` | |
| serviceAccount.annotations | object | `{}` | |
| serviceAccount.create | bool | `true` | Service account is needed for managed outposts |
| serviceAccount.serviceAccountSecret.enabled | bool | `false` | As we use the authentik-remote-cluster chart as subchart, and that chart creates a service account secret by default which we don't need here, disable its creation |
| tolerations | list | `[]` | |
| volumeMounts | list | `[]` | |
| volumes | list | `[]` | |
Expand Down
6 changes: 4 additions & 2 deletions charts/authentik/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,6 @@ authentik:
secret_key: ""
# -- 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'
avatars: gravatar
email:
# -- SMTP Server emails are sent from, fully optional
host: ""
Expand Down Expand Up @@ -169,6 +167,10 @@ serviceAccount:
# -- Service account is needed for managed outposts
create: true
annotations: {}
serviceAccountSecret:
# -- As we use the authentik-remote-cluster chart as subchart, and that chart
# creates a service account secret by default which we don't need here, disable its creation
enabled: false

prometheus:
serviceMonitor:
Expand Down

0 comments on commit bc77232

Please sign in to comment.