12 lines
311 B
Smarty
12 lines
311 B
Smarty
|
{{/* vim: set filetype=mustache: */}}
|
||
|
{{/*
|
||
|
Expand the name of the chart.
|
||
|
*/}}
|
||
|
{{- define "name" -}}
|
||
|
{{- default .Values.global.app.name .Values.nameOverride | trunc 63 | trimSuffix "-" -}}
|
||
|
{{- end -}}
|
||
|
|
||
|
{{- define "chartname" -}}
|
||
|
{{- printf "%s-%s" .Chart.Name (.Chart.Version | replace "+" "_") -}}
|
||
|
{{- end -}}
|