mirror of https://github.com/helm/helm
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
298 B
15 lines
298 B
{{- /*
|
|
common.chartref prints a chart name and version.
|
|
|
|
It does minimal escaping for use in Kubernetes labels.
|
|
|
|
Example output:
|
|
|
|
zookeeper-1.2.3
|
|
wordpress-3.2.1_20170219
|
|
|
|
*/ -}}
|
|
{{- define "common.chartref" -}}
|
|
{{- replace "+" "_" .Chart.Version | printf "%s-%s" .Chart.Name -}}
|
|
{{- end -}}
|