diff options
| author | Saumit <justsaumit@protonmail.com> | 2025-10-04 01:36:57 +0530 |
|---|---|---|
| committer | Saumit <justsaumit@protonmail.com> | 2025-10-04 01:36:57 +0530 |
| commit | df2bd058309ac234eebdad3b0682a137e27dfc44 (patch) | |
| tree | 39be2243787c3bdd595ae123766565f80a8a039c /astroshop-helm/recommendation/templates/_helpers.tpl | |
| parent | 90a62ae7ea5e745b99d8ac8d08ae837bbaedfce5 (diff) | |
Add tested Helm chart and configuration files for OpenTelemetry demo services
Diffstat (limited to 'astroshop-helm/recommendation/templates/_helpers.tpl')
| -rw-r--r-- | astroshop-helm/recommendation/templates/_helpers.tpl | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/astroshop-helm/recommendation/templates/_helpers.tpl b/astroshop-helm/recommendation/templates/_helpers.tpl new file mode 100644 index 0000000..4945313 --- /dev/null +++ b/astroshop-helm/recommendation/templates/_helpers.tpl @@ -0,0 +1,62 @@ +{{/* +Expand the name of the chart. +*/}} +{{- define "recommendation.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 "recommendation.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 "recommendation.chart" -}} +{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Common labels +*/}} +{{- define "recommendation.labels" -}} +helm.sh/chart: {{ include "recommendation.chart" . }} +{{ include "recommendation.selectorLabels" . }} +{{- if .Chart.AppVersion }} +app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} +{{- end }} +app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- end }} + +{{/* +Selector labels +*/}} +{{- define "recommendation.selectorLabels" -}} +app.kubernetes.io/name: {{ include "recommendation.name" . }} +app.kubernetes.io/instance: {{ .Release.Name }} +{{- end }} + +{{/* +Create the name of the service account to use +*/}} +{{- define "recommendation.serviceAccountName" -}} +{{- if .Values.serviceAccount.create }} +{{- default (include "recommendation.fullname" .) .Values.serviceAccount.name }} +{{- else }} +{{- default "default" .Values.serviceAccount.name }} +{{- end }} +{{- end }} |
