88 lines
2.2 KiB
Smarty
88 lines
2.2 KiB
Smarty
{{/*
|
|
Expand the name of the chart.
|
|
*/}}
|
|
{{- define "nominatim.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).
|
|
*/}}
|
|
{{- define "nominatim.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 "nominatim.chart" -}}
|
|
{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Common labels
|
|
*/}}
|
|
{{- define "nominatim.labels" -}}
|
|
helm.sh/chart: {{ include "nominatim.chart" . }}
|
|
{{ include "nominatim.selectorLabels" . }}
|
|
{{- if .Chart.AppVersion }}
|
|
app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
|
|
{{- end }}
|
|
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Selector labels
|
|
*/}}
|
|
{{- define "nominatim.selectorLabels" -}}
|
|
app.kubernetes.io/name: {{ include "nominatim.name" . }}
|
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
app.kubernetes.io/component: geocoding
|
|
app.kubernetes.io/part-of: bakery-ia
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
ConfigMap name
|
|
*/}}
|
|
{{- define "nominatim.configMapName" -}}
|
|
{{- printf "%s-config" (include "nominatim.fullname" .) -}}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Service name
|
|
*/}}
|
|
{{- define "nominatim.serviceName" -}}
|
|
{{- default (printf "%s-service" (include "nominatim.fullname" .)) .Values.service.name -}}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Data PVC name
|
|
*/}}
|
|
{{- define "nominatim.dataPvcName" -}}
|
|
{{- printf "%s-data" (include "nominatim.fullname" .) -}}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Flatnode PVC name
|
|
*/}}
|
|
{{- define "nominatim.flatnodePvcName" -}}
|
|
{{- printf "%s-flatnode" (include "nominatim.fullname" .) -}}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Init job name
|
|
*/}}
|
|
{{- define "nominatim.initJobName" -}}
|
|
{{- printf "%s-init" (include "nominatim.fullname" .) -}}
|
|
{{- end -}}
|