83 lines
1.9 KiB
YAML
83 lines
1.9 KiB
YAML
# Default values for Home Assistant
|
|
|
|
image:
|
|
repository: ghcr.io/truecharts/home-assistant
|
|
pullPolicy: IfNotPresent
|
|
tag: v2021.10.6@sha256:d3b2d15cc83cf20ca5ab827f1fd84b78af61d7658ec34820e9c792f5219168ca
|
|
|
|
env:
|
|
PUID: 568
|
|
|
|
securityContext:
|
|
readOnlyRootFilesystem: false
|
|
runAsNonRoot: false
|
|
|
|
podSecurityContext:
|
|
runAsUser: 0
|
|
runAsGroup: 0
|
|
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 8123
|
|
|
|
initContainers:
|
|
init:
|
|
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
|
|
command: ["/config/init/init.sh"]
|
|
volumeMounts:
|
|
- name: init
|
|
mountPath: /config/init
|
|
- name: config
|
|
mountPath: /config
|
|
|
|
# # Enable devices to be discoverable
|
|
# hostNetwork: true
|
|
|
|
# # When hostNetwork is true set dnsPolicy to ClusterFirstWithHostNet
|
|
# dnsPolicy: ClusterFirstWithHostNet
|
|
|
|
# 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"
|
|
type: pvc
|
|
accessMode: ReadWriteOnce
|
|
size: "100Gi"
|
|
|
|
# -- Enable and configure postgresql database subchart under this key.
|
|
# For more options see [postgresql chart documentation](https://github.com/bitnami/charts/tree/master/bitnami/postgresql)
|
|
# @default -- See values.yaml
|
|
postgresql:
|
|
enabled: true
|
|
postgresqlUsername: home-assistant
|
|
postgresqlDatabase: home-assistant
|
|
existingSecret: "dbcreds"
|
|
|
|
# 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
|