mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-06-06 15:14:13 -04:00
chart/sslmode templating (#762)
This commit is contained in:
commit
727f548a80
@ -23,6 +23,8 @@ version: 0.0.0
|
|||||||
# It is recommended to use it with quotes.
|
# It is recommended to use it with quotes.
|
||||||
appVersion: "0.0.0"
|
appVersion: "0.0.0"
|
||||||
|
|
||||||
|
icon: https://raw.githubusercontent.com/zoriya/Kyoo/refs/heads/master/icons/icon.svg
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
- condition: meilisearch.enabled
|
- condition: meilisearch.enabled
|
||||||
name: meilisearch
|
name: meilisearch
|
||||||
|
@ -81,6 +81,8 @@ spec:
|
|||||||
value: {{ .Values.global.postgres.kyoo_transcoder.port | quote }}
|
value: {{ .Values.global.postgres.kyoo_transcoder.port | quote }}
|
||||||
- name: POSTGRES_SCHEMA
|
- name: POSTGRES_SCHEMA
|
||||||
value: {{ .Values.global.postgres.kyoo_transcoder.schema | quote }}
|
value: {{ .Values.global.postgres.kyoo_transcoder.schema | quote }}
|
||||||
|
- name: POSTGRES_SSLMODE
|
||||||
|
value: {{ .Values.global.postgres.kyoo_transcoder.sslmode | quote }}
|
||||||
{{- with (concat .Values.global.extraEnv .Values.transcoder.kyoo_transcoder.extraEnv) }}
|
{{- with (concat .Values.global.extraEnv .Values.transcoder.kyoo_transcoder.extraEnv) }}
|
||||||
{{- toYaml . | nindent 12 }}
|
{{- toYaml . | nindent 12 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -59,9 +59,11 @@ global:
|
|||||||
host: kyoo-postgresql
|
host: kyoo-postgresql
|
||||||
port: 5432
|
port: 5432
|
||||||
database: kyoo_transcoder
|
database: kyoo_transcoder
|
||||||
# POSTGRES_SCHEMA disabled means application will not create the schema
|
# schema disabled means application will not create the schema
|
||||||
# and will instead use the user's search path
|
# and will instead use the user's search path
|
||||||
schema: disabled
|
schema: disabled
|
||||||
|
# sslmode valid options are 'require' or 'disable', 'prefer' is not supported
|
||||||
|
sslmode: disable
|
||||||
# kyoo_transcoder workload specific settings
|
# kyoo_transcoder workload specific settings
|
||||||
kyoo_transcoder:
|
kyoo_transcoder:
|
||||||
userKey: postgres_user
|
userKey: postgres_user
|
||||||
|
Loading…
x
Reference in New Issue
Block a user