aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/common/common-templates/templates/_name.tpl
blob: f6c221f15d23d9c1faaf09deb95f94a2ec479a92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{/*
  Expand the name of a chart.
*/}}
{{- define "common.name" -}}
  {{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}}
{{- end -}}

{{/*
  Create a default fully qualified application name.
  Truncated at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
*/}}
{{- define "common.fullname" -}}
  {{- $name := default .Chart.Name .Values.nameOverride -}}
  {{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}}
{{- end -}}