123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- {{- if .Values.tableManager.enabled }}
- apiVersion: apps/v1
- kind: Deployment
- metadata:
- name: {{ include "loki.tableManagerFullname" . }}
- labels:
- {{- include "loki.tableManagerLabels" . | nindent 4 }}
- {{- with .Values.loki.annotations }}
- annotations:
- {{- toYaml . | nindent 4 }}
- {{- end }}
- spec:
- replicas: 1
- revisionHistoryLimit: {{ .Values.loki.revisionHistoryLimit }}
- selector:
- matchLabels:
- {{- include "loki.tableManagerSelectorLabels" . | nindent 6 }}
- template:
- metadata:
- annotations:
- {{- include "loki.config.checksum" . | nindent 8 }}
- {{- with .Values.loki.podAnnotations }}
- {{- toYaml . | nindent 8 }}
- {{- end }}
- {{- with .Values.tableManager.podAnnotations }}
- {{- toYaml . | nindent 8 }}
- {{- end }}
- labels:
- {{- include "loki.tableManagerSelectorLabels" . | nindent 8 }}
- {{- with .Values.loki.podLabels }}
- {{- toYaml . | nindent 8 }}
- {{- end }}
- {{- with .Values.tableManager.podLabels }}
- {{- toYaml . | nindent 8 }}
- {{- end }}
- spec:
- serviceAccountName: {{ include "loki.serviceAccountName" . }}
- {{- with .Values.imagePullSecrets }}
- imagePullSecrets:
- {{- toYaml . | nindent 8 }}
- {{- end }}
- {{- with .Values.tableManager.hostAliases }}
- hostAliases:
- {{- toYaml . | nindent 8 }}
- {{- end }}
- {{- include "loki.tableManagerPriorityClassName" . | nindent 6 }}
- securityContext:
- {{- toYaml .Values.loki.podSecurityContext | nindent 8 }}
- terminationGracePeriodSeconds: {{ .Values.tableManager.terminationGracePeriodSeconds }}
- containers:
- - name: table-manager
- image: {{ include "loki.tableManagerImage" . }}
- imagePullPolicy: {{ .Values.loki.image.pullPolicy }}
- {{- if or .Values.loki.command .Values.tableManager.command }}
- command:
- - {{ coalesce .Values.tableManager.command .Values.loki.command | quote }}
- {{- end }}
- args:
- - -config.file=/etc/loki/config/config.yaml
- - -target=table-manager
- {{- with .Values.tableManager.extraArgs }}
- {{- toYaml . | nindent 12 }}
- {{- end }}
- ports:
- - name: http
- containerPort: 3100
- protocol: TCP
- - name: grpc
- containerPort: 9095
- protocol: TCP
- {{- with .Values.tableManager.extraEnv }}
- env:
- {{- toYaml . | nindent 12 }}
- {{- end }}
- {{- with .Values.tableManager.extraEnvFrom }}
- envFrom:
- {{- toYaml . | nindent 12 }}
- {{- end }}
- securityContext:
- {{- toYaml .Values.loki.containerSecurityContext | nindent 12 }}
- readinessProbe:
- {{- toYaml .Values.loki.readinessProbe | nindent 12 }}
- livenessProbe:
- {{- toYaml .Values.loki.livenessProbe | nindent 12 }}
- volumeMounts:
- - name: config
- mountPath: /etc/loki/config
- - name: runtime-config
- mountPath: /var/{{ include "loki.name" . }}-runtime
- - name: data
- mountPath: /var/loki
- {{- with .Values.tableManager.extraVolumeMounts }}
- {{- toYaml . | nindent 12 }}
- {{- end }}
- resources:
- {{- toYaml .Values.tableManager.resources | nindent 12 }}
- {{- if .Values.tableManager.extraContainers }}
- {{- toYaml .Values.tableManager.extraContainers | nindent 8}}
- {{- end }}
- {{- with .Values.tableManager.affinity }}
- affinity:
- {{- tpl . $ | nindent 8 }}
- {{- end }}
- {{- with .Values.tableManager.nodeSelector }}
- nodeSelector:
- {{- toYaml . | nindent 8 }}
- {{- end }}
- {{- with .Values.tableManager.tolerations }}
- tolerations:
- {{- toYaml . | nindent 8 }}
- {{- end }}
- volumes:
- - name: config
- {{- if .Values.loki.existingSecretForConfig }}
- secret:
- secretName: {{ .Values.loki.existingSecretForConfig }}
- {{- else if .Values.loki.configAsSecret }}
- secret:
- secretName: {{ include "loki.fullname" . }}-config
- {{- else }}
- configMap:
- name: {{ include "loki.fullname" . }}
- {{- end }}
- - name: runtime-config
- configMap:
- name: {{ template "loki.fullname" . }}-runtime
- - name: data
- emptyDir: {}
- {{- with .Values.tableManager.extraVolumes }}
- {{- toYaml . | nindent 8 }}
- {{- end }}
- {{- end }}
|