Update helm charts to account for temp bucket (#13544)
* update helm charts to account for temp bucket * typo * move location of vars
This commit is contained in:
parent
a4c0328c53
commit
b080821f29
|
@ -106,6 +106,8 @@ spec:
|
|||
value: {{ .Values.services.objectStore.globalBucketName | quote }}
|
||||
- name: BACKUPS_BUCKET_NAME
|
||||
value: {{ .Values.services.objectStore.backupsBucketName | quote }}
|
||||
- name: TEMP_BUCKET_NAME
|
||||
value: {{ .Values.globals.tempBucketName | quote }}
|
||||
- name: PORT
|
||||
value: {{ .Values.services.apps.port | quote }}
|
||||
{{ if .Values.services.worker.publicApiRateLimitPerSecond }}
|
||||
|
|
|
@ -107,6 +107,8 @@ spec:
|
|||
value: {{ .Values.services.objectStore.globalBucketName | quote }}
|
||||
- name: BACKUPS_BUCKET_NAME
|
||||
value: {{ .Values.services.objectStore.backupsBucketName | quote }}
|
||||
- name: TEMP_BUCKET_NAME
|
||||
value: {{ .Values.globals.tempBucketName | quote }}
|
||||
- name: PORT
|
||||
value: {{ .Values.services.automationWorkers.port | quote }}
|
||||
{{ if .Values.services.worker.publicApiRateLimitPerSecond }}
|
||||
|
|
|
@ -106,6 +106,8 @@ spec:
|
|||
value: {{ .Values.services.objectStore.globalBucketName | quote }}
|
||||
- name: BACKUPS_BUCKET_NAME
|
||||
value: {{ .Values.services.objectStore.backupsBucketName | quote }}
|
||||
- name: TEMP_BUCKET_NAME
|
||||
value: {{ .Values.globals.tempBucketName | quote }}
|
||||
- name: PORT
|
||||
value: {{ .Values.services.worker.port | quote }}
|
||||
- name: MULTI_TENANCY
|
||||
|
|
|
@ -121,6 +121,9 @@ globals:
|
|||
# to the old value for the duration of the rotation.
|
||||
jwtSecretFallback: ""
|
||||
|
||||
## -- If using S3 the bucket name to be used for storing temporary files
|
||||
tempBucketName: ""
|
||||
|
||||
smtp:
|
||||
# -- Whether to enable SMTP or not.
|
||||
enabled: false
|
||||
|
|
Loading…
Reference in New Issue