-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(infra): update env vars in helm chart
- Loading branch information
Björn Urban
committed
Oct 11, 2023
1 parent
c850422
commit 3ac6797
Showing
4 changed files
with
14 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
apiVersion: v2 | ||
name: kubevoyage | ||
description: A Helm chart for Kubernetes auth proxy | ||
version: 0.3.0 | ||
version: 0.4.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: {{ include "kubevoyage.fullname" . }}-db-secret | ||
name: {{ include "kubevoyage.fullname" . }}-secret | ||
namespace: {{ .Values.app.namespace }} | ||
type: Opaque | ||
data: | ||
db-password: {{ .Values.database.password | b64enc | quote }} | ||
db-password: {{ .Values.database.password | b64enc | quote }} | ||
jwt-secret: {{ .Values.secret.jwtSecret }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters