| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- {{/*
- Expand the name of the chart.
- */}}
- {{- define "podinfo.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 "podinfo.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 }}
- {{/*
- Allow the release namespace to be overridden for multi-namespace deployments in combined charts.
- */}}
- {{- define "podinfo.namespace" -}}
- {{- default .Release.Namespace .Values.namespaceOverride | trunc 63 | trimSuffix "-" -}}
- {{- end -}}
- {{/*
- Create chart name and version as used by the chart label.
- */}}
- {{- define "podinfo.chart" -}}
- {{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }}
- {{- end }}
- {{/*
- Common labels
- */}}
- {{- define "podinfo.labels" -}}
- helm.sh/chart: {{ include "podinfo.chart" . }}
- {{ include "podinfo.selectorLabels" . }}
- {{- if .Chart.AppVersion }}
- app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
- {{- end }}
- app.kubernetes.io/managed-by: {{ .Release.Service }}
- {{- end }}
- {{/*
- Selector labels
- */}}
- {{- define "podinfo.selectorLabels" -}}
- app.kubernetes.io/name: {{ include "podinfo.fullname" . }}
- {{- end }}
- {{/*
- Create the name of the service account to use
- */}}
- {{- define "podinfo.serviceAccountName" -}}
- {{- if .Values.serviceAccount.enabled }}
- {{- default (include "podinfo.fullname" .) .Values.serviceAccount.name }}
- {{- else }}
- {{- default "default" .Values.serviceAccount.name }}
- {{- end }}
- {{- end }}
- {{/*
- Create the name of the tls secret for secure port
- */}}
- {{- define "podinfo.tlsSecretName" -}}
- {{- $fullname := include "podinfo.fullname" . -}}
- {{- default (printf "%s-tls" $fullname) .Values.tls.secretName }}
- {{- end }}
|