aboutsummaryrefslogtreecommitdiff
path: root/grumpy/znc/templates/_helpers.tpl
diff options
context:
space:
mode:
authorMax Resnick <max@ofmax.li>2020-03-05 20:58:34 -0800
committerMax Resnick <max@ofmax.li>2020-03-05 20:58:34 -0800
commit745347bc347406a48c9e7cf20c17b8c3f1d8e961 (patch)
treea3965704264190fdede6007800ec5fabcb28482c /grumpy/znc/templates/_helpers.tpl
parent109fad80f323567d6751c9f51e20dd41582d43bf (diff)
downloadgrumpy-charts-745347bc347406a48c9e7cf20c17b8c3f1d8e961.tar.gz
add znc
Diffstat (limited to '')
-rw-r--r--grumpy/znc/templates/_helpers.tpl56
1 files changed, 56 insertions, 0 deletions
diff --git a/grumpy/znc/templates/_helpers.tpl b/grumpy/znc/templates/_helpers.tpl
new file mode 100644
index 0000000..c1801c6
--- /dev/null
+++ b/grumpy/znc/templates/_helpers.tpl
@@ -0,0 +1,56 @@
+{{/* vim: set filetype=mustache: */}}
+{{/*
+Expand the name of the chart.
+*/}}
+{{- define "znc.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 "znc.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 "znc.chart" -}}
+{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}}
+{{- end -}}
+
+{{/*
+Common labels
+*/}}
+{{- define "znc.labels" -}}
+app.kubernetes.io/name: {{ include "znc.name" . }}
+helm.sh/chart: {{ include "znc.chart" . }}
+app.kubernetes.io/instance: {{ .Release.Name }}
+{{- if .Chart.AppVersion }}
+app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
+{{- end }}
+app.kubernetes.io/managed-by: {{ .Release.Service }}
+{{- end -}}
+
+{{/*
+Create the name of the service account to use
+*/}}
+{{- define "znc.serviceAccountName" -}}
+{{- if .Values.serviceAccount.create -}}
+ {{ default (include "znc.fullname" .) .Values.serviceAccount.name }}
+{{- else -}}
+ {{ default "default" .Values.serviceAccount.name }}
+{{- end -}}
+{{- end -}}