89 lines
3.2 KiB
Smarty
89 lines
3.2 KiB
Smarty
{{/* vim: set filetype=mustache: */}}
|
|
{{/*
|
|
Expand the name of the chart.
|
|
*/}}
|
|
{{- define "wekan.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 "wekan.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 a default fully qualified name for the wekan data app.
|
|
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
|
|
*/}}
|
|
{{- define "wekan.localdata.fullname" -}}
|
|
{{- if .Values.localdata.fullnameOverride -}}
|
|
{{- .Values.localdata.fullnameOverride | trunc 63 | trimSuffix "-" -}}
|
|
{{- else -}}
|
|
{{- $name := default .Chart.Name .Values.nameOverride -}}
|
|
{{- if contains $name .Release.Name -}}
|
|
{{- printf "%s-localdata" .Release.Name | trunc 63 | trimSuffix "-" -}}
|
|
{{- else -}}
|
|
{{- printf "%s-%s-localdata" .Release.Name $name | trunc 63 | trimSuffix "-" -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
{{/*
|
|
Create chart name and version as used by the chart label.
|
|
*/}}
|
|
{{- define "wekan.chart" -}}
|
|
{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Create the name of the service account to use for the api component
|
|
*/}}
|
|
{{- define "wekan.serviceAccountName" -}}
|
|
{{- if .Values.serviceAccounts.create -}}
|
|
{{ default (include "wekan.fullname" .) .Values.serviceAccounts.name }}
|
|
{{- else -}}
|
|
{{ default "default" .Values.serviceAccounts.name }}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Create a default fully qualified mongodb-replicaset name.
|
|
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
|
|
*/}}
|
|
{{- define "wekan.mongodb.svcname" -}}
|
|
{{- $name := default "mongodb" (index .Values "mongodb" "nameOverride") -}}
|
|
{{- if eq .Values.mongodb.architecture "replicaset" }}
|
|
{{- printf "%s-%s-headless" .Release.Name $name | trunc 63 | trimSuffix "-" -}}
|
|
{{- else -}}
|
|
{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Create the MongoDB URL. If MongoDB is installed as part of this chart, use k8s service discovery,
|
|
else use user-provided URL.
|
|
*/}}
|
|
{{- define "mongodb.url" -}}
|
|
{{- if (index .Values "mongodb" "enabled") -}}
|
|
{{- $count := (int (index .Values "mongodb" "replicaCount")) -}}
|
|
{{- $release := .Release.Name -}}
|
|
{{- $replicaSetName := (index .Values "mongodb" "replicaSetName") -}}
|
|
{{- $mongodbSvcName := include "wekan.mongodb.svcname" . -}}
|
|
mongodb://{{- range $v := until $count }}{{ $release }}-mongodb-{{ $v }}.{{ $mongodbSvcName }}:27017{{ if ne $v (sub $count 1) }},{{- end -}}{{- end -}}/{{ .Values.dbname }}?replicaSet={{ $replicaSetName }}
|
|
{{- else -}}
|
|
{{- index .Values "mongodb" "url" -}}
|
|
{{- end -}}
|
|
{{- end -}}
|