Skip to content

Commit 1033e74

Browse files
authored
Fix helm chart values (#4188)
1 parent 0ce9ad4 commit 1033e74

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

deploy/helm/thecombine/charts/backend/templates/backend-config-map.yaml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,9 @@ data:
88
COMBINE_CAPTCHA_REQUIRED: {{ .Values.global.captchaRequired | quote | lower }}
99
COMBINE_CAPTCHA_VERIFY_URL: {{ .Values.captchaVerifyUrl | quote }}
1010
COMBINE_EMAIL_ENABLED: {{ .Values.global.emailEnabled | quote | lower }}
11-
COMBINE_EXPIRE_EMAIL_VERIFY_MINUTES:
12-
{{ .Values.global.combineExpireEmailVerifyMinutes | quote | lower }}
13-
COMBINE_EXPIRE_PASSWORD_RESET_MINUTES:
14-
{{ .Values.global.combineExpirePasswordResetMinutes | quote | lower }}
15-
COMBINE_EXPIRE_PROJECT_INVITE_DAYS:
16-
{{ .Values.global.combineExpireProjectInviteDays | quote | lower }}
11+
COMBINE_EXPIRE_EMAIL_VERIFY_MINUTES: {{ .Values.combineExpireEmailVerifyMinutes | quote }}
12+
COMBINE_EXPIRE_PASSWORD_RESET_MINUTES: {{ .Values.combineExpirePasswordResetMinutes | quote }}
13+
COMBINE_EXPIRE_PROJECT_INVITE_DAYS: {{ .Values.combineExpireProjectInviteDays | quote }}
1714
COMBINE_FRONTEND_SERVER_NAME: {{ .Values.global.serverName | quote }}
1815
COMBINE_SMTP_ADDRESS: {{ .Values.combineSmtpAddress | quote }}
1916
COMBINE_SMTP_FROM: {{ .Values.combineSmtpFrom | quote }}

deploy/helm/thecombine/charts/maintenance/templates/aws-s3-credentials.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v1
22
kind: Secret
33
metadata:
44
creationTimestamp: null
5-
name: aws-s3-credentials
5+
name: {{ .Values.global.awsS3Access | quote }}
66
namespace: {{ .Release.Namespace | quote }}
77
type: Opaque
88
data:

0 commit comments

Comments
 (0)