blob: 4f31a8bfa11b60175c9d1425337537f0fcb7d062 [file] [log] [blame]
Scott Baker69654392021-09-17 13:50:16 -07001{{/* vim: set filetype=mustache: */}}
2{{/*
3SPDX-FileCopyrightText: 2020-present Open Networking Foundation <info@opennetworking.org>
Sean Condon160ec1d2022-02-08 12:58:25 +00004SPDX-License-Identifier: Apache-2.0
Scott Baker69654392021-09-17 13:50:16 -07005
6Expand the name of the chart.
7*/}}
8{{- define "global.name" -}}
9{{- default .Chart.Name .Values.global.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 "global.fullname" -}}
18{{- if .Values.global.fullnameOverride -}}
19{{- .Values.global.fullnameOverride | trunc 63 | trimSuffix "-" -}}
20{{- else -}}
21{{- $name := default .Chart.Name .Values.global.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 "global.chart" -}}
34{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}}
35{{- end -}}
36
37{{/*
38Common labels
39*/}}
40{{- define "global.labels" -}}
41helm.sh/chart: {{ include "global.chart" . }}
42{{ include "global.selectorLabels" . }}
43{{- if .Chart.AppVersion }}
44app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
45{{- end }}
46app.kubernetes.io/managed-by: {{ .Release.Service }}
47{{- end -}}
48
49{{/*
50Selector labels
51*/}}
52{{- define "global.selectorLabels" -}}
53app.kubernetes.io/name: {{ include "global.name" . }}
54app.kubernetes.io/instance: {{ .Release.Name }}
55{{- end -}}
56
57{{/*
58global consensus image name
59*/}}
SeanCondon4346ab92022-11-30 13:33:08 +000060{{- define "global.atomix.store.consensus.imagename" -}}
61{{- if .Values.global.atomix.store.consensus.image.tag -}}
62{{- if .Values.global.atomix.store.consensus.image.registry -}}
63{{- printf "%s/" .Values.global.atomix.store.consensus.image.registry -}}
Scott Baker69654392021-09-17 13:50:16 -070064{{- end -}}
SeanCondon4346ab92022-11-30 13:33:08 +000065{{- printf "%s:" .Values.global.atomix.store.consensus.image.repository -}}
66{{- .Values.global.atomix.store.consensus.image.tag -}}
Scott Baker69654392021-09-17 13:50:16 -070067{{- else -}}
68""
69{{- end -}}
70{{- end -}}
71
72{{/*
73global consensus store name
74*/}}
SeanCondon4346ab92022-11-30 13:33:08 +000075{{- define "global.atomix.store.consensus.name" -}}
76{{- if .Values.global.atomix.store.consensus.name -}}
77{{- printf "%s" .Values.global.atomix.store.consensus.name -}}
Scott Baker69654392021-09-17 13:50:16 -070078{{- else -}}
79{{- printf "%s-consensus-store" ( include "global.fullname" . ) -}}
80{{- end -}}
81{{- end -}}