aboutsummaryrefslogtreecommitdiff
path: root/grumpy/cgit/templates/_helpers.tpl
diff options
context:
space:
mode:
authorMax Resnick <max@ofmax.li>2020-01-01 11:08:33 -0800
committerMax Resnick <max@ofmax.li>2020-01-01 11:08:33 -0800
commit584857f515ab6fe30530d25483869ed517e9575d (patch)
treea8da4270005b51100d795c58b9ae24f5fc6d0219 /grumpy/cgit/templates/_helpers.tpl
parent479a617193774e2fe88279caa34ae3ff56a35fba (diff)
downloadgrumpy-charts-584857f515ab6fe30530d25483869ed517e9575d.tar.gz
add cgit chart
Diffstat (limited to '')
-rw-r--r--grumpy/cgit/templates/_helpers.tpl56
1 files changed, 56 insertions, 0 deletions
diff --git a/grumpy/cgit/templates/_helpers.tpl b/grumpy/cgit/templates/_helpers.tpl
new file mode 100644
index 0000000..52128b4
--- /dev/null
+++ b/grumpy/cgit/templates/_helpers.tpl
@@ -0,0 +1,56 @@
+{{/* vim: set filetype=mustache: */}}
+{{/*
+Expand the name of the chart.
+*/}}
+{{- define "cgit.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 "cgit.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 "cgit.chart" -}}
+{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}}
+{{- end -}}
+
+{{/*
+Common labels
+*/}}
+{{- define "cgit.labels" -}}
+app.kubernetes.io/name: {{ include "cgit.name" . }}
+helm.sh/chart: {{ include "cgit.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 "cgit.serviceAccountName" -}}
+{{- if .Values.serviceAccount.create -}}
+ {{ default (include "cgit.fullname" .) .Values.serviceAccount.name }}
+{{- else -}}
+ {{ default "default" .Values.serviceAccount.name }}
+{{- end -}}
+{{- end -}}