aboutsummaryrefslogtreecommitdiff
path: root/helm/templates/_helpers.tpl
diff options
context:
space:
mode:
authorsickcodes <[email protected]>2021-01-14 08:57:17 +0000
committerGitHub <[email protected]>2021-01-14 08:57:17 +0000
commita9a7863c3cab104081d6b9e87d3a8b4a996ad9ac (patch)
treedd380f79fd2b75e7c76012c5f34bf35294e14b87 /helm/templates/_helpers.tpl
parentUse IMAGE_PATH as a variable during envsubst for the full path of mac_hdd_ng.img (diff)
parentupdate doc with features (diff)
downloaddocker-osx-a9a7863c3cab104081d6b9e87d3a8b4a996ad9ac.tar.xz
docker-osx-a9a7863c3cab104081d6b9e87d3a8b4a996ad9ac.zip
Merge pull request #124 from cephasara/master
Add helm chart
Diffstat (limited to 'helm/templates/_helpers.tpl')
-rw-r--r--helm/templates/_helpers.tpl32
1 files changed, 32 insertions, 0 deletions
diff --git a/helm/templates/_helpers.tpl b/helm/templates/_helpers.tpl
new file mode 100644
index 0000000..d4a1b13
--- /dev/null
+++ b/helm/templates/_helpers.tpl
@@ -0,0 +1,32 @@
+{{/* vim: set filetype=mustache: */}}
+{{/*
+Expand the name of the chart.
+*/}}
+{{- define "docker-osx.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 "docker-osx.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 "docker-osx.chart" -}}
+{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}}
+{{- end -}}