aboutsummaryrefslogtreecommitdiff
path: root/helm/templates/_helpers.tpl
diff options
context:
space:
mode:
authorpeter <[email protected]>2021-01-12 20:26:19 -0800
committerpeter <[email protected]>2021-01-12 20:26:19 -0800
commitb28dd7051782ceb87dadede8676cb7a88dc28881 (patch)
treeddcb6876e1b2cf9525dccc4e6855e7bb065427a4 /helm/templates/_helpers.tpl
parentUse IMAGE_PATH as a variable during envsubst for the full path of mac_hdd_ng.img (diff)
downloaddocker-osx-b28dd7051782ceb87dadede8676cb7a88dc28881.tar.xz
docker-osx-b28dd7051782ceb87dadede8676cb7a88dc28881.zip
add helm chart for running in Kubernetes
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 -}}