diff --git a/charts/homarr/Chart.yaml b/charts/homarr/Chart.yaml index 0b368b1..866083a 100644 --- a/charts/homarr/Chart.yaml +++ b/charts/homarr/Chart.yaml @@ -3,9 +3,9 @@ name: homarr description: A Helm chart to deploy homarr for Kubernetes home: https://homarr-labs.github.io/charts/charts/homarr/ type: application -version: 1.1.0 +version: 1.2.0 # renovate datasource=docker depName=ghcr.io/homarr-labs/homarr -appVersion: "v1.0.0-beta.10" +appVersion: "v1.0.0-beta.11" icon: https://raw.githubusercontent.com/homarr-labs/charts/refs/heads/main/charts/homarr/icon.svg kubeVersion: ">=1.22.0-0" dependencies: @@ -24,7 +24,9 @@ annotations: url: https://homarr-labs.github.io/charts/pgp_keys.asc artifacthub.io/changes: |- - kind: changed - description: update SSO env variables + description: update app version to v1.0.0-beta.11 + - kind: added + description: added AUTH_OIDC_NAME_ATTRIBUTE_OVERWRITE as env variable artifacthub.io/links: |- - name: App Source url: https://github.com/homarr-labs/homarr diff --git a/charts/homarr/README.md b/charts/homarr/README.md index c75a776..8a31fbf 100644 --- a/charts/homarr/README.md +++ b/charts/homarr/README.md @@ -2,9 +2,9 @@ homarr logo -![Version: 1.1.0](https://img.shields.io/badge/Version-1.1.0-informational?style=flat) +![Version: 1.2.0](https://img.shields.io/badge/Version-1.2.0-informational?style=flat) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat) -![AppVersion: v1.0.0-beta.10](https://img.shields.io/badge/AppVersion-v1.0.0--beta.10-informational?style=flat) +![AppVersion: v1.0.0-beta.11](https://img.shields.io/badge/AppVersion-v1.0.0--beta.11-informational?style=flat) A Helm chart to deploy homarr for Kubernetes @@ -288,6 +288,7 @@ All available values are listed on the [artifacthub](https://artifacthub.io/pack | env.AUTH_OIDC_CLIENT_NAME | string | `"OIDC"` | Display name of provider (in login screen) | | env.AUTH_OIDC_GROUPS_ATTRIBUTE | string | `"groups"` | Attribute used for groups (roles) claim | | env.AUTH_OIDC_ISSUER | string | `nil` | Issuer URI of OIDC provider without trailing slash (/) | +| env.AUTH_OIDC_NAME_ATTRIBUTE_OVERWRITE | string | `nil` | Overwrite name attribute. By default, it will use preferred_username if it does not contain a @ and otherwise name. | | env.AUTH_OIDC_SCOPE_OVERWRITE | string | `"openid email profile groups"` | Override the OIDC scopes | | env.AUTH_PROVIDERS | string | `"credentials"` | Enabled authentication methods. Multiple providers can be enabled with by separating them with , (ex. AUTH_PROVIDERS=credentials,oidc, it is highly recommended to just enable one provider). | | env.AUTH_SESSION_EXPIRY_TIME | string | `"30d"` | Time for the session to time out. Can be set as pure number, which will automatically be used in seconds, or followed by s, m, h or d for seconds, minutes, hours or days. (ex: "30m") | @@ -305,7 +306,7 @@ All available values are listed on the [artifacthub](https://artifacthub.io/pack | fullnameOverride | string | `""` | Overrides chart's fullname | | image.pullPolicy | string | `"IfNotPresent"` | Image pull policy | | image.repository | string | `"ghcr.io/homarr-labs/homarr"` | Image repository | -| image.tag | string | `"v1.0.0-beta.10"` | Overrides the image tag whose default is the chart appVersion | +| image.tag | string | `"v1.0.0-beta.11"` | Overrides the image tag whose default is the chart appVersion | | imagePullSecrets | list | `[]` | Secrets for Docker registry | | imagesCopy.enabled | bool | `false` | Set to true to enable the init container for copying local images to the PVC. Requires homarr-images PVC to be enabled. | | imagesCopy.pathToLocalImages | string | `"/path-to-local-images"` | The path where local images are stored for copying to the PVC | diff --git a/charts/homarr/values.yaml b/charts/homarr/values.yaml index 27ca6df..409f52d 100644 --- a/charts/homarr/values.yaml +++ b/charts/homarr/values.yaml @@ -10,7 +10,7 @@ image: # -- Image pull policy pullPolicy: IfNotPresent # -- Overrides the image tag whose default is the chart appVersion - tag: "v1.0.0-beta.10" + tag: "v1.0.0-beta.11" env: # -- Your local time zone @@ -53,6 +53,8 @@ env: AUTH_OIDC_SCOPE_OVERWRITE: "openid email profile groups" # -- Attribute used for groups (roles) claim AUTH_OIDC_GROUPS_ATTRIBUTE: "groups" + # -- Overwrite name attribute. By default, it will use preferred_username if it does not contain a @ and otherwise name. + AUTH_OIDC_NAME_ATTRIBUTE_OVERWRITE: database: # -- Enable external database