Skip to content

Commit

Permalink
fix helm chart grpc binding string
Browse files Browse the repository at this point in the history
  • Loading branch information
chechiachang committed May 9, 2022
1 parent 44765e5 commit 96bccec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion charts/bbgo/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ spec:
{{- if .Values.grpc.enabled }}
- "--enable-grpc"
- "--grpc-bind"
- {{ .Values.grpc.port | default 50051 | quote }}
- {{ printf ":%d" (.Values.grpc.port | int) | default ":50051" | quote }}
{{- end }}
{{- if .Values.debug.enabled }}
- "--debug"
Expand Down

0 comments on commit 96bccec

Please sign in to comment.