blob: a4ab8bd92ba7c4c9e03daddb1e8ae1acd8bb4a0d [file] [log] [blame]
PUSHP RAJ7c521fa2021-12-06 14:19:03 +00001{{/* vim: set filetype=mustache: */}}
2{{/*
3SPDX-FileCopyrightText: 2021-present Open Networking Foundation <info@opennetworking.org>
Sean Condon160ec1d2022-02-08 12:58:25 +00004SPDX-License-Identifier: Apache-2.0
PUSHP RAJ7c521fa2021-12-06 14:19:03 +00005
6Expand the name of the chart.
7*/}}
8{{- define "chronos-exporter.name" -}}
9{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}}
10{{- end -}}
11
12{{/*
13Create a default fully qualified app name.
14We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
15If release name contains chart name it will be used as a full name.
16*/}}
17{{- define "chronos-exporter.fullname" -}}
18{{- if .Values.fullnameOverride -}}
19{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" -}}
20{{- else -}}
21{{- $name := default .Chart.Name .Values.nameOverride -}}
22{{- if contains $name .Release.Name -}}
23{{- .Release.Name | trunc 63 | trimSuffix "-" -}}
24{{- else -}}
25{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}}
26{{- end -}}
27{{- end -}}
28{{- end -}}
29
30{{/*
31Create chart name and version as used by the chart label.
32*/}}
33{{- define "chronos-exporter.chart" -}}
34{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}}
35{{- end -}}
36
37
38{{/*
39Common labels
40*/}}
41{{- define "chronos-exporter.labels" -}}
42helm.sh/chart: {{ include "chronos-exporter.chart" . }}
43{{ include "chronos-exporter.selectorLabels" . }}
44{{- if .Chart.AppVersion }}
45app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
46{{- end }}
47app.kubernetes.io/managed-by: {{ .Release.Service }}
48{{- end -}}
49
50{{/*
51Selector labels
52*/}}
53{{- define "chronos-exporter.selectorLabels" -}}
54app.kubernetes.io/name: {{ include "chronos-exporter.name" . }}
55app.kubernetes.io/instance: {{ .Release.Name }}
56{{- end -}}