{{/* vim: set filetype=mustache: */}} {{/* Expand the name of the chart. */}} {{- define "jaeger.name" -}} {{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}} {{- end -}} {{/* Create a default fully qualified app name. We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). If release name contains chart name it will be used as a full name. */}} {{- define "jaeger.fullname" -}} {{- if .Values.fullnameOverride -}} {{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" -}} {{- else -}} {{- $name := default .Chart.Name .Values.nameOverride -}} {{- if contains $name .Release.Name -}} {{- .Release.Name | trunc 63 | trimSuffix "-" -}} {{- else -}} {{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}} {{- end -}} {{- end -}} {{- end -}} {{/* Create chart name and version as used by the chart label. */}} {{- define "jaeger.chart" -}} {{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}} {{- end -}} {{/* Common labels */}} {{- define "jaeger.labels" -}} helm.sh/chart: {{ include "jaeger.chart" . }} {{ include "jaeger.selectorLabels" . }} {{- if .Chart.AppVersion }} app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} {{- end }} app.kubernetes.io/managed-by: {{ .Release.Service }} {{- end -}} {{/* Selector labels */}} {{- define "jaeger.selectorLabels" -}} app.kubernetes.io/name: {{ include "jaeger.name" . }} app.kubernetes.io/instance: {{ .Release.Name }} {{- end -}} {{/* Create the name of the cassandra schema service account to use */}} {{- define "jaeger.cassandraSchema.serviceAccountName" -}} {{- if .Values.schema.serviceAccount.create -}} {{ default (printf "%s-cassandra-schema" (include "jaeger.fullname" .)) .Values.schema.serviceAccount.name }} {{- else -}} {{ default "default" .Values.schema.serviceAccount.name }} {{- end -}} {{- end -}} {{/* Create the name of the spark service account to use */}} {{- define "jaeger.spark.serviceAccountName" -}} {{- if .Values.spark.serviceAccount.create -}} {{ default (printf "%s-spark" (include "jaeger.fullname" .)) .Values.spark.serviceAccount.name }} {{- else -}} {{ default "default" .Values.spark.serviceAccount.name }} {{- end -}} {{- end -}} {{/* Create the name of the esIndexCleaner service account to use */}} {{- define "jaeger.esIndexCleaner.serviceAccountName" -}} {{- if .Values.esIndexCleaner.serviceAccount.create -}} {{ default (printf "%s-es-index-cleaner" (include "jaeger.fullname" .)) .Values.esIndexCleaner.serviceAccount.name }} {{- else -}} {{ default "default" .Values.esIndexCleaner.serviceAccount.name }} {{- end -}} {{- end -}} {{/* Create the name of the hotrod service account to use */}} {{- define "jaeger.hotrod.serviceAccountName" -}} {{- if .Values.hotrod.serviceAccount.create -}} {{ default (printf "%s-hotrod" (include "jaeger.fullname" .)) .Values.hotrod.serviceAccount.name }} {{- else -}} {{ default "default" .Values.hotrod.serviceAccount.name }} {{- end -}} {{- end -}} {{/* Create the name of the query service account to use */}} {{- define "jaeger.query.serviceAccountName" -}} {{- if .Values.query.serviceAccount.create -}} {{ default (include "jaeger.query.name" .) .Values.query.serviceAccount.name }} {{- else -}} {{ default "default" .Values.query.serviceAccount.name }} {{- end -}} {{- end -}} {{/* Create the name of the agent service account to use */}} {{- define "jaeger.agent.serviceAccountName" -}} {{- if .Values.agent.serviceAccount.create -}} {{ default (include "jaeger.agent.name" .) .Values.agent.serviceAccount.name }} {{- else -}} {{ default "default" .Values.agent.serviceAccount.name }} {{- end -}} {{- end -}} {{/* Create the name of the collector service account to use */}} {{- define "jaeger.collector.serviceAccountName" -}} {{- if .Values.collector.serviceAccount.create -}} {{ default (include "jaeger.collector.name" .) .Values.collector.serviceAccount.name }} {{- else -}} {{ default "default" .Values.collector.serviceAccount.name }} {{- end -}} {{- end -}} {{/* Create the name of the ingester service account to use */}} {{- define "jaeger.ingester.serviceAccountName" -}} {{- if .Values.ingester.serviceAccount.create -}} {{ default (include "jaeger.ingester.name" .) .Values.ingester.serviceAccount.name }} {{- else -}} {{ default "default" .Values.ingester.serviceAccount.name }} {{- end -}} {{- end -}} {{/* Create a fully qualified query name. We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). */}} {{- define "jaeger.query.name" -}} {{- $nameGlobalOverride := printf "%s-query" (include "jaeger.fullname" .) -}} {{- if .Values.query.fullnameOverride -}} {{- printf "%s" .Values.query.fullnameOverride | trunc 63 | trimSuffix "-" -}} {{- else -}} {{- printf "%s" $nameGlobalOverride | trunc 63 | trimSuffix "-" -}} {{- end -}} {{- end -}} {{/* Create a fully qualified agent name. We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). */}} {{- define "jaeger.agent.name" -}} {{- $nameGlobalOverride := printf "%s-agent" (include "jaeger.fullname" .) -}} {{- if .Values.agent.fullnameOverride -}} {{- printf "%s" .Values.agent.fullnameOverride | trunc 63 | trimSuffix "-" -}} {{- else -}} {{- printf "%s" $nameGlobalOverride | trunc 63 | trimSuffix "-" -}} {{- end -}} {{- end -}} {{/* Create a fully qualified collector name. We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). */}} {{- define "jaeger.collector.name" -}} {{- $nameGlobalOverride := printf "%s-collector" (include "jaeger.fullname" .) -}} {{- if .Values.collector.fullnameOverride -}} {{- printf "%s" .Values.collector.fullnameOverride | trunc 63 | trimSuffix "-" -}} {{- else -}} {{- printf "%s" $nameGlobalOverride | trunc 63 | trimSuffix "-" -}} {{- end -}} {{- end -}} {{/* Create a fully qualified ingester name. We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). */}} {{- define "jaeger.ingester.name" -}} {{- $nameGlobalOverride := printf "%s-ingester" (include "jaeger.fullname" .) -}} {{- if .Values.ingester.fullnameOverride -}} {{- printf "%s" .Values.ingester.fullnameOverride | trunc 63 | trimSuffix "-" -}} {{- else -}} {{- printf "%s" $nameGlobalOverride | trunc 63 | trimSuffix "-" -}} {{- end -}} {{- end -}} {{- define "cassandra.host" -}} {{- if .Values.provisionDataStore.cassandra -}} {{- if .Values.storage.cassandra.nameOverride }} {{- printf "%s" .Values.storage.cassandra.nameOverride | trunc 63 | trimSuffix "-" }} {{- else }} {{- printf "%s-%s" .Release.Name "cassandra" | trunc 63 | trimSuffix "-" -}} {{- end -}} {{- else }} {{- .Values.storage.cassandra.host }} {{- end -}} {{- end -}} {{- define "cassandra.contact_points" -}} {{- $port := .Values.storage.cassandra.port | toString }} {{- if .Values.provisionDataStore.cassandra -}} {{- if .Values.storage.cassandra.nameOverride }} {{- $host := printf "%s" .Values.storage.cassandra.nameOverride | trunc 63 | trimSuffix "-" -}} {{- printf "%s:%s" $host $port }} {{- else }} {{- $host := printf "%s-%s" .Release.Name "cassandra" | trunc 63 | trimSuffix "-" -}} {{- printf "%s:%s" $host $port }} {{- end -}} {{- else }} {{- printf "%s:%s" .Values.storage.cassandra.host $port }} {{- end -}} {{- end -}} {{/* Create a default fully qualified app name. We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). */}} {{- define "elasticsearch.client.url" -}} {{- $port := .Values.storage.elasticsearch.port | toString -}} {{- printf "%s://%s:%s" .Values.storage.elasticsearch.scheme .Values.storage.elasticsearch.host $port }} {{- end -}} {{- define "jaeger.hotrod.tracing.host" -}} {{- default (include "jaeger.agent.name" .) .Values.hotrod.tracing.host -}} {{- end -}} {{/* Configure list of IP CIDRs allowed access to load balancer (if supported) */}} {{- define "loadBalancerSourceRanges" -}} {{- if .service.loadBalancerSourceRanges }} loadBalancerSourceRanges: {{- range $cidr := .service.loadBalancerSourceRanges }} - {{ $cidr }} {{- end }} {{- end }} {{- end -}} {{- define "helm-toolkit.utils.joinListWithComma" -}} {{- $local := dict "first" true -}} {{- range $k, $v := . -}}{{- if not $local.first -}},{{- end -}}{{- $v -}}{{- $_ := set $local "first" false -}}{{- end -}} {{- end -}} {{/* Cassandra related environment variables */}} {{- define "cassandra.env" -}} - name: CASSANDRA_SERVERS value: {{ include "cassandra.host" . }} - name: CASSANDRA_PORT value: {{ .Values.storage.cassandra.port | quote }} {{ if .Values.storage.cassandra.tls.enabled }} - name: CASSANDRA_TLS_ENABLED value: "true" - name: CASSANDRA_TLS_SERVER_NAME valueFrom: secretKeyRef: name: {{ .Values.storage.cassandra.tls.secretName }} key: commonName - name: CASSANDRA_TLS_KEY value: "/cassandra-tls/client-key.pem" - name: CASSANDRA_TLS_CERT value: "/cassandra-tls/client-cert.pem" - name: CASSANDRA_TLS_CA value: "/cassandra-tls/ca-cert.pem" {{- end }} {{- if .Values.storage.cassandra.keyspace }} - name: CASSANDRA_KEYSPACE value: {{ .Values.storage.cassandra.keyspace }} {{- end }} - name: CASSANDRA_USERNAME value: {{ .Values.storage.cassandra.user }} - name: CASSANDRA_PASSWORD valueFrom: secretKeyRef: name: {{ if .Values.storage.cassandra.existingSecret }}{{ .Values.storage.cassandra.existingSecret }}{{- else }}{{ include "jaeger.fullname" . }}-cassandra{{- end }} key: password {{- range $key, $value := .Values.storage.cassandra.env }} - name: {{ $key | quote }} value: {{ $value | quote }} {{ end -}} {{- if .Values.storage.cassandra.extraEnv }} {{ toYaml .Values.storage.cassandra.extraEnv }} {{- end }} {{- end -}} {{/* Elasticsearch related environment variables */}} {{- define "elasticsearch.env" -}} - name: ES_SERVER_URLS value: {{ include "elasticsearch.client.url" . }} - name: ES_USERNAME value: {{ .Values.storage.elasticsearch.user }} {{- if .Values.storage.elasticsearch.usePassword }} - name: ES_PASSWORD valueFrom: secretKeyRef: name: {{ if .Values.storage.elasticsearch.existingSecret }}{{ .Values.storage.elasticsearch.existingSecret }}{{- else }}{{ include "jaeger.fullname" . }}-elasticsearch{{- end }} key: {{ default "password" .Values.storage.elasticsearch.existingSecretKey }} {{- end }} {{- if .Values.storage.elasticsearch.indexPrefix }} - name: ES_INDEX_PREFIX value: {{ .Values.storage.elasticsearch.indexPrefix }} {{- end }} {{- range $key, $value := .Values.storage.elasticsearch.env }} - name: {{ $key | quote }} value: {{ $value | quote }} {{ end -}} {{- if .Values.storage.elasticsearch.extraEnv }} {{ toYaml .Values.storage.elasticsearch.extraEnv }} {{- end }} {{- end -}} {{/* Cassandra or Elasticsearch related environment variables depending on which is used */}} {{- define "storage.env" -}} {{- if eq .Values.storage.type "cassandra" -}} {{ include "cassandra.env" . }} {{- else if eq .Values.storage.type "elasticsearch" -}} {{ include "elasticsearch.env" . }} {{- end -}} {{- end -}} {{/* Cassandra related command line options */}} {{- define "cassandra.cmdArgs" -}} {{- range $key, $value := .Values.storage.cassandra.cmdlineParams -}} {{- if $value -}} - --{{ $key }}={{ $value }} {{- else }} - --{{ $key }} {{- end -}} {{- end -}} {{- end -}} {{/* Elasticsearch related command line options */}} {{- define "elasticsearch.cmdArgs" -}} {{- range $key, $value := .Values.storage.elasticsearch.cmdlineParams -}} {{- if $value -}} - --{{ $key }}={{ $value }} {{- else }} - --{{ $key }} {{- end -}} {{- end -}} {{- end -}} {{/* Cassandra or Elasticsearch related command line options depending on which is used */}} {{- define "storage.cmdArgs" -}} {{- if eq .Values.storage.type "cassandra" -}} {{- include "cassandra.cmdArgs" . -}} {{- else if eq .Values.storage.type "elasticsearch" -}} {{- include "elasticsearch.cmdArgs" . -}} {{- end -}} {{- end -}}