This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
|
[ghcr.io/authelia/authelia](https://redirect.github.com/authelia/authelia/pkgs/container/authelia)
([source](https://redirect.github.com/authelia/authelia)) | patch |
`7422c90` -> `7045ca3` |
---
> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.
Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.
---
### Release Notes
<details>
<summary>authelia/authelia (ghcr.io/authelia/authelia)</summary>
###
[`v4.39.3`](https://redirect.github.com/authelia/authelia/releases/tag/v4.39.3)
[Compare
Source](https://redirect.github.com/authelia/authelia/compare/v4.39.2...v4.39.3)
##### Bug Fixes
- **oidc:** rfc9068 jwt strategy not configured
([#​9479](https://redirect.github.com/authelia/authelia/issues/9479))
([785eab9](https://redirect.github.com/authelia/authelia/commit/785eab9c3a977a1c1d43d5e0f9198041b79b0991)),
closes
[#​9478](https://redirect.github.com/authelia/authelia/issues/9478)
- **web:** fetch webauthn when disabled
([#​9482](https://redirect.github.com/authelia/authelia/issues/9482))
([bc318fa](https://redirect.github.com/authelia/authelia/commit/bc318faffc5e4605e4e9e786c9d0ec4e9e92cac0))
- **web:** no redirection to completion view
([#​9480](https://redirect.github.com/authelia/authelia/issues/9480))
([0a4c2f2](https://redirect.github.com/authelia/authelia/commit/0a4c2f22b76ad9dae62ca39120df08470a1d70f6))
##### Docker Container
- `docker pull authelia/authelia:4.39.3`
- `docker pull ghcr.io/authelia/authelia:4.39.3`
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).
🚦 **Automerge**: Enabled.
♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvcGF0Y2giXX0=-->
86 lines
2.6 KiB
YAML
86 lines
2.6 KiB
YAML
image:
|
|
repository: ghcr.io/authelia/authelia
|
|
pullPolicy: IfNotPresent
|
|
tag: 4.39.3@sha256:7045ca3c14731634e0c05e1afff03aba66b12b4f518c839c32a65d5c59a56b12
|
|
|
|
# Raw Authelia configuration
|
|
# Replace it with your configuration
|
|
# https://www.authelia.com/configuration/prologue/introduction/
|
|
authelia:
|
|
access_control:
|
|
default_policy: one_factor
|
|
session:
|
|
cookies:
|
|
- domain: example.com
|
|
authelia_url: https://example.com
|
|
|
|
workload:
|
|
main:
|
|
replicas: 2
|
|
strategy: RollingUpdate
|
|
podSpec:
|
|
containers:
|
|
main:
|
|
env:
|
|
# Update the following secrets with your own values
|
|
AUTHELIA_SESSION_SECRET: some-secret-replace-me
|
|
AUTHELIA_IDENTITY_VALIDATION_RESET_PASSWORD_JWT_SECRET: some-secret-replace-me
|
|
AUTHELIA_STORAGE_ENCRYPTION_KEY: some-secret-replace-me
|
|
# Don't change the following envs
|
|
X_AUTHELIA_CONFIG: "{{ .Values.persistence.configfile.mountPath }}"
|
|
AUTHELIA_SERVER_DISABLE_HEALTHCHECK: "true"
|
|
AUTHELIA_SERVER_ADDRESS: "tcp://:{{ .Values.service.main.ports.main.port }}/"
|
|
AUTHELIA_STORAGE_POSTGRES_ADDRESS: "tcp://{{ .Values.cnpg.main.creds.host }}:{{ .Values.cnpg.main.creds.port }}"
|
|
AUTHELIA_STORAGE_POSTGRES_DATABASE: "{{ .Values.cnpg.main.database }}"
|
|
AUTHELIA_STORAGE_POSTGRES_USERNAME: "{{ .Values.cnpg.main.user }}"
|
|
AUTHELIA_STORAGE_POSTGRES_PASSWORD: '{{ .Values.cnpg.main.creds.password | trimAll "\"" }}'
|
|
AUTHELIA_SESSION_REDIS_HOST: '{{ .Values.redis.creds.plain | trimAll "\"" }}'
|
|
AUTHELIA_SESSION_REDIS_PORT: "{{ .Values.redis.service.main.ports.main.port }}"
|
|
AUTHELIA_SESSION_REDIS_DATABASE_INDEX: "0"
|
|
AUTHELIA_SESSION_REDIS_PASSWORD: '{{ .Values.redis.creds.redisPassword | trimAll "\"" }}'
|
|
|
|
probes:
|
|
liveness:
|
|
type: http
|
|
path: "/api/health"
|
|
readiness:
|
|
type: http
|
|
path: "/api/health"
|
|
startup:
|
|
type: http
|
|
path: "/api/health"
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 9091
|
|
|
|
secret:
|
|
authelia-configfile:
|
|
enabled: true
|
|
data:
|
|
configuration.yaml: |
|
|
{{- $.Values.authelia | toYaml | nindent 2 }}
|
|
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
mountPath: /config
|
|
configfile:
|
|
enabled: true
|
|
mountPath: /configuration.yaml
|
|
subPath: configuration.yaml
|
|
readOnly: true
|
|
type: secret
|
|
objectName: authelia-configfile
|
|
|
|
cnpg:
|
|
main:
|
|
enabled: true
|
|
user: authelia
|
|
database: authelia
|
|
|
|
redis:
|
|
enabled: true
|
|
includeCommon: true
|