Skip to content

Commit

Permalink
fix(chart): Fix SSH_KNOWN_HOSTS env var file path (#113)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
jalaziz authored Nov 15, 2023
1 parent 2dea359 commit b115bac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/flipt/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion charts/flipt/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b115bac

Please sign in to comment.