apiVersion: apps/v1 kind: Deployment metadata: name: {{ include "dtm.fullname" . }} labels: {{- include "dtm.labels" . | nindent 4 }} spec: {{- if not .Values.autoscaling.enabled }} replicas: {{ .Values.replicaCount }} {{- end }} selector: matchLabels: {{- include "dtm.selectorLabels" . | nindent 6 }} template: metadata: labels: {{- include "dtm.selectorLabels" . | nindent 8 }} spec: {{- with .Values.imagePullSecrets }} imagePullSecrets: {{- toYaml . | nindent 8 }} {{- end }} 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: - "-c=/app/dtm/configs/config.yaml" volumeMounts: - mountPath: /app/dtm/configs name: config ports: - containerPort: 36789 protocol: TCP name: http - containerPort: 36790 protocol: TCP name: grpc livenessProbe: httpGet: path: /api/ping port: 36789 scheme: HTTP readinessProbe: httpGet: path: /api/ping port: 36789 scheme: HTTP resources: {{- toYaml .Values.resources | nindent 12 }} {{- with .Values.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }} {{- end }} {{- with .Values.affinity }} affinity: {{- toYaml . | nindent 8 }} {{- end }} {{- with .Values.tolerations }} tolerations: {{- toYaml . | nindent 8 }} {{- end }} volumes: - name: config configMap: name: {{ include "dtm.fullname" . }}-conf