mirror of https://github.com/linkerd/linkerd2.git
62 lines
1.8 KiB
Smarty
62 lines
1.8 KiB
Smarty
{{/* vim: set filetype=mustache: */}}
|
|
{{/*
|
|
Expand the name of the chart.
|
|
*/}}
|
|
{{- define "partials.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 "partials.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 "partials.chart" -}}
|
|
{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Splits a coma separated list into a list of string values.
|
|
For example "11,22,55,44" will become "11","22","55","44"
|
|
*/}}
|
|
{{- define "partials.splitStringList" -}}
|
|
{{- if gt (len .) 0 -}}
|
|
{{- $ports := splitList "," . -}}
|
|
{{- $last := sub (len $ports) 1 -}}
|
|
{{- range $i,$port := $ports -}}
|
|
"{{$port}}"{{ternary "," "" (ne $i $last)}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Splits a coma separated list into a list of port objects.
|
|
For example "11,22,55" will become{"port":11},{"port":22},
|
|
{"port":55}
|
|
*/}}
|
|
{{- define "partials.splitStringListToPorts" -}}
|
|
{{- if gt (len .) 0 -}}
|
|
{{- $ports := splitList "," . -}}
|
|
{{- $last := sub (len $ports) 1 -}}
|
|
{{- range $i,$port := $ports -}}
|
|
{"port":{{$port}}}{{ternary "," "" (ne $i $last)}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
{{- end -}}
|