mirror of https://github.com/easzlab/kubeasz.git
54 lines
1.6 KiB
Smarty
54 lines
1.6 KiB
Smarty
{{/* vim: set filetype=mustache: */}}
|
|
|
|
{{/*
|
|
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 "redis-ha.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 "redis-ha.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 -}}
|
|
|
|
{{- /*
|
|
Credit: @technosophos
|
|
https://github.com/technosophos/common-chart/
|
|
labels.standard prints the standard Helm labels.
|
|
The standard labels are frequently used in metadata.
|
|
*/ -}}
|
|
{{- define "labels.standard" -}}
|
|
app: {{ template "redis-ha.name" . }}
|
|
heritage: {{ .Release.Service | quote }}
|
|
release: {{ .Release.Name | quote }}
|
|
chart: {{ template "chartref" . }}
|
|
{{- end -}}
|
|
|
|
{{- /*
|
|
Credit: @technosophos
|
|
https://github.com/technosophos/common-chart/
|
|
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 "chartref" -}}
|
|
{{- replace "+" "_" .Chart.Version | printf "%s-%s" .Chart.Name -}}
|
|
{{- end -}}
|
|
|