bbgo_origin/charts/bbgo/templates/deployment.yaml

104 lines
3.0 KiB
YAML
Raw Normal View History

2020-12-15 10:57:46 +00:00
apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ include "bbgo.fullname" . }}
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 }}
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 }}
ports:
2021-12-27 18:05:16 +00:00
{{- if .Values.webserver.enabled }}
- name: http
containerPort: 8080
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.
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 }}