From 7358653626759776e943a9ff2ae48affe4198734 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=97=AA=D1=94=CE=BD=CE=B9=CE=B7=20=E1=97=B7=CF=85=D0=BD?= =?UTF-8?q?=CA=9F?= Date: Wed, 23 Dec 2020 10:46:42 -0500 Subject: [PATCH] [home-assistant] allow setting a base64-encoded SSH private key (#430) * [home-assistant] allow setting a base64-encoded SSH private key * [home-assistant] allow setting a base64-encoded SSH private key --- charts/home-assistant/Chart.yaml | 2 +- charts/home-assistant/templates/common.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/home-assistant/Chart.yaml b/charts/home-assistant/Chart.yaml index 8d83d5b7..193d4a84 100644 --- a/charts/home-assistant/Chart.yaml +++ b/charts/home-assistant/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 2020.12.1 description: Home Assistant name: home-assistant -version: 5.2.0 +version: 5.2.1 keywords: - home-assistant - hass diff --git a/charts/home-assistant/templates/common.yaml b/charts/home-assistant/templates/common.yaml index 07f6eca9..04686d40 100644 --- a/charts/home-assistant/templates/common.yaml +++ b/charts/home-assistant/templates/common.yaml @@ -10,7 +10,7 @@ secret: optional: true {{- end -}} -{{- if .Values.git.deployKey -}} +{{- if or .Values.git.deployKey .Values.git.deployKeyBase64 -}} {{- $volume := include "home-assistant.gitSecret.volume" . | fromYaml -}} {{- if $volume -}} {{- $additionalVolumes := append .Values.additionalVolumes $volume }}