Files
truecharts/charts/stable/home-assistant/SCALE/ix_values.yaml
T
Kjeld Schouten-LebbingandGitHub 74b7c860ea (feat) add postgresql to homeassistant (#1128)
* (feat) add postgresql to homeassistant

* bump
2021-10-13 12:02:40 +02:00

34 lines
1.1 KiB
YAML

##
# This file contains Values.yaml content that gets added to the output of questions.yaml
# It's ONLY meant for content that the user is NOT expected to change.
# Example: Everything under "image" is not included in questions.yaml but is included here.
##
image:
repository: ghcr.io/truecharts/home-assistant
pullPolicy: IfNotPresent
tag: v2021.10.4@sha256:6f5892e307edd0b135f4ccab1ecee70518e0418b26e6264c23c67d1982eece86
initContainers:
init-db:
image: "{{ .Values.alpineImage.repository }}:{{ .Values.alpineImage.tag }}"
command: ["/usr/sbin/init.sh"]
volumeMounts:
- name: init
mountPath: /usr/sbin
- name: config
mountPath: /config
# -- 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
##
# Most other defaults are set in questions.yaml
# For other options please refer to the wiki, default_values.yaml or the common library chart
##