remove common references to the addons (we don't use them yet) (+23 squashed commit) Squashed commit: [042fc006] try slight modification to testing framework [6955bdad] another small qbittorrent fix [30af6b78] fix one bitwarden error (anotherone left [ac54db9f] enable firefly port [a9e58eca] push qbittorrent fix [99840038] fixed transmission [ffe8a49e] template all the things... [26c7b4d1] this should just work (tm) [fcacae4c] try a transmission fix [8d21bd91] merge unittests and app tests to limit amount of running jobs [343ba579] more services polish [c133342f] some small fixes [5979e653] fix some port references [15a1defa] oops [2458d7e9] increase common version again [7f74f1cf] change way ports are handled [73c479cb] fix services naming scheme [501aeffc] update common version again [726954b0] fix emptydir reference for tests [66774955] pump major versions [6fa711d1] update common-version for all [671a7b31] PUID and PGID changes for automated tests (non-gui changes) [3dc21053] hostpathmounts and gpu changes
110 lines
2.4 KiB
YAML
110 lines
2.4 KiB
YAML
# Default values for Home Assistant
|
|
|
|
image:
|
|
repository: homeassistant/home-assistant
|
|
pullPolicy: IfNotPresent
|
|
tag: 2021.5.0
|
|
|
|
strategy:
|
|
type: Recreate
|
|
|
|
# Configure the Security Context for the Pod
|
|
podSecurityContext:
|
|
runAsNonRoot: false
|
|
runAsUser: 0
|
|
runAsGroup: 0
|
|
fsGroup: 0
|
|
supplementalGroups: [5, 20, 24]
|
|
|
|
env: {}
|
|
# TZ:
|
|
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 8123
|
|
|
|
# # Enable devices to be discoverable
|
|
# hostNetwork: true
|
|
|
|
# # When hostNetwork is true set dnsPolicy to ClusterFirstWithHostNet
|
|
# dnsPolicy: ClusterFirstWithHostNet
|
|
|
|
# # Enable passing thru a USB device to Home Assistant
|
|
# securityContext:
|
|
# privileged: true
|
|
|
|
# Allow access a Git repository by passing in a private SSH key
|
|
git:
|
|
# Raw SSH private key
|
|
deployKey: ""
|
|
# Base64-encoded SSH private key. When both variables are set, the raw SSH key takes precedence.
|
|
deployKeyBase64: ""
|
|
|
|
# Enable a prometheus-operator servicemonitor
|
|
prometheus:
|
|
serviceMonitor:
|
|
enabled: false
|
|
# interval: 1m
|
|
# additionalLabels: {}
|
|
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
mountPath: "/config"
|
|
emptyDir:
|
|
enabled: true
|
|
accessMode: ReadWriteOnce
|
|
size: 1Gi
|
|
storageClass: ""
|
|
|
|
# # Path to your Z-Wave / Zigbee device in the container
|
|
# additionalVolumeMounts:
|
|
# - name: zwave-usb
|
|
# mountPath: /dev/serial/by-id/usb-0658_0200-if00
|
|
|
|
# # Path to your Z-Wave / Zigbee device on the host
|
|
# additionalVolumes:
|
|
# - name: zwave-usb
|
|
# hostPath:
|
|
# path: /dev/serial/by-id/usb-0658_0200-if00
|
|
|
|
# Enabled mariadb
|
|
# ... for more options see https://github.com/bitnami/charts/tree/master/bitnami/mariadb
|
|
mariadb:
|
|
enabled: false
|
|
architecture: standalone
|
|
auth:
|
|
database: home-assistant
|
|
username: home-assistant
|
|
password: home-assistant-pass
|
|
rootPassword: home-assistantrootpass
|
|
primary:
|
|
persistence:
|
|
enabled: false
|
|
# storageClass: ""
|
|
|
|
# Enabled postgres
|
|
# ... for more options see https://github.com/bitnami/charts/tree/master/bitnami/postgresql
|
|
postgresql:
|
|
enabled: false
|
|
postgresqlUsername: home-assistant
|
|
postgresqlPassword: home-assistant-pass
|
|
postgresqlDatabase: home-assistant
|
|
persistence:
|
|
enabled: false
|
|
# storageClass: ""
|
|
|
|
# Enable influxdb
|
|
# ... for more options see https://github.com/bitnami/charts/tree/master/bitnami/influxdb
|
|
influxdb:
|
|
enabled: false
|
|
architecture: standalone
|
|
database: home_assistant
|
|
authEnabled: false
|
|
persistence:
|
|
enabled: false
|
|
# storageClass: ""
|
|
# size: 8Gi
|