bbgo_origin/charts/bbgo/templates/deployment.yaml

138 lines
4.1 KiB
YAML
Raw Normal View History

2020-12-15 10:57:46 +00:00
apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ include "bbgo.fullname" . }}
{{- with .Values.deploymentAnnotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
2020-12-15 10:57:46 +00:00
labels:
{{- include "bbgo.labels" . | nindent 4 }}
spec:
{{- if not .Values.autoscaling.enabled }}
replicas: {{ .Values.replicaCount }}
{{- end }}
2021-12-27 17:57:01 +00:00
strategy:
# we need to cleanly cancel all the orders, so we use Recreate strategy here
type: Recreate
2020-12-15 10:57:46 +00:00
selector:
matchLabels:
{{- include "bbgo.selectorLabels" . | nindent 6 }}
template:
metadata:
{{- with .Values.podAnnotations }}
annotations:
{{- toYaml . | nindent 8 }}
{{- end }}
labels:
{{- include "bbgo.selectorLabels" . | nindent 8 }}
2023-06-21 02:20:53 +00:00
{{- include "bbgo.labels" . | nindent 8 }}
2020-12-15 10:57:46 +00:00
spec:
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
serviceAccountName: {{ include "bbgo.serviceAccountName" . }}
securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }}
containers:
- name: {{ .Chart.Name }}
securityContext:
{{- toYaml .Values.securityContext | nindent 12 }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
args:
{{- if .Values.metrics.enabled }}
- "--metrics"
- "--metrics-port"
- {{ .Values.metrics.port | quote }}
{{- end }}
- "run"
- "--config"
- "/config/bbgo.yaml"
- "--no-compile"
{{- if .Values.webserver.enabled }}
- "--enable-webserver"
{{- end }}
{{- if .Values.logFormatter.enabled }}
- "--log-formatter"
- {{ .Values.logFormatter.format | quote }}
{{- end }}
2022-05-04 04:57:30 +00:00
{{- if .Values.grpc.enabled }}
- "--enable-grpc"
- "--grpc-bind"
2022-05-09 10:59:11 +00:00
- {{ printf ":%d" (.Values.grpc.port | int) | default ":50051" | quote }}
2022-05-04 04:57:30 +00:00
{{- end }}
{{- if .Values.debug.enabled }}
- "--debug"
{{- end }}
ports:
2021-12-27 18:05:16 +00:00
{{- if .Values.webserver.enabled }}
- name: http
containerPort: 8080
protocol: TCP
{{- end }}
{{- if .Values.grpc.enabled }}
- name: grpc
containerPort: {{ .Values.grpc.port | default 50051 }}
protocol: TCP
{{- end }}
2021-12-27 15:50:20 +00:00
{{- if .Values.metrics.enabled }}
- name: metrics
containerPort: 9090
protocol: TCP
2021-12-27 15:50:20 +00:00
livenessProbe:
httpGet:
path: /metrics
port: metrics
{{- end }}
2020-12-17 07:28:05 +00:00
# readinessProbe:
# httpGet:
# path: /
# port: http
2020-12-15 10:57:46 +00:00
resources:
{{- toYaml .Values.resources | nindent 12 }}
volumeMounts:
- name: config-volume
mountPath: /config
2020-12-17 06:09:22 +00:00
# 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 }}
2020-12-17 06:09:22 +00:00
envFrom:
- secretRef:
name: {{ .Values.dotenv.secret | default .Release.Name }}
2020-12-17 06:09:22 +00:00
2020-12-15 10:57:46 +00:00
volumes:
- name: config-volume
configMap:
{{- if .Values.existingConfigMap }}
name: {{ .Values.existingConfigMap }}
{{- else }}
2020-12-15 10:57:46 +00:00
name: {{ include "bbgo.fullname" . }}
{{- end }}
2020-12-15 10:57:46 +00:00
{{- with .Values.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.affinity }}
affinity:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.tolerations }}
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}