Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
egeback committed Dec 7, 2024
1 parent 6a3d4b0 commit c5b1146
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 3 deletions.
4 changes: 2 additions & 2 deletions charts/home-assistant/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 2024.12
description: Home Assistant helm package
name: home-assistant
version: 1.1.27
version: 1.1.28
kubeVersion: ">=1.16.0-0"
keywords:
- home-assistant
Expand Down Expand Up @@ -32,5 +32,5 @@ dependencies:
annotations:
artifacthub.io/changes: |
- kind: changed
description: Update to home-assistant version 2024.12
description: Fix for https://github.com/home-assistant/core/issues/132336
4 changes: 3 additions & 1 deletion charts/home-assistant/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# home-assistant

![Version: 1.1.27](https://img.shields.io/badge/Version-1.1.27-informational?style=flat-square) ![AppVersion: 2024.12](https://img.shields.io/badge/AppVersion-2024.12-informational?style=flat-square)
![Version: 1.1.28](https://img.shields.io/badge/Version-1.1.28-informational?style=flat-square) ![AppVersion: 2024.12](https://img.shields.io/badge/AppVersion-2024.12-informational?style=flat-square)

Home Assistant helm package

Expand Down Expand Up @@ -31,6 +31,8 @@ Kubernetes: `>=1.16.0-0`

| Key | Type | Default | Description |
|-----|------|---------|-------------|
| configMaps.passwd.data.passwd | string | `"fake-user:x:1000:1000:workaround for home-assistant/core/issues/132336::\n"` | |
| configMaps.passwd.enabled | bool | `true` | |
| controllers.main.containers.code.enabled | bool | `false` | |
| controllers.main.containers.code.env | object | See below | environment variables. See more environment variables in the [home-assistant documentation](https://home-assistant.org/docs). |
| controllers.main.containers.code.image.repository | string | `"causticlab/hass-configurator-docker"` | image repository |
Expand Down
20 changes: 20 additions & 0 deletions charts/home-assistant/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,29 @@ securityContext:
# -- (bool) Privileged securityContext may be required if USB devics are accessed directly through the host machine
privileged: # true


configMaps:
passwd:
# passwd -- workaround for https://github.com/home-assistant/core/issues/132336.
# @default -- See values.yaml
enabled: true
data:
passwd: |
fake-user:x:1000:1000:workaround for home-assistant/core/issues/132336::
# -- Configure persistence settings for the chart under this key.
# @default -- See values.yaml
persistence:
passwd-walkarround:
type: configMap
name: passwd
advancedMounts:
main:
main:
- path: /etc/passwd
readOnly: true
subPath: passwd
config:
enabled: false
# -- Configure a hostPathMount to mount a USB device in the container.
Expand Down

0 comments on commit c5b1146

Please sign in to comment.