* style(server): fix formatting

* fix(preview-service): fix chromium deps in Dockerfile

* feat(helm chart): expose file uploads disable flag in the helm chart
This commit is contained in:
Gergő Jedlicska 2022-12-23 14:50:46 +01:00 коммит произвёл GitHub
Родитель 492afde5f6
Коммит 848d65b0a0
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 12 добавлений и 0 удалений

Просмотреть файл

@ -128,6 +128,15 @@ spec:
value: "/postgres-certificate/ca-certificate.crt"
{{- end }}
{{- if .Valuse.server.file_uploads.enabled }}
- name: DISABLE_FILE_UPLOADS
value: "false"
{{ else }}
- name: DISABLE_FILE_UPLOADS
value: "true"
{{ end }}
# *** S3 Object Storage ***
{{- if (or .Values.s3.configMap.enabled .Values.s3.endpoint) }}
{{- $s3values := ((include "server.s3Values" .) | fromJson ) }}

Просмотреть файл

@ -530,6 +530,9 @@ server:
## access to most secrets on the cluster and access to the Kubernetes API.
##
create: true
fileUploads:
## @param server.fileUpload.enabled If enabled, file uploads on the server will be flagged as enabled
enabled: true
monitoring:
apollo: