69 lines
2.1 KiB
Smarty
69 lines
2.1 KiB
Smarty
{{/* vim: set filetype=mustache: */}}
|
|
{{/*
|
|
Expand the name of the chart.
|
|
*/}}
|
|
{{- define "layer3_research_manager.name" -}}
|
|
{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}}
|
|
{{- end -}}
|
|
|
|
|
|
{{- define "layer3_research_manager.image" -}}
|
|
{{ include "common.image" (dict "imageRoot" .Values.image "global" .Values.global) }}
|
|
{{- 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 "layer3_research_manager.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 "layer3_research_manager.chart" -}}
|
|
{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Common labels
|
|
*/}}
|
|
{{- define "layer3_research_manager.labels" -}}
|
|
app.kubernetes.io/name: {{ include "layer3_research_manager.name" . }}
|
|
helm.sh/chart: {{ include "layer3_research_manager.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 }}
|
|
{{- if .Values.labels }}
|
|
{{ toYaml .Values.labels }}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
|
|
{{- define "layer3_research_manager.domain" -}}
|
|
{{- if .Values.global }}
|
|
{{- .Values.global.domain -}}
|
|
{{- else if hasKey .Values "domain" }}
|
|
{{- .Values.domain -}}
|
|
{{- else }}"localhost"{{- end -}}
|
|
{{- end -}}
|
|
|
|
{{- define "layer3_research_manager.secretName" -}}
|
|
{{- if .Values.global}}
|
|
{{ .Values.global.ingress.tls.secretName }}
|
|
{{- else }}
|
|
{{ .Values.ingress.tls.secretName }}
|
|
{{- end -}}
|
|
{{- end -}} |