182 lines
6.4 KiB
YAML
182 lines
6.4 KiB
YAML
{{- if .Values.collector.enabled -}}
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: {{ template "jaeger.collector.name" . }}
|
|
namespace: {{ .Release.Namespace }}
|
|
labels:
|
|
{{- include "jaeger.labels" . | nindent 4 }}
|
|
app.kubernetes.io/component: collector
|
|
{{- if .Values.collector.annotations }}
|
|
annotations:
|
|
{{- toYaml .Values.collector.annotations | nindent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
{{- if not .Values.collector.autoscaling.enabled }}
|
|
replicas: {{ .Values.collector.replicaCount }}
|
|
{{- end }}
|
|
selector:
|
|
matchLabels:
|
|
{{- include "jaeger.selectorLabels" . | nindent 6 }}
|
|
app.kubernetes.io/component: collector
|
|
strategy:
|
|
type: Recreate
|
|
template:
|
|
metadata:
|
|
annotations:
|
|
checksum/config-env: {{ include (print $.Template.BasePath "/collector-configmap.yaml") . | sha256sum }}
|
|
{{- if .Values.collector.podAnnotations }}
|
|
{{- toYaml .Values.collector.podAnnotations | nindent 8 }}
|
|
{{- end }}
|
|
labels:
|
|
{{- include "jaeger.selectorLabels" . | nindent 8 }}
|
|
app.kubernetes.io/component: collector
|
|
{{- if .Values.collector.podLabels }}
|
|
{{- toYaml .Values.collector.podLabels | nindent 8 }}
|
|
{{- end }}
|
|
spec:
|
|
{{- with .Values.collector.priorityClassName }}
|
|
priorityClassName: {{ . }}
|
|
{{- end }}
|
|
securityContext:
|
|
{{- toYaml .Values.collector.podSecurityContext | nindent 8 }}
|
|
serviceAccountName: {{ template "jaeger.collector.serviceAccountName" . }}
|
|
{{- with .Values.collector.imagePullSecrets }}
|
|
imagePullSecrets:
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
containers:
|
|
- name: {{ template "jaeger.collector.name" . }}
|
|
securityContext:
|
|
{{- toYaml .Values.collector.securityContext | nindent 10 }}
|
|
image: {{ .Values.collector.image }}:{{ .Values.tag }}
|
|
imagePullPolicy: {{ .Values.collector.pullPolicy }}
|
|
args:
|
|
{{- range $key, $value := .Values.collector.cmdlineParams -}}
|
|
{{- if $value }}
|
|
- --{{ $key }}={{ $value }}
|
|
{{- else }}
|
|
- --{{ $key }}
|
|
{{- end }}
|
|
{{- end -}}
|
|
{{- if not .Values.ingester.enabled -}}
|
|
{{- include "storage.cmdArgs" . | nindent 10 }}
|
|
{{- end }}
|
|
env:
|
|
{{- if .Values.collector.service.zipkin }}
|
|
- name: COLLECTOR_ZIPKIN_HTTP_PORT
|
|
value: {{ .Values.collector.service.zipkin.port | quote }}
|
|
{{- end }}
|
|
{{- if .Values.ingester.enabled }}
|
|
- name: SPAN_STORAGE_TYPE
|
|
value: kafka
|
|
{{- range $key, $value := .Values.storage.kafka.env }}
|
|
- name: {{ $key | quote }}
|
|
value: {{ $value | quote }}
|
|
{{- end }}
|
|
{{- if .Values.storage.kafka.extraEnv }}
|
|
{{- toYaml .Values.storage.kafka.extraEnv | nindent 10 }}
|
|
{{- end }}
|
|
- name: KAFKA_PRODUCER_BROKERS
|
|
value: {{ include "helm-toolkit.utils.joinListWithComma" .Values.storage.kafka.brokers }}
|
|
- name: KAFKA_PRODUCER_TOPIC
|
|
value: {{ .Values.storage.kafka.topic }}
|
|
- name: KAFKA_PRODUCER_AUTHENTICATION
|
|
value: {{ .Values.storage.kafka.authentication }}
|
|
{{ else }}
|
|
- name: SPAN_STORAGE_TYPE
|
|
value: {{ .Values.storage.type }}
|
|
{{- include "storage.env" . | nindent 10 }}
|
|
{{- end }}
|
|
{{- if .Values.collector.samplingConfig}}
|
|
- name: SAMPLING_STRATEGIES_FILE
|
|
value: /etc/conf/strategies.json
|
|
{{- end }}
|
|
ports:
|
|
- containerPort: {{ .Values.collector.service.grpc.port }}
|
|
name: grpc
|
|
protocol: TCP
|
|
- containerPort: {{ .Values.collector.service.http.port }}
|
|
name: http
|
|
protocol: TCP
|
|
- containerPort: 14269
|
|
name: admin
|
|
protocol: TCP
|
|
{{- if .Values.collector.service.zipkin }}
|
|
- containerPort: {{ .Values.collector.service.zipkin.port }}
|
|
name: zipkin
|
|
protocol: TCP
|
|
{{- end }}
|
|
readinessProbe:
|
|
httpGet:
|
|
path: /
|
|
port: admin
|
|
livenessProbe:
|
|
httpGet:
|
|
path: /
|
|
port: admin
|
|
resources:
|
|
{{- toYaml .Values.collector.resources | nindent 10 }}
|
|
volumeMounts:
|
|
{{- range .Values.collector.extraConfigmapMounts }}
|
|
- name: {{ .name }}
|
|
mountPath: {{ .mountPath }}
|
|
subPath: {{ .subPath }}
|
|
readOnly: {{ .readOnly }}
|
|
{{- end }}
|
|
{{- range .Values.collector.extraSecretMounts }}
|
|
- name: {{ .name }}
|
|
mountPath: {{ .mountPath }}
|
|
subPath: {{ .subPath }}
|
|
readOnly: {{ .readOnly }}
|
|
{{- end }}
|
|
{{- if .Values.storage.cassandra.tls.enabled }}
|
|
- name: {{ .Values.storage.cassandra.tls.secretName }}
|
|
mountPath: "/cassandra-tls/ca-cert.pem"
|
|
subPath: "ca-cert.pem"
|
|
readOnly: true
|
|
- name: {{ .Values.storage.cassandra.tls.secretName }}
|
|
mountPath: "/cassandra-tls/client-cert.pem"
|
|
subPath: "client-cert.pem"
|
|
readOnly: true
|
|
- name: {{ .Values.storage.cassandra.tls.secretName }}
|
|
mountPath: "/cassandra-tls/client-key.pem"
|
|
subPath: "client-key.pem"
|
|
readOnly: true
|
|
{{- end }}
|
|
{{- if .Values.collector.samplingConfig}}
|
|
- name: strategies
|
|
mountPath: /etc/conf/
|
|
{{- end }}
|
|
dnsPolicy: {{ .Values.collector.dnsPolicy }}
|
|
restartPolicy: Always
|
|
volumes:
|
|
{{- range .Values.collector.extraConfigmapMounts }}
|
|
- name: {{ .name }}
|
|
configMap:
|
|
name: {{ .configMap }}
|
|
{{- end }}
|
|
{{- range .Values.collector.extraSecretMounts }}
|
|
- name: {{ .name }}
|
|
secret:
|
|
secretName: {{ .secretName }}
|
|
{{- end }}
|
|
{{- if .Values.collector.samplingConfig}}
|
|
- name: strategies
|
|
configMap:
|
|
name: {{ include "jaeger.fullname" . }}-sampling-strategies
|
|
{{- end }}
|
|
{{- with .Values.collector.nodeSelector }}
|
|
nodeSelector:
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
{{- with .Values.collector.affinity }}
|
|
affinity:
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
{{- with .Values.collector.tolerations }}
|
|
tolerations:
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
{{- end -}}
|