mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-21 14:33:53 +00:00
chart: add env vars section into the chart
This commit is contained in:
parent
7fdb3f671f
commit
3013e37a38
|
@ -98,6 +98,18 @@ spec:
|
|||
mountPath: /config
|
||||
|
||||
# the "env" entries will override the environment variables from envFrom.
|
||||
env:
|
||||
- name: USE_MARKETS_CACHE_IN_MEMORY
|
||||
value: "true"
|
||||
{{- if .Values.environment }}
|
||||
- name: BBGO_ENV
|
||||
value: {{ .Values.environment | quote }}
|
||||
{{- end }}
|
||||
|
||||
{{- if .Values.rbTreeOrderbook.enabled }}
|
||||
- name: ENABLE_RBT_ORDERBOOK
|
||||
value: "true"
|
||||
{{- end }}
|
||||
envFrom:
|
||||
- secretRef:
|
||||
name: {{ .Values.dotenv.secret | default .Release.Name }}
|
||||
|
|
|
@ -89,6 +89,12 @@ grpc:
|
|||
debug:
|
||||
enabled: false
|
||||
|
||||
environment: dev
|
||||
|
||||
# this set ENABLE_RBT_ORDERBOOK env
|
||||
rbTreeOrderbook:
|
||||
enabled: false
|
||||
|
||||
sync:
|
||||
enabled: false
|
||||
schedule: "0 * * * *"
|
||||
|
|
Loading…
Reference in New Issue
Block a user