Skip to content

Commit

Permalink
Merge branch 'refs/heads/dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
oussama Dahmaz authored and oussama Dahmaz committed Jan 4, 2025
2 parents 3c80c5b + c8e200e commit f3d4172
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
8 changes: 5 additions & 3 deletions charts/homarr/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down
7 changes: 4 additions & 3 deletions charts/homarr/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

<img src="https://raw.githubusercontent.com/homarr-labs/charts/refs/heads/main/charts/homarr/icon.svg" align="right" width="92" alt="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

Expand Down Expand Up @@ -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") |
Expand All @@ -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 |
Expand Down
4 changes: 3 additions & 1 deletion charts/homarr/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit f3d4172

Please sign in to comment.