From 13372fffe837a87483cf489df9ec47df9d6da94c Mon Sep 17 00:00:00 2001 From: "M. Rehan" Date: Sun, 22 May 2022 20:01:51 +0500 Subject: [PATCH] Use postgres for home-assistant --- charts/home-assistant/.helmignore | 2 + charts/home-assistant/1.0.0/Chart.yaml | 15 + charts/home-assistant/1.0.0/README.md | 3 + charts/home-assistant/1.0.0/app-readme.md | 1 + .../1.0.0/charts/common-2112.0.0.tgz | Bin 0 -> 4467 bytes charts/home-assistant/1.0.0/ix_values.yaml | 4 + charts/home-assistant/1.0.0/questions.yaml | 265 ++++++++++++++++++ .../1.0.0/templates/_postgres.tpl | 49 ++++ .../templates/backup-postgres-config.yaml | 15 + .../1.0.0/templates/backup-postgres-hook.yaml | 38 +++ .../1.0.0/templates/deployment.yaml | 86 ++++++ .../home-assistance-init-config.yaml | 40 +++ .../1.0.0/templates/postgres-config.yaml | 8 + .../1.0.0/templates/postgres-deployment.yaml | 24 ++ .../1.0.0/templates/postgres-secret.yaml | 11 + .../1.0.0/templates/postgres-service.yaml | 6 + .../1.0.0/templates/pre-install-job.yaml | 33 +++ .../1.0.0/templates/service.yaml | 10 + .../templates/tests/deployment-check.yaml | 21 ++ charts/home-assistant/1.0.0/test_values.yaml | 37 +++ charts/home-assistant/item.yaml | 3 + charts/home-assistant/upgrade_info.json | 1 + charts/home-assistant/upgrade_strategy | 25 ++ test/home-assistant/1.0.0/questions.yaml | 84 ++++++ .../1.0.0/templates/_postgres.tpl | 49 ++++ .../templates/backup-postgres-config.yaml | 15 + .../1.0.0/templates/backup-postgres-hook.yaml | 38 +++ .../1.0.0/templates/deployment.yaml | 34 ++- .../home-assistance-init-config.yaml | 40 +++ .../1.0.0/templates/postgres-config.yaml | 8 + .../1.0.0/templates/postgres-deployment.yaml | 24 ++ .../1.0.0/templates/postgres-secret.yaml | 11 + .../1.0.0/templates/postgres-service.yaml | 6 + .../1.0.0/templates/pre-install-job.yaml | 1 + test/home-assistant/1.0.0/test_values.yaml | 19 ++ 35 files changed, 1025 insertions(+), 1 deletion(-) create mode 100644 charts/home-assistant/.helmignore create mode 100644 charts/home-assistant/1.0.0/Chart.yaml create mode 100644 charts/home-assistant/1.0.0/README.md create mode 100644 charts/home-assistant/1.0.0/app-readme.md create mode 100644 charts/home-assistant/1.0.0/charts/common-2112.0.0.tgz create mode 100644 charts/home-assistant/1.0.0/ix_values.yaml create mode 100644 charts/home-assistant/1.0.0/questions.yaml create mode 100644 charts/home-assistant/1.0.0/templates/_postgres.tpl create mode 100644 charts/home-assistant/1.0.0/templates/backup-postgres-config.yaml create mode 100644 charts/home-assistant/1.0.0/templates/backup-postgres-hook.yaml create mode 100644 charts/home-assistant/1.0.0/templates/deployment.yaml create mode 100644 charts/home-assistant/1.0.0/templates/home-assistance-init-config.yaml create mode 100644 charts/home-assistant/1.0.0/templates/postgres-config.yaml create mode 100644 charts/home-assistant/1.0.0/templates/postgres-deployment.yaml create mode 100644 charts/home-assistant/1.0.0/templates/postgres-secret.yaml create mode 100644 charts/home-assistant/1.0.0/templates/postgres-service.yaml create mode 100644 charts/home-assistant/1.0.0/templates/pre-install-job.yaml create mode 100644 charts/home-assistant/1.0.0/templates/service.yaml create mode 100644 charts/home-assistant/1.0.0/templates/tests/deployment-check.yaml create mode 100644 charts/home-assistant/1.0.0/test_values.yaml create mode 100644 charts/home-assistant/item.yaml create mode 100644 charts/home-assistant/upgrade_info.json create mode 100755 charts/home-assistant/upgrade_strategy create mode 100644 test/home-assistant/1.0.0/templates/_postgres.tpl create mode 100644 test/home-assistant/1.0.0/templates/backup-postgres-config.yaml create mode 100644 test/home-assistant/1.0.0/templates/backup-postgres-hook.yaml create mode 100644 test/home-assistant/1.0.0/templates/home-assistance-init-config.yaml create mode 100644 test/home-assistant/1.0.0/templates/postgres-config.yaml create mode 100644 test/home-assistant/1.0.0/templates/postgres-deployment.yaml create mode 100644 test/home-assistant/1.0.0/templates/postgres-secret.yaml create mode 100644 test/home-assistant/1.0.0/templates/postgres-service.yaml diff --git a/charts/home-assistant/.helmignore b/charts/home-assistant/.helmignore new file mode 100644 index 0000000000..c1347c2c27 --- /dev/null +++ b/charts/home-assistant/.helmignore @@ -0,0 +1,2 @@ +# Patterns to ignore when building packages. +*.png diff --git a/charts/home-assistant/1.0.0/Chart.yaml b/charts/home-assistant/1.0.0/Chart.yaml new file mode 100644 index 0000000000..0c5f0d18e4 --- /dev/null +++ b/charts/home-assistant/1.0.0/Chart.yaml @@ -0,0 +1,15 @@ +apiVersion: v2 +appVersion: "2022.5.3" +icon: https://truecharts.org/_static/img/appicons/home-assistant.png +description: home-assistant App for TrueNAS SCALE +name: home-assistant +version: 1.0.0 +dependencies: +- name: common + repository: file://../../../library/common/2112.0.0 + version: 2112.0.0 +home: https://github.com/home-assistant/home-assistant +keywords: +- home-automation +sources: +- https://github.com/home-assistant/home-assistant diff --git a/charts/home-assistant/1.0.0/README.md b/charts/home-assistant/1.0.0/README.md new file mode 100644 index 0000000000..bcdded4f0a --- /dev/null +++ b/charts/home-assistant/1.0.0/README.md @@ -0,0 +1,3 @@ +# Introduction + +home assistant App for TrueNAS SCALE \ No newline at end of file diff --git a/charts/home-assistant/1.0.0/app-readme.md b/charts/home-assistant/1.0.0/app-readme.md new file mode 100644 index 0000000000..15cfb6b108 --- /dev/null +++ b/charts/home-assistant/1.0.0/app-readme.md @@ -0,0 +1 @@ +home-assistant App for TrueNAS SCALE diff --git a/charts/home-assistant/1.0.0/charts/common-2112.0.0.tgz b/charts/home-assistant/1.0.0/charts/common-2112.0.0.tgz new file mode 100644 index 0000000000000000000000000000000000000000..62c214e1c86f187b4288c35d834eba8b277fc364 GIT binary patch literal 4467 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 F0054o)rkNA literal 0 HcmV?d00001 diff --git a/charts/home-assistant/1.0.0/ix_values.yaml b/charts/home-assistant/1.0.0/ix_values.yaml new file mode 100644 index 0000000000..9f8c99f3a0 --- /dev/null +++ b/charts/home-assistant/1.0.0/ix_values.yaml @@ -0,0 +1,4 @@ +image: + pullPolicy: IfNotPresent + repository: homeassistant/home-assistant + tag: "2022.5.3" diff --git a/charts/home-assistant/1.0.0/questions.yaml b/charts/home-assistant/1.0.0/questions.yaml new file mode 100644 index 0000000000..2afb8ed3fb --- /dev/null +++ b/charts/home-assistant/1.0.0/questions.yaml @@ -0,0 +1,265 @@ +groups: + - name: "Configuration" + description: "Home Assistant application configuration" + - name: "Storage" + description: "Configure storage for homeassistant" + - name: "Networking" + description: "Networking Configuration for homeassistant" + - name: "Advanced DNS Settings" + description: "Configure DNS settings" + +portals: + web_portal: + protocols: + - "http" + host: + - "$node_ip" + ports: + - "$variable-web_port" + path: "/" + +questions: + - variable: web_port + label: "Web Port for homeassistant" + group: Networking + schema: + type: int + min: 8000 + max: 65535 + default: 20810 + required: true + + - variable: timezone + label: "Configure timezone" + group: "Configuration" + description: "Configure timezone for Home Assistant" + schema: + type: string + $ref: + - "definitions/timezone" + + - variable: hostNetwork + label: "Enable Host Network" + group: "Networking" + schema: + type: boolean + default: false + + - variable: dnsConfig + label: "DNS Configuration" + group: "Advanced DNS Settings" + schema: + type: dict + attrs: + - variable: options + label: "DNS Options" + schema: + type: list + items: + - variable: optionsEntry + label: "Option Entry Configuration" + schema: + type: dict + attrs: + - variable: name + label: "Option Name" + schema: + type: string + required: true + - variable: value + label: "Option Value" + schema: + type: string + required: true + + - variable: ownerUID + label: "Storage User ID" + description: "User ID of the storage volume being used (application will chown the storage volume path with specified UID)" + group: Configuration + schema: + type: int + default: 568 + min: 1 + max: 65535 + + - variable: ownerGID + label: "Storage Group ID" + description: "Group ID of the storage volume being used (application will chown the storage volume path with specified GID)" + group: Configuration + schema: + type: int + default: 568 + min: 1 + max: 65535 + + - variable: environmentVariables + label: "Home Assistant environment" + group: "Configuration" + schema: + type: list + default: [] + items: + - variable: environmentVariable + label: "Environment Variable" + schema: + type: dict + attrs: + - variable: name + label: "Name" + schema: + type: string + - variable: value + label: "Value" + schema: + type: string + + - variable: appVolumeMounts + label: "Home Assistant Storage" + group: "Storage" + schema: + type: dict + attrs: + - variable: config + label: "Storage Volume for Configuration" + schema: + type: dict + attrs: + - variable: datasetName + label: "Configuration Storage Volume Dataset Name" + schema: + type: string + hidden: true + $ref: + - "normalize/ixVolume" + show_if: [["hostPathEnabled", "=", false]] + default: "ix-config" + editable: false + - variable: mountPath + label: "Configuration Storage Mount Path" + description: "Path where the volume will be mounted inside the pod" + schema: + type: path + hidden: true + editable: true + default: "/config" + - variable: hostPathEnabled + label: "Enable Custom Host Path for Home Assistant Configuration Storage Volume" + schema: + type: boolean + default: false + show_subquestions_if: true + subquestions: + - variable: hostPath + label: "Host Path for Home Assistant Configuration Storage Volume" + schema: + type: hostpath + required: true + - variable: media + label: "Storage Volume for Media" + schema: + type: dict + attrs: + - variable: datasetName + label: "Media Storage Volume Dataset Name" + schema: + type: string + hidden: true + $ref: + - "normalize/ixVolume" + show_if: [["hostPathEnabled", "=", false]] + default: "ix-media" + editable: false + - variable: mountPath + label: "Media Storage Mount Path" + description: "Path where the volume will be mounted inside the pod" + schema: + type: path + hidden: true + editable: true + default: "/media" + - variable: hostPathEnabled + label: "Enable Custom Host Path for Home Assistant Media Storage Volume" + schema: + type: boolean + default: false + show_subquestions_if: true + subquestions: + - variable: hostPath + label: "Host Path for Home Assistant Media Storage Volume" + schema: + type: hostpath + required: true + + + - variable: postgresAppVolumeMounts + label: "Postgres Storage" + group: "Storage" + schema: + type: dict + hidden: true + attrs: + - variable: postgres-data + label: "Postgres Data Volume" + schema: + type: dict + attrs: + - variable: datasetName + label: "Postgres Data Volume Name" + schema: + type: string + $ref: + - "normalize/ixVolume" + default: "ix-postgres_data" + editable: false + - variable: mountPath + label: "Postgresql Data Mount Path" + description: "Path where the volume will be mounted inside the pod" + schema: + type: path + editable: false + default: "/var/lib/postgresql/data" + - variable: postgres-backup + label: "Postgres Backup Volume" + schema: + type: dict + attrs: + - variable: datasetName + label: "Postgres Backup Volume Name" + schema: + type: string + $ref: + - "normalize/ixVolume" + default: "ix-postgres_backups" + editable: false + - variable: mountPath + label: "Postgresql Backup Mount Path" + description: "Path where the volume will be mounted inside the pod" + schema: + type: path + editable: false + default: "/postgres_backups" + + - variable: extraAppVolumeMounts + label: "Extra Host Path Volumes" + group: "Storage" + schema: + type: list + items: + - variable: extraAppVolume + label: "Host Path Volume" + description: "Add an extra host path volume for Home Assistant application" + schema: + type: dict + attrs: + - variable: mountPath + label: "Mount Path in Pod" + description: "Path where the volume will be mounted inside the pod" + schema: + type: path + required: true + - variable: hostPath + label: "Host Path" + description: "Host path" + schema: + type: hostpath + required: true \ No newline at end of file diff --git a/charts/home-assistant/1.0.0/templates/_postgres.tpl b/charts/home-assistant/1.0.0/templates/_postgres.tpl new file mode 100644 index 0000000000..dcb7404691 --- /dev/null +++ b/charts/home-assistant/1.0.0/templates/_postgres.tpl @@ -0,0 +1,49 @@ +{{/* +Get Home assistance Postgres Database Name +*/}} +{{- define "postgres.DatabaseName" -}} +{{- print "homeassistance" -}} +{{- end -}} + + +{{- define "postgres.imageName" -}} +{{- print "postgres:13.1" -}} +{{- end -}} + + +{{/* +Retrieve postgres backup name +This will return a unique name based on revision and chart numbers specified. +*/}} +{{- define "postgres.backupName" -}} +{{- $upgradeDict := .Values.ixChartContext.upgradeMetadata -}} +{{- printf "postgres-backup-from-%s-to-%s-revision-%d" $upgradeDict.oldChartVersion $upgradeDict.newChartVersion (int64 $upgradeDict.preUpgradeRevision) -}} +{{- end }} + + +{{/* +Retrieve postgres credentials for environment variables configuration +*/}} +{{- define "postgres.envVariableConfiguration" -}} +{{ $envList := list }} +{{ $envList = mustAppend $envList (dict "name" "POSTGRES_USER" "valueFromSecret" true "secretName" "db-details" "secretKey" "db-user") }} +{{ $envList = mustAppend $envList (dict "name" "POSTGRES_PASSWORD" "valueFromSecret" true "secretName" "db-details" "secretKey" "db-password") }} +{{ include "common.containers.environmentVariables" (dict "environmentVariables" $envList) }} +{{- end -}} + + +{{/* +Retrieve postgres volume configuration +*/}} +{{- define "postgres.volumeConfiguration" -}} +{{ include "common.storage.configureAppVolumes" (dict "appVolumeMounts" .Values.postgresAppVolumeMounts "emptyDirVolumes" .Values.emptyDirVolumes "ixVolumes" .Values.ixVolumes) | nindent 0 }} +{{- end -}} + + +{{/* +Retrieve postgres volume mounts configuration +*/}} +{{- define "postgres.volumeMountsConfiguration" -}} +{{ include "common.storage.configureAppVolumeMountsInContainer" (dict "appVolumeMounts" .Values.postgresAppVolumeMounts ) | nindent 0 }} +{{- end -}} + diff --git a/charts/home-assistant/1.0.0/templates/backup-postgres-config.yaml b/charts/home-assistant/1.0.0/templates/backup-postgres-config.yaml new file mode 100644 index 0000000000..c9ccf66dba --- /dev/null +++ b/charts/home-assistant/1.0.0/templates/backup-postgres-config.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: "postgres-backup-hook-config-map" + annotations: + rollme: {{ randAlphaNum 5 | quote }} +data: + entrypoint.sh: |- + #!/bin/sh + cmd="/docker-entrypoint.sh postgres" + eval "${cmd}" & disown; + until pg_isready; do + sleep 5; + done; + pg_dump -U $POSTGRES_USER -d {{ template "postgres.DatabaseName" . }} > /postgres_backups/$BACKUP_NAME; diff --git a/charts/home-assistant/1.0.0/templates/backup-postgres-hook.yaml b/charts/home-assistant/1.0.0/templates/backup-postgres-hook.yaml new file mode 100644 index 0000000000..fe1b71ea24 --- /dev/null +++ b/charts/home-assistant/1.0.0/templates/backup-postgres-hook.yaml @@ -0,0 +1,38 @@ +{{- if .Values.ixChartContext.isUpgrade -}} +{{ $values := (. | mustDeepCopy) }} +{{ $_ := set $values "common" (dict "nameSuffix" "postgres") }} +apiVersion: batch/v1 +kind: Job +metadata: + name: "pre-upgrade-hook" + annotations: + "helm.sh/hook": pre-upgrade + "helm.sh/hook-weight": "1" + "helm.sh/hook-delete-policy": hook-succeeded + rollme: {{ randAlphaNum 5 | quote }} +spec: + template: + metadata: + name: "pre-upgrade-hook" + spec: + restartPolicy: Never + containers: + - name: {{ .Chart.Name }}-postgres-backup + image: {{ template "postgres.imageName" . }} + imagePullPolicy: {{ .Values.image.pullPolicy }} + env: {{ include "postgres.envVariableConfiguration" $values | nindent 10 }} + - name: BACKUP_NAME + value: {{ template "postgres.backupName" . }} + volumeMounts: {{ include "postgres.volumeMountsConfiguration" $values | nindent 10 }} + - name: backup-script-configmap + mountPath: /bin/backup_entrypoint.sh + readOnly: true + subPath: entrypoint.sh + command: + - "/bin/backup_entrypoint.sh" + volumes: {{ include "postgres.volumeConfiguration" $values | nindent 8 }} + - name: backup-script-configmap + configMap: + defaultMode: 0700 + name: "postgres-backup-hook-config-map" +{{- end -}} diff --git a/charts/home-assistant/1.0.0/templates/deployment.yaml b/charts/home-assistant/1.0.0/templates/deployment.yaml new file mode 100644 index 0000000000..d7592023c1 --- /dev/null +++ b/charts/home-assistant/1.0.0/templates/deployment.yaml @@ -0,0 +1,86 @@ +{{ $postgres_values := (. | mustDeepCopy) }} +{{ $_ := set $postgres_values "common" (dict "nameSuffix" "postgres") }} + +apiVersion: {{ template "common.capabilities.deployment.apiVersion" . }} +kind: Deployment +metadata: + name: {{ template "common.names.fullname" . }} + labels: + app: {{ template "common.names.name" . }} + chart: {{ template "common.names.chart" . }} + release: {{ .Release.Name }} + heritage: {{ .Release.Service }} + annotations: + rollme: {{ randAlphaNum 5 | quote }} +spec: + replicas: {{ (default 1 .Values.replicas) }} + strategy: + type: "Recreate" + selector: + matchLabels: + app: {{ template "common.names.name" . }} + release: {{ .Release.Name }} + template: + metadata: + name: {{ template "common.names.fullname" . }} + labels: + app: {{ template "common.names.name" . }} + release: {{ .Release.Name }} + {{- include "common.labels.selectorLabels" . | nindent 8 }} + annotations: {{ include "common.annotations" . | nindent 8 }} + spec: + hostNetwork: {{ .Values.hostNetwork }} + initContainers: + - name: init-postgresdb + image: {{ template "postgres.imageName" . }} + command: ['sh', '-c', "until pg_isready -h {{ template "common.names.fullname" $postgres_values }}; do echo waiting for postgres; sleep 2; done"] + imagePullPolicy: {{ .Values.image.pullPolicy }} + - name: init-configs + image: "alpine:latest" + imagePullPolicy: {{ .Values.image.pullPolicy }} + command: + - "sh" + - "/config/init/init.sh" + env: + {{ $envList := (default list .Values.environmentVariables) }} + {{ $envList = mustAppend $envList (dict "name" "POSTGRES_HOST" "value" (printf "%s:5432" (include "common.names.fullname" $postgres_values))) }} + {{ $envList = mustAppend $envList (dict "name" "POSTGRES_DB" "value" (include "postgres.DatabaseName" .)) }} + {{ $envList = mustAppend $envList (dict "name" "POSTGRES_USER" "valueFromSecret" true "secretName" "db-details" "secretKey" "db-user")}} + {{ $envList = mustAppend $envList (dict "name" "POSTGRES_PASSWORD" "valueFromSecret" true "secretName" "db-details" "secretKey" "db-password")}} + {{ include "common.containers.environmentVariables" (dict "environmentVariables" $envList) | nindent 12 }} + volumeMounts: {{ include "common.storage.configureAppVolumeMountsInContainer" .Values | nindent 12 }} + - name: initial-config-script + mountPath: /config/init + + containers: + - name: {{ .Chart.Name }} + {{ include "common.containers.imageConfig" .Values.image | nindent 10 }} + volumeMounts: {{ include "common.storage.configureAppVolumeMountsInContainer" .Values | nindent 12 }} + {{ range $index, $hostPathConfiguration := .Values.extraAppVolumeMounts }} + - name: extrappvolume-{{ $index }} + mountPath: {{ $hostPathConfiguration.mountPath }} + {{ end }} + + ports: + - name: web + containerPort: 8123 + env: + {{ $databaseName := (include "postgres.DatabaseName" .)}} + {{ $envList := (default list .Values.environmentVariables) }} + {{ $envList = mustAppend $envList (dict "name" "PUID" "value" .Values.ownerUID) }} + {{ $envList = mustAppend $envList (dict "name" "PGID" "value" .Values.ownerGID) }} + {{ $envList = mustAppend $envList (dict "name" "TZ" "value" .Values.timezone) }} + {{ include "common.containers.environmentVariables" (dict "environmentVariables" $envList) | nindent 12 }} + +{{ include "common.networking.dnsConfiguration" .Values | nindent 6 }} + volumes: {{ include "common.storage.configureAppVolumes" .Values | nindent 8 }} + - name: initial-config-script + configMap: + defaultMode: 0700 + name: "home-assistance-initial-script-configmap" + + {{ range $index, $hostPathConfiguration := .Values.extraAppVolumeMounts }} + - name: extrappvolume-{{ $index }} + hostPath: + path: {{ $hostPathConfiguration.hostPath }} + {{ end }} diff --git a/charts/home-assistant/1.0.0/templates/home-assistance-init-config.yaml b/charts/home-assistant/1.0.0/templates/home-assistance-init-config.yaml new file mode 100644 index 0000000000..5a4c03183a --- /dev/null +++ b/charts/home-assistant/1.0.0/templates/home-assistance-init-config.yaml @@ -0,0 +1,40 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: "home-assistance-initial-script-configmap" + annotations: + rollme: {{ randAlphaNum 5 | quote }} +data: + configuration.yaml.default: |- + # Configure a default setup of Home Assistant (frontend, api, etc) + default_config: + + # Text to speech + tts: + - platform: google_translate + + + init.sh: |- + #!/bin/sh + if test -f "/config/configuration.yaml"; then + echo "configuration.yaml exists." + if grep -q recorder: "/config/configuration.yaml"; then + echo "configuration.yaml already contains recorder" + else + cat /config/init/recorder.default >> /config/configuration.yaml + echo " postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}/${POSTGRES_DB}" >> /config/configuration.yaml + fi + else + echo "configuration.yaml does NOT exist." + cp /config/init/configuration.yaml.default /config/configuration.yaml + cat /config/init/recorder.default >> /config/configuration.yaml + echo " postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}/${POSTGRES_DB}" >> /config/configuration.yaml + cat /config/init/http.default >> /config/configuration.yaml + fi + recorder.default: |- + + recorder: + purge_keep_days: 30 + commit_interval: 3 + db_url: + diff --git a/charts/home-assistant/1.0.0/templates/postgres-config.yaml b/charts/home-assistant/1.0.0/templates/postgres-config.yaml new file mode 100644 index 0000000000..8a0c284c51 --- /dev/null +++ b/charts/home-assistant/1.0.0/templates/postgres-config.yaml @@ -0,0 +1,8 @@ +{{ $values := (. | mustDeepCopy) }} +{{ $_ := set $values "common" (dict "nameSuffix" "postgres") }} +apiVersion: v1 +kind: ConfigMap +metadata: + name: posgress-configmap +data: + database_url: {{ template "common.names.fullname" $values }} diff --git a/charts/home-assistant/1.0.0/templates/postgres-deployment.yaml b/charts/home-assistant/1.0.0/templates/postgres-deployment.yaml new file mode 100644 index 0000000000..802ca73911 --- /dev/null +++ b/charts/home-assistant/1.0.0/templates/postgres-deployment.yaml @@ -0,0 +1,24 @@ +{{ $values := (. | mustDeepCopy) }} +{{ $_ := set $values "common" (dict "nameSuffix" "postgres") }} +{{ include "common.deployment.common_config" $values | nindent 0 }} +spec: {{ include "common.deployment.common_spec" $values | nindent 2 }} + template: {{ include "common.deployment.pod.metadata" $values | nindent 4 }} + spec: + hostNetwork: {{ .Values.hostNetwork }} + containers: + - name: {{ .Chart.Name }}-postgres + image: {{ template "postgres.imageName" . }} + imagePullPolicy: {{ .Values.image.pullPolicy }} + env: + {{ $envList := (default list .Values.environmentVariables) }} + {{ $envList = mustAppend $envList (dict "name" "POSTGRES_DB" "value" (include "postgres.DatabaseName" .)) }} + {{ $envList = mustAppend $envList (dict "name" "POSTGRES_USER" "valueFromSecret" true "secretName" "db-details" "secretKey" "db-user")}} + {{ $envList = mustAppend $envList (dict "name" "POSTGRES_PASSWORD" "valueFromSecret" true "secretName" "db-details" "secretKey" "db-password")}} + {{ include "common.containers.environmentVariables" (dict "environmentVariables" $envList) | nindent 10 }} + + volumeMounts: {{ include "postgres.volumeMountsConfiguration" $values | nindent 10 }} + ports: + - name: postgres-tcp + containerPort: 5432 + protocol: TCP + volumes: {{ include "postgres.volumeConfiguration" $values | nindent 8 }} diff --git a/charts/home-assistant/1.0.0/templates/postgres-secret.yaml b/charts/home-assistant/1.0.0/templates/postgres-secret.yaml new file mode 100644 index 0000000000..6700621026 --- /dev/null +++ b/charts/home-assistant/1.0.0/templates/postgres-secret.yaml @@ -0,0 +1,11 @@ +apiVersion: v1 +kind: Secret +metadata: + name: db-details +data: + db-user: {{ "postgres" | b64enc }} + {{- if .Release.IsInstall }} + db-password: {{ randAlphaNum 15 | b64enc | quote }} + {{ else }} + db-password: {{ index (lookup "v1" "Secret" .Release.Namespace "db-details").data "db-password" }} + {{ end }} diff --git a/charts/home-assistant/1.0.0/templates/postgres-service.yaml b/charts/home-assistant/1.0.0/templates/postgres-service.yaml new file mode 100644 index 0000000000..c6603fd62b --- /dev/null +++ b/charts/home-assistant/1.0.0/templates/postgres-service.yaml @@ -0,0 +1,6 @@ +{{ $ports := list }} +{{ $ports = mustAppend $ports (dict "name" "postgres-tcp" "port" 5432 "targetPort" 5432) }} +{{ $values := (. | mustDeepCopy) }} +{{ $_ := set $values "common" (dict "nameSuffix" "postgres") }} +{{ $_1 := set $values "commonService" (dict "type" "ClusterIP" "ports" $ports ) }} +{{ include "common.classes.service" $values }} diff --git a/charts/home-assistant/1.0.0/templates/pre-install-job.yaml b/charts/home-assistant/1.0.0/templates/pre-install-job.yaml new file mode 100644 index 0000000000..2c4074efc9 --- /dev/null +++ b/charts/home-assistant/1.0.0/templates/pre-install-job.yaml @@ -0,0 +1,33 @@ +apiVersion: batch/v1 +kind: Job +metadata: + name: "{{ template "common.names.fullname" . }}-preinstall-job" + labels: + app.kubernetes.io/managed-by: {{ .Release.Service | quote }} + app.kubernetes.io/instance: {{ .Release.Name | quote }} + app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} + helm.sh/chart: {{ template "common.names.chart" . }} + annotations: + "helm.sh/hook": pre-install + "helm.sh/hook-delete-policy": hook-succeeded +spec: + template: + metadata: + name: "{{ template "common.names.fullname" . }}-preinstall-hook" + labels: + app.kubernetes.io/managed-by: {{ .Release.Service | quote }} + app.kubernetes.io/instance: {{ .Release.Name | quote }} + helm.sh/chart: {{ template "common.names.chart" . }} + spec: + restartPolicy: Never + containers: + - name: pre-install-job + image: "alpine:latest" + command: + - "chown" + - "-R" + - "{{ .Values.ownerUID }}:{{ .Values.ownerGID }}" + - "{{ .Values.appVolumeMounts.config.mountPath }}" + - "{{ .Values.appVolumeMounts.media.mountPath }}" + volumeMounts: {{ include "common.storage.configureAppVolumeMountsInContainer" .Values | nindent 12 }} + volumes: {{ include "common.storage.configureAppVolumes" .Values | nindent 8 }} diff --git a/charts/home-assistant/1.0.0/templates/service.yaml b/charts/home-assistant/1.0.0/templates/service.yaml new file mode 100644 index 0000000000..79b48458e5 --- /dev/null +++ b/charts/home-assistant/1.0.0/templates/service.yaml @@ -0,0 +1,10 @@ +{{ $svc := .Values.service }} +{{ $selectors := list }} +{{ $selectors = mustAppend $selectors (dict "key" "app" "value" (include "common.names.name" .) ) }} +{{ $selectors = mustAppend $selectors (dict "key" "release" "value" .Release.Name ) }} +{{ $ports := list }} +{{ $ports = mustAppend $ports (dict "name" "web" "port" .Values.web_port "nodePort" .Values.web_port "targetPort" 8123) }} +{{ $params := . }} +{{ $_ := set $params "commonService" (dict "type" "NodePort" "ports" $ports ) }} +{{ $_1 := set .Values "extraSelectorLabels" $selectors }} +{{ include "common.classes.service" $params }} diff --git a/charts/home-assistant/1.0.0/templates/tests/deployment-check.yaml b/charts/home-assistant/1.0.0/templates/tests/deployment-check.yaml new file mode 100644 index 0000000000..7e888eb0b9 --- /dev/null +++ b/charts/home-assistant/1.0.0/templates/tests/deployment-check.yaml @@ -0,0 +1,21 @@ +{{- $serviceName := (include "common.names.fullname" .) -}} +apiVersion: v1 +kind: Pod +metadata: + name: {{ .Release.Name }}-test-pod + labels: + app: {{ .Release.Name }} + release: {{ .Release.Name }} + annotations: + "helm.sh/hook": test +spec: + containers: + - name: test-curl + image: alpine/curl + imagePullPolicy: "IfNotPresent" + command: + - /bin/sh + - -ec + - | + curl --connect-timeout 5 --max-time 10 --retry 5 --retry-delay 15 --retry-max-time 90 --retry-all-errors -ksf http://{{ $serviceName }}:{{.Values.web_port}}/ + restartPolicy: Never diff --git a/charts/home-assistant/1.0.0/test_values.yaml b/charts/home-assistant/1.0.0/test_values.yaml new file mode 100644 index 0000000000..22dd97d8de --- /dev/null +++ b/charts/home-assistant/1.0.0/test_values.yaml @@ -0,0 +1,37 @@ +image: + pullPolicy: IfNotPresent + repository: homeassistant/home-assistant + tag: "2022.5.3" +environmentVariables: [] +extraAppVolumeMounts: [] +web_port: 32000 +dnsConfig: + options: [] +emptyDirVolumes: true +appVolumeMounts: + config: + emptyDir: true + mountPath: /config + media: + emptyDir: true + mountPath: /media +ownerUID: 568 +ownerGID: 568 +hostNetwork: false +timezone: "America/Los_Angeles" + +postgresAppVolumeMounts: + postgres-backup: + emptyDir: true + mountPath: /postgres_backups + postgres-data: + emptyDir: true + mountPath: /var/lib/postgresql/data +postgresql: + backupVolume: + datasetName: ix-postgres_backups + mountPath: /postgres_backups + dataVolume: + datasetName: ix-postgres_data + mountPath: /var/lib/postgresql/data +ixChartContext: {} diff --git a/charts/home-assistant/item.yaml b/charts/home-assistant/item.yaml new file mode 100644 index 0000000000..2a5998ac2b --- /dev/null +++ b/charts/home-assistant/item.yaml @@ -0,0 +1,3 @@ +icon_url: https://truecharts.org/_static/img/appicons/home-assistant.png +categories: +- home-automation diff --git a/charts/home-assistant/upgrade_info.json b/charts/home-assistant/upgrade_info.json new file mode 100644 index 0000000000..5bf84fb901 --- /dev/null +++ b/charts/home-assistant/upgrade_info.json @@ -0,0 +1 @@ +{"filename": "ix_values.yaml", "keys": ["image"]} diff --git a/charts/home-assistant/upgrade_strategy b/charts/home-assistant/upgrade_strategy new file mode 100755 index 0000000000..7b17b7c084 --- /dev/null +++ b/charts/home-assistant/upgrade_strategy @@ -0,0 +1,25 @@ +#!/usr/bin/python3 +import json +import sys + +from catalog_update.upgrade_strategy import semantic_versioning + + +def newer_mapping(image_tags): + key = list(image_tags.keys())[0] + tags = {t: t for t in image_tags[key]} + version = semantic_versioning(list(tags)) + if not version: + return {} + + return { + 'tags': {key: tags[version]}, + 'app_version': version, + } + + +if __name__ == '__main__': + if len(sys.argv) != 2: + exit(1) + + print(json.dumps(newer_mapping(json.loads(sys.argv[1])))) diff --git a/test/home-assistant/1.0.0/questions.yaml b/test/home-assistant/1.0.0/questions.yaml index 23e00e2522..2afb8ed3fb 100644 --- a/test/home-assistant/1.0.0/questions.yaml +++ b/test/home-assistant/1.0.0/questions.yaml @@ -154,6 +154,90 @@ questions: schema: type: hostpath required: true + - variable: media + label: "Storage Volume for Media" + schema: + type: dict + attrs: + - variable: datasetName + label: "Media Storage Volume Dataset Name" + schema: + type: string + hidden: true + $ref: + - "normalize/ixVolume" + show_if: [["hostPathEnabled", "=", false]] + default: "ix-media" + editable: false + - variable: mountPath + label: "Media Storage Mount Path" + description: "Path where the volume will be mounted inside the pod" + schema: + type: path + hidden: true + editable: true + default: "/media" + - variable: hostPathEnabled + label: "Enable Custom Host Path for Home Assistant Media Storage Volume" + schema: + type: boolean + default: false + show_subquestions_if: true + subquestions: + - variable: hostPath + label: "Host Path for Home Assistant Media Storage Volume" + schema: + type: hostpath + required: true + + + - variable: postgresAppVolumeMounts + label: "Postgres Storage" + group: "Storage" + schema: + type: dict + hidden: true + attrs: + - variable: postgres-data + label: "Postgres Data Volume" + schema: + type: dict + attrs: + - variable: datasetName + label: "Postgres Data Volume Name" + schema: + type: string + $ref: + - "normalize/ixVolume" + default: "ix-postgres_data" + editable: false + - variable: mountPath + label: "Postgresql Data Mount Path" + description: "Path where the volume will be mounted inside the pod" + schema: + type: path + editable: false + default: "/var/lib/postgresql/data" + - variable: postgres-backup + label: "Postgres Backup Volume" + schema: + type: dict + attrs: + - variable: datasetName + label: "Postgres Backup Volume Name" + schema: + type: string + $ref: + - "normalize/ixVolume" + default: "ix-postgres_backups" + editable: false + - variable: mountPath + label: "Postgresql Backup Mount Path" + description: "Path where the volume will be mounted inside the pod" + schema: + type: path + editable: false + default: "/postgres_backups" - variable: extraAppVolumeMounts label: "Extra Host Path Volumes" diff --git a/test/home-assistant/1.0.0/templates/_postgres.tpl b/test/home-assistant/1.0.0/templates/_postgres.tpl new file mode 100644 index 0000000000..dcb7404691 --- /dev/null +++ b/test/home-assistant/1.0.0/templates/_postgres.tpl @@ -0,0 +1,49 @@ +{{/* +Get Home assistance Postgres Database Name +*/}} +{{- define "postgres.DatabaseName" -}} +{{- print "homeassistance" -}} +{{- end -}} + + +{{- define "postgres.imageName" -}} +{{- print "postgres:13.1" -}} +{{- end -}} + + +{{/* +Retrieve postgres backup name +This will return a unique name based on revision and chart numbers specified. +*/}} +{{- define "postgres.backupName" -}} +{{- $upgradeDict := .Values.ixChartContext.upgradeMetadata -}} +{{- printf "postgres-backup-from-%s-to-%s-revision-%d" $upgradeDict.oldChartVersion $upgradeDict.newChartVersion (int64 $upgradeDict.preUpgradeRevision) -}} +{{- end }} + + +{{/* +Retrieve postgres credentials for environment variables configuration +*/}} +{{- define "postgres.envVariableConfiguration" -}} +{{ $envList := list }} +{{ $envList = mustAppend $envList (dict "name" "POSTGRES_USER" "valueFromSecret" true "secretName" "db-details" "secretKey" "db-user") }} +{{ $envList = mustAppend $envList (dict "name" "POSTGRES_PASSWORD" "valueFromSecret" true "secretName" "db-details" "secretKey" "db-password") }} +{{ include "common.containers.environmentVariables" (dict "environmentVariables" $envList) }} +{{- end -}} + + +{{/* +Retrieve postgres volume configuration +*/}} +{{- define "postgres.volumeConfiguration" -}} +{{ include "common.storage.configureAppVolumes" (dict "appVolumeMounts" .Values.postgresAppVolumeMounts "emptyDirVolumes" .Values.emptyDirVolumes "ixVolumes" .Values.ixVolumes) | nindent 0 }} +{{- end -}} + + +{{/* +Retrieve postgres volume mounts configuration +*/}} +{{- define "postgres.volumeMountsConfiguration" -}} +{{ include "common.storage.configureAppVolumeMountsInContainer" (dict "appVolumeMounts" .Values.postgresAppVolumeMounts ) | nindent 0 }} +{{- end -}} + diff --git a/test/home-assistant/1.0.0/templates/backup-postgres-config.yaml b/test/home-assistant/1.0.0/templates/backup-postgres-config.yaml new file mode 100644 index 0000000000..c9ccf66dba --- /dev/null +++ b/test/home-assistant/1.0.0/templates/backup-postgres-config.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: "postgres-backup-hook-config-map" + annotations: + rollme: {{ randAlphaNum 5 | quote }} +data: + entrypoint.sh: |- + #!/bin/sh + cmd="/docker-entrypoint.sh postgres" + eval "${cmd}" & disown; + until pg_isready; do + sleep 5; + done; + pg_dump -U $POSTGRES_USER -d {{ template "postgres.DatabaseName" . }} > /postgres_backups/$BACKUP_NAME; diff --git a/test/home-assistant/1.0.0/templates/backup-postgres-hook.yaml b/test/home-assistant/1.0.0/templates/backup-postgres-hook.yaml new file mode 100644 index 0000000000..fe1b71ea24 --- /dev/null +++ b/test/home-assistant/1.0.0/templates/backup-postgres-hook.yaml @@ -0,0 +1,38 @@ +{{- if .Values.ixChartContext.isUpgrade -}} +{{ $values := (. | mustDeepCopy) }} +{{ $_ := set $values "common" (dict "nameSuffix" "postgres") }} +apiVersion: batch/v1 +kind: Job +metadata: + name: "pre-upgrade-hook" + annotations: + "helm.sh/hook": pre-upgrade + "helm.sh/hook-weight": "1" + "helm.sh/hook-delete-policy": hook-succeeded + rollme: {{ randAlphaNum 5 | quote }} +spec: + template: + metadata: + name: "pre-upgrade-hook" + spec: + restartPolicy: Never + containers: + - name: {{ .Chart.Name }}-postgres-backup + image: {{ template "postgres.imageName" . }} + imagePullPolicy: {{ .Values.image.pullPolicy }} + env: {{ include "postgres.envVariableConfiguration" $values | nindent 10 }} + - name: BACKUP_NAME + value: {{ template "postgres.backupName" . }} + volumeMounts: {{ include "postgres.volumeMountsConfiguration" $values | nindent 10 }} + - name: backup-script-configmap + mountPath: /bin/backup_entrypoint.sh + readOnly: true + subPath: entrypoint.sh + command: + - "/bin/backup_entrypoint.sh" + volumes: {{ include "postgres.volumeConfiguration" $values | nindent 8 }} + - name: backup-script-configmap + configMap: + defaultMode: 0700 + name: "postgres-backup-hook-config-map" +{{- end -}} diff --git a/test/home-assistant/1.0.0/templates/deployment.yaml b/test/home-assistant/1.0.0/templates/deployment.yaml index e1a01f6745..d7592023c1 100644 --- a/test/home-assistant/1.0.0/templates/deployment.yaml +++ b/test/home-assistant/1.0.0/templates/deployment.yaml @@ -1,3 +1,6 @@ +{{ $postgres_values := (. | mustDeepCopy) }} +{{ $_ := set $postgres_values "common" (dict "nameSuffix" "postgres") }} + apiVersion: {{ template "common.capabilities.deployment.apiVersion" . }} kind: Deployment metadata: @@ -27,6 +30,28 @@ spec: annotations: {{ include "common.annotations" . | nindent 8 }} spec: hostNetwork: {{ .Values.hostNetwork }} + initContainers: + - name: init-postgresdb + image: {{ template "postgres.imageName" . }} + command: ['sh', '-c', "until pg_isready -h {{ template "common.names.fullname" $postgres_values }}; do echo waiting for postgres; sleep 2; done"] + imagePullPolicy: {{ .Values.image.pullPolicy }} + - name: init-configs + image: "alpine:latest" + imagePullPolicy: {{ .Values.image.pullPolicy }} + command: + - "sh" + - "/config/init/init.sh" + env: + {{ $envList := (default list .Values.environmentVariables) }} + {{ $envList = mustAppend $envList (dict "name" "POSTGRES_HOST" "value" (printf "%s:5432" (include "common.names.fullname" $postgres_values))) }} + {{ $envList = mustAppend $envList (dict "name" "POSTGRES_DB" "value" (include "postgres.DatabaseName" .)) }} + {{ $envList = mustAppend $envList (dict "name" "POSTGRES_USER" "valueFromSecret" true "secretName" "db-details" "secretKey" "db-user")}} + {{ $envList = mustAppend $envList (dict "name" "POSTGRES_PASSWORD" "valueFromSecret" true "secretName" "db-details" "secretKey" "db-password")}} + {{ include "common.containers.environmentVariables" (dict "environmentVariables" $envList) | nindent 12 }} + volumeMounts: {{ include "common.storage.configureAppVolumeMountsInContainer" .Values | nindent 12 }} + - name: initial-config-script + mountPath: /config/init + containers: - name: {{ .Chart.Name }} {{ include "common.containers.imageConfig" .Values.image | nindent 10 }} @@ -35,18 +60,25 @@ spec: - name: extrappvolume-{{ $index }} mountPath: {{ $hostPathConfiguration.mountPath }} {{ end }} + ports: - name: web containerPort: 8123 env: - {{ $secretName := (include "common.names.fullname" .) }} + {{ $databaseName := (include "postgres.DatabaseName" .)}} {{ $envList := (default list .Values.environmentVariables) }} {{ $envList = mustAppend $envList (dict "name" "PUID" "value" .Values.ownerUID) }} {{ $envList = mustAppend $envList (dict "name" "PGID" "value" .Values.ownerGID) }} {{ $envList = mustAppend $envList (dict "name" "TZ" "value" .Values.timezone) }} {{ include "common.containers.environmentVariables" (dict "environmentVariables" $envList) | nindent 12 }} + {{ include "common.networking.dnsConfiguration" .Values | nindent 6 }} volumes: {{ include "common.storage.configureAppVolumes" .Values | nindent 8 }} + - name: initial-config-script + configMap: + defaultMode: 0700 + name: "home-assistance-initial-script-configmap" + {{ range $index, $hostPathConfiguration := .Values.extraAppVolumeMounts }} - name: extrappvolume-{{ $index }} hostPath: diff --git a/test/home-assistant/1.0.0/templates/home-assistance-init-config.yaml b/test/home-assistant/1.0.0/templates/home-assistance-init-config.yaml new file mode 100644 index 0000000000..5a4c03183a --- /dev/null +++ b/test/home-assistant/1.0.0/templates/home-assistance-init-config.yaml @@ -0,0 +1,40 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: "home-assistance-initial-script-configmap" + annotations: + rollme: {{ randAlphaNum 5 | quote }} +data: + configuration.yaml.default: |- + # Configure a default setup of Home Assistant (frontend, api, etc) + default_config: + + # Text to speech + tts: + - platform: google_translate + + + init.sh: |- + #!/bin/sh + if test -f "/config/configuration.yaml"; then + echo "configuration.yaml exists." + if grep -q recorder: "/config/configuration.yaml"; then + echo "configuration.yaml already contains recorder" + else + cat /config/init/recorder.default >> /config/configuration.yaml + echo " postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}/${POSTGRES_DB}" >> /config/configuration.yaml + fi + else + echo "configuration.yaml does NOT exist." + cp /config/init/configuration.yaml.default /config/configuration.yaml + cat /config/init/recorder.default >> /config/configuration.yaml + echo " postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}/${POSTGRES_DB}" >> /config/configuration.yaml + cat /config/init/http.default >> /config/configuration.yaml + fi + recorder.default: |- + + recorder: + purge_keep_days: 30 + commit_interval: 3 + db_url: + diff --git a/test/home-assistant/1.0.0/templates/postgres-config.yaml b/test/home-assistant/1.0.0/templates/postgres-config.yaml new file mode 100644 index 0000000000..8a0c284c51 --- /dev/null +++ b/test/home-assistant/1.0.0/templates/postgres-config.yaml @@ -0,0 +1,8 @@ +{{ $values := (. | mustDeepCopy) }} +{{ $_ := set $values "common" (dict "nameSuffix" "postgres") }} +apiVersion: v1 +kind: ConfigMap +metadata: + name: posgress-configmap +data: + database_url: {{ template "common.names.fullname" $values }} diff --git a/test/home-assistant/1.0.0/templates/postgres-deployment.yaml b/test/home-assistant/1.0.0/templates/postgres-deployment.yaml new file mode 100644 index 0000000000..802ca73911 --- /dev/null +++ b/test/home-assistant/1.0.0/templates/postgres-deployment.yaml @@ -0,0 +1,24 @@ +{{ $values := (. | mustDeepCopy) }} +{{ $_ := set $values "common" (dict "nameSuffix" "postgres") }} +{{ include "common.deployment.common_config" $values | nindent 0 }} +spec: {{ include "common.deployment.common_spec" $values | nindent 2 }} + template: {{ include "common.deployment.pod.metadata" $values | nindent 4 }} + spec: + hostNetwork: {{ .Values.hostNetwork }} + containers: + - name: {{ .Chart.Name }}-postgres + image: {{ template "postgres.imageName" . }} + imagePullPolicy: {{ .Values.image.pullPolicy }} + env: + {{ $envList := (default list .Values.environmentVariables) }} + {{ $envList = mustAppend $envList (dict "name" "POSTGRES_DB" "value" (include "postgres.DatabaseName" .)) }} + {{ $envList = mustAppend $envList (dict "name" "POSTGRES_USER" "valueFromSecret" true "secretName" "db-details" "secretKey" "db-user")}} + {{ $envList = mustAppend $envList (dict "name" "POSTGRES_PASSWORD" "valueFromSecret" true "secretName" "db-details" "secretKey" "db-password")}} + {{ include "common.containers.environmentVariables" (dict "environmentVariables" $envList) | nindent 10 }} + + volumeMounts: {{ include "postgres.volumeMountsConfiguration" $values | nindent 10 }} + ports: + - name: postgres-tcp + containerPort: 5432 + protocol: TCP + volumes: {{ include "postgres.volumeConfiguration" $values | nindent 8 }} diff --git a/test/home-assistant/1.0.0/templates/postgres-secret.yaml b/test/home-assistant/1.0.0/templates/postgres-secret.yaml new file mode 100644 index 0000000000..6700621026 --- /dev/null +++ b/test/home-assistant/1.0.0/templates/postgres-secret.yaml @@ -0,0 +1,11 @@ +apiVersion: v1 +kind: Secret +metadata: + name: db-details +data: + db-user: {{ "postgres" | b64enc }} + {{- if .Release.IsInstall }} + db-password: {{ randAlphaNum 15 | b64enc | quote }} + {{ else }} + db-password: {{ index (lookup "v1" "Secret" .Release.Namespace "db-details").data "db-password" }} + {{ end }} diff --git a/test/home-assistant/1.0.0/templates/postgres-service.yaml b/test/home-assistant/1.0.0/templates/postgres-service.yaml new file mode 100644 index 0000000000..c6603fd62b --- /dev/null +++ b/test/home-assistant/1.0.0/templates/postgres-service.yaml @@ -0,0 +1,6 @@ +{{ $ports := list }} +{{ $ports = mustAppend $ports (dict "name" "postgres-tcp" "port" 5432 "targetPort" 5432) }} +{{ $values := (. | mustDeepCopy) }} +{{ $_ := set $values "common" (dict "nameSuffix" "postgres") }} +{{ $_1 := set $values "commonService" (dict "type" "ClusterIP" "ports" $ports ) }} +{{ include "common.classes.service" $values }} diff --git a/test/home-assistant/1.0.0/templates/pre-install-job.yaml b/test/home-assistant/1.0.0/templates/pre-install-job.yaml index 4c8aa92a0a..2c4074efc9 100644 --- a/test/home-assistant/1.0.0/templates/pre-install-job.yaml +++ b/test/home-assistant/1.0.0/templates/pre-install-job.yaml @@ -28,5 +28,6 @@ spec: - "-R" - "{{ .Values.ownerUID }}:{{ .Values.ownerGID }}" - "{{ .Values.appVolumeMounts.config.mountPath }}" + - "{{ .Values.appVolumeMounts.media.mountPath }}" volumeMounts: {{ include "common.storage.configureAppVolumeMountsInContainer" .Values | nindent 12 }} volumes: {{ include "common.storage.configureAppVolumes" .Values | nindent 8 }} diff --git a/test/home-assistant/1.0.0/test_values.yaml b/test/home-assistant/1.0.0/test_values.yaml index 289b4adc1c..22dd97d8de 100644 --- a/test/home-assistant/1.0.0/test_values.yaml +++ b/test/home-assistant/1.0.0/test_values.yaml @@ -12,7 +12,26 @@ appVolumeMounts: config: emptyDir: true mountPath: /config + media: + emptyDir: true + mountPath: /media ownerUID: 568 ownerGID: 568 hostNetwork: false timezone: "America/Los_Angeles" + +postgresAppVolumeMounts: + postgres-backup: + emptyDir: true + mountPath: /postgres_backups + postgres-data: + emptyDir: true + mountPath: /var/lib/postgresql/data +postgresql: + backupVolume: + datasetName: ix-postgres_backups + mountPath: /postgres_backups + dataVolume: + datasetName: ix-postgres_data + mountPath: /var/lib/postgresql/data +ixChartContext: {}