mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
feature: add grpc port and config in helm chart
This commit is contained in:
parent
406681b5fa
commit
f323047353
|
@ -51,6 +51,8 @@ spec:
|
|||
{{- end }}
|
||||
{{- if .Values.grpc.enabled }}
|
||||
- "--enable-grpc"
|
||||
- "--grpc-bind"
|
||||
- {{ .Values.grpc.port | default 50051 | quote }}
|
||||
{{- end }}
|
||||
{{- if .Values.debug.enabled }}
|
||||
- "--debug"
|
||||
|
@ -62,6 +64,11 @@ spec:
|
|||
containerPort: 8080
|
||||
protocol: TCP
|
||||
{{- end }}
|
||||
{{- if .Values.grpc.enabled }}
|
||||
- name: grpc
|
||||
containerPort: {{ .Values.grpc.port | default 50051 }}
|
||||
protocol: TCP
|
||||
{{- end }}
|
||||
{{- if .Values.metrics.enabled }}
|
||||
- name: metrics
|
||||
containerPort: 9090
|
||||
|
|
|
@ -11,5 +11,11 @@ spec:
|
|||
targetPort: http
|
||||
protocol: TCP
|
||||
name: http
|
||||
{{- if .Values.grpc.enabled }}
|
||||
- port: {{ .Values.grpc.port | default 50051 }}
|
||||
targetPort: grpc
|
||||
protocol: TCP
|
||||
name: grpc
|
||||
{{- end }}
|
||||
selector:
|
||||
{{- include "bbgo.selectorLabels" . | nindent 4 }}
|
||||
|
|
|
@ -76,6 +76,7 @@ metrics:
|
|||
|
||||
grpc:
|
||||
enabled: false
|
||||
port: 50051
|
||||
|
||||
debug:
|
||||
enabled: false
|
||||
|
|
Loading…
Reference in New Issue
Block a user