mirror of
https://github.com/mastodon/chart
synced 2025-03-14 21:11:50 +00:00
Added ability to specify environment variables just for streaming pods (#135)
This commit is contained in:
parent
336f736a5c
commit
3da4e6d611
|
@ -119,6 +119,10 @@ spec:
|
|||
{{- end }}
|
||||
- name: "PORT"
|
||||
value: {{ .Values.mastodon.streaming.port | quote }}
|
||||
{{- range $k, $v := .Values.mastodon.streaming.extraEnvVars }}
|
||||
- name: {{ $k }}
|
||||
value: {{ quote $v }}
|
||||
{{- end }}
|
||||
ports:
|
||||
- name: streaming
|
||||
containerPort: {{ .Values.mastodon.streaming.port }}
|
||||
|
|
|
@ -256,6 +256,10 @@ mastodon:
|
|||
# name:
|
||||
# -- Optional sslMode setting. See nodejs's SSL_MODE. Consider "no-verify"
|
||||
# sslMode:
|
||||
|
||||
# Specify extra environment variables to be added to streaming pods.
|
||||
extraEnvVars: {}
|
||||
|
||||
web:
|
||||
port: 3000
|
||||
# -- Number of Web Pods running
|
||||
|
|
Loading…
Reference in New Issue
Block a user