From b2b55957922ccc8894f126ca0a09746a0da24d1e Mon Sep 17 00:00:00 2001 From: Jameel Al-Aziz Date: Wed, 15 Nov 2023 10:48:30 -0800 Subject: [PATCH] fix(chart): Fix SSH_KNOWN_HOSTS env var file path When `ssh.knownHosts` is provided, the path set in the `SSH_KNOWN_HOSTS` environment variable did not match the file mounted from the config map. --- charts/flipt/Chart.yaml | 2 +- charts/flipt/templates/deployment.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/flipt/Chart.yaml b/charts/flipt/Chart.yaml index fdede5c..1c5a002 100644 --- a/charts/flipt/Chart.yaml +++ b/charts/flipt/Chart.yaml @@ -3,7 +3,7 @@ name: flipt home: https://flipt.io description: Flipt is an open-source, self-hosted feature flag solution. type: application -version: 0.46.0 +version: 0.46.1 appVersion: v1.31.0 maintainers: - name: Flipt diff --git a/charts/flipt/templates/deployment.yaml b/charts/flipt/templates/deployment.yaml index abec54c..a47c751 100644 --- a/charts/flipt/templates/deployment.yaml +++ b/charts/flipt/templates/deployment.yaml @@ -45,7 +45,7 @@ spec: {{- end }} {{- if (.Values.ssh).knownHosts }} - name: SSH_KNOWN_HOSTS - value: /etc/flipt/known_hosts + value: /etc/flipt/ssh_known_hosts {{- end }} volumeMounts: - name: flipt-local-state