diff --git a/charts/authentik/Chart.yaml b/charts/authentik/Chart.yaml index c1e14856..48281d88 100644 --- a/charts/authentik/Chart.yaml +++ b/charts/authentik/Chart.yaml @@ -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: diff --git a/charts/authentik/README.md b/charts/authentik/README.md index c74fc652..74d8fcf8 100644 --- a/charts/authentik/README.md +++ b/charts/authentik/README.md @@ -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 | @@ -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 "foo@bar.baz" or "authentik " | | 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 | @@ -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 | `[]` | | diff --git a/charts/authentik/values.yaml b/charts/authentik/values.yaml index 2c0786a1..6f0e4e0e 100644 --- a/charts/authentik/values.yaml +++ b/charts/authentik/values.yaml @@ -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: "" @@ -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: