80 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Smarty
		
	
	
	
			
		
		
	
	
			80 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Smarty
		
	
	
	
| {{/* vim: set filetype=mustache: */}}
 | |
| {{/*
 | |
| Expand the name of the chart.
 | |
| */}}
 | |
| {{- define "postgres-operator.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 "postgres-operator.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 service account name.
 | |
| */}}
 | |
| {{- define "postgres-operator.serviceAccountName" -}}
 | |
| {{ default (include "postgres-operator.fullname" .) .Values.serviceAccount.name }}
 | |
| {{- end -}}
 | |
| 
 | |
| {{/*
 | |
| Create a pod service account name.
 | |
| */}}
 | |
| {{- define "postgres-pod.serviceAccountName" -}}
 | |
| {{ default (printf "%s-%v" (include "postgres-operator.fullname" .) "pod") .Values.podServiceAccount.name }}
 | |
| {{- end -}}
 | |
| 
 | |
| {{/*
 | |
| Create a pod priority class name.
 | |
| */}}
 | |
| {{- define "postgres-pod.priorityClassName" -}}
 | |
| {{ default (printf "%s-%v" (include "postgres-operator.fullname" .) "pod") .Values.podPriorityClassName.name }}
 | |
| {{- end -}}
 | |
| 
 | |
| {{/*
 | |
| Create a controller ID.
 | |
| */}}
 | |
| {{- define "postgres-operator.controllerID" -}}
 | |
| {{ default (include "postgres-operator.fullname" .) .Values.controllerID.name }}
 | |
| {{- end -}}
 | |
| 
 | |
| {{/*
 | |
| Create chart name and version as used by the chart label.
 | |
| */}}
 | |
| {{- define "postgres-operator.chart" -}}
 | |
| {{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}}
 | |
| {{- end -}}
 | |
| 
 | |
| {{/*
 | |
| Flatten nested config options when ConfigMap is used as ConfigTarget
 | |
| */}}
 | |
| {{- define "flattenValuesForConfigMap" }}
 | |
| {{- range $key, $value := . }}
 | |
|     {{- if kindIs "slice" $value }}
 | |
| {{ $key }}: {{ join "," $value | quote }}
 | |
|     {{- else if kindIs "map" $value }}
 | |
|         {{- $list := list }}
 | |
|         {{- range $subKey, $subValue := $value }}
 | |
|             {{- $list = append $list (printf "%s:%s" $subKey $subValue) }}
 | |
|         {{- end }}
 | |
| {{ $key }}: {{ join "," $list | quote }}
 | |
|     {{- else }}
 | |
| {{ $key }}: {{ $value | quote }}
 | |
|     {{- end }}
 | |
| {{- end }}
 | |
| {{- end }}
 |