2021-10-02 06:16:07 +00:00
|
|
|
{{/*
|
|
|
|
|
Expand the name of the chart.
|
|
|
|
|
*/}}
|
|
|
|
|
{{- define "appsmith.name" -}}
|
2021-12-28 07:20:37 +00:00
|
|
|
{{- default .Chart.Name .Values.fullnameOverride | trunc 63 | trimSuffix "-" }}
|
2021-10-02 06:16:07 +00:00
|
|
|
{{- 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 "appsmith.fullname" -}}
|
|
|
|
|
{{- if .Values.fullnameOverride }}
|
|
|
|
|
{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }}
|
|
|
|
|
{{- else }}
|
2021-12-28 07:20:37 +00:00
|
|
|
{{- $name := default .Chart.Name .Values.fullnameOverride }}
|
2021-10-02 06:16:07 +00:00
|
|
|
{{- 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 "appsmith.chart" -}}
|
|
|
|
|
{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }}
|
|
|
|
|
{{- end }}
|
|
|
|
|
|
|
|
|
|
{{/*
|
|
|
|
|
Common labels
|
|
|
|
|
*/}}
|
|
|
|
|
{{- define "appsmith.labels" -}}
|
|
|
|
|
appsmith.sh/chart: {{ include "appsmith.chart" . }}
|
|
|
|
|
{{ include "appsmith.selectorLabels" . }}
|
|
|
|
|
{{- if .Chart.AppVersion }}
|
|
|
|
|
app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
|
|
|
|
|
{{- end }}
|
|
|
|
|
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
|
|
|
|
{{- end }}
|
|
|
|
|
|
|
|
|
|
{{/*
|
|
|
|
|
Selector labels
|
|
|
|
|
*/}}
|
|
|
|
|
{{- define "appsmith.selectorLabels" -}}
|
|
|
|
|
app.kubernetes.io/name: {{ include "appsmith.name" . }}
|
|
|
|
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
|
|
|
{{- end }}
|
|
|
|
|
|
|
|
|
|
{{/*
|
|
|
|
|
Create the name of the service account to use
|
|
|
|
|
*/}}
|
|
|
|
|
{{- define "appsmith.serviceAccountName" -}}
|
|
|
|
|
{{- if .Values.serviceAccount.create }}
|
|
|
|
|
{{- default (include "appsmith.fullname" .) .Values.serviceAccount.name }}
|
|
|
|
|
{{- else }}
|
|
|
|
|
{{- default "default" .Values.serviceAccount.name }}
|
|
|
|
|
{{- end }}
|
|
|
|
|
{{- end }}
|
|
|
|
|
|
|
|
|
|
{{/*
|
|
|
|
|
Allow the release namespace to be overridden for multi-namespace deployments in combined charts.
|
|
|
|
|
*/}}
|
|
|
|
|
{{- define "appsmith.namespace" -}}
|
|
|
|
|
{{- if .Values.global -}}
|
|
|
|
|
{{- if .Values.global.namespaceOverride }}
|
|
|
|
|
{{- .Values.global.namespaceOverride -}}
|
|
|
|
|
{{- else -}}
|
|
|
|
|
{{- .Release.Namespace -}}
|
|
|
|
|
{{- end -}}
|
|
|
|
|
{{- else -}}
|
|
|
|
|
{{- .Release.Namespace -}}
|
|
|
|
|
{{- end }}
|
|
|
|
|
{{- end -}}
|
|
|
|
|
|
|
|
|
|
{{/*
|
2021-12-28 07:20:37 +00:00
|
|
|
Kubernetes standard labels
|
2021-10-02 06:16:07 +00:00
|
|
|
*/}}
|
2021-12-28 07:20:37 +00:00
|
|
|
{{- define "labels.standard" -}}
|
|
|
|
|
app.kubernetes.io/name: {{ include "names.name" . }}
|
|
|
|
|
helm.sh/chart: {{ include "names.chart" . }}
|
|
|
|
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
|
|
|
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
|
|
|
|
{{- end -}}
|
|
|
|
|
|
|
|
|
|
{{/*
|
|
|
|
|
Expand the name of the chart.
|
|
|
|
|
*/}}
|
|
|
|
|
{{- define "names.name" -}}
|
|
|
|
|
{{- default .Chart.Name .Values.fullnameOverride | trunc 63 | trimSuffix "-" -}}
|
|
|
|
|
{{- end -}}
|
|
|
|
|
|
|
|
|
|
{{/*
|
|
|
|
|
Create chart name and version as used by the chart label.
|
|
|
|
|
*/}}
|
|
|
|
|
{{- define "names.chart" -}}
|
|
|
|
|
{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}}
|
|
|
|
|
{{- end -}}
|
|
|
|
|
|
|
|
|
|
{{/*
|
|
|
|
|
Return the proper Storage Class
|
|
|
|
|
*/}}
|
|
|
|
|
{{- define "storage.class" -}}
|
|
|
|
|
|
|
|
|
|
{{- $storageClass := .persistence.storageClass -}}
|
|
|
|
|
{{- if .global -}}
|
|
|
|
|
{{- if .global.storageClass -}}
|
|
|
|
|
{{- $storageClass = .global.storageClass -}}
|
|
|
|
|
{{- end -}}
|
|
|
|
|
{{- end -}}
|
|
|
|
|
|
|
|
|
|
{{- if $storageClass -}}
|
|
|
|
|
{{- if (eq "-" $storageClass) -}}
|
|
|
|
|
{{- printf "storageClassName: \"\"" -}}
|
|
|
|
|
{{- else }}
|
|
|
|
|
{{- printf "storageClassName: %s" $storageClass -}}
|
|
|
|
|
{{- end -}}
|
|
|
|
|
{{- end -}}
|
|
|
|
|
|
|
|
|
|
{{- end -}}
|
|
|
|
|
|
|
|
|
|
{{/*
|
|
|
|
|
Renders a value that contains template.
|
|
|
|
|
*/}}
|
|
|
|
|
{{- define "tplvalues.render" -}}
|
|
|
|
|
{{- if typeIs "string" .value }}
|
|
|
|
|
{{- tpl .value .context }}
|
|
|
|
|
{{- else }}
|
|
|
|
|
{{- tpl (.value | toYaml) .context }}
|
|
|
|
|
{{- end }}
|
2021-10-02 06:16:07 +00:00
|
|
|
{{- end -}}
|