You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							159 lines
						
					
					
						
							4.8 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							159 lines
						
					
					
						
							4.8 KiB
						
					
					
				| {{/* vim: set filetype=mustache: */}} | |
| {{/* | |
| Expand the name of the chart. | |
| */}} | |
| {{- define "cert-manager.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). | |
| */}} | |
| {{- define "cert-manager.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 the name of the service account to use | |
| */}} | |
| {{- define "cert-manager.serviceAccountName" -}} | |
| {{- if .Values.serviceAccount.create -}} | |
|     {{ default (include "cert-manager.fullname" .) .Values.serviceAccount.name }} | |
| {{- else -}} | |
|     {{ default "default" .Values.serviceAccount.name }} | |
| {{- end -}} | |
| {{- end -}} | |
|  | |
| {{/* | |
| Webhook templates | |
| */}} | |
|  | |
| {{/* | |
| Expand the name of the chart. | |
| Manually fix the 'app' and 'name' labels to 'webhook' to maintain | |
| compatibility with the v0.9 deployment selector. | |
| */}} | |
| {{- define "webhook.name" -}} | |
| {{- printf "webhook" -}} | |
| {{- 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 "webhook.fullname" -}} | |
| {{- $trimmedName := printf "%s" (include "cert-manager.fullname" .) | trunc 55 | trimSuffix "-" -}} | |
| {{- printf "%s-webhook" $trimmedName | trunc 63 | trimSuffix "-" -}} | |
| {{- end -}} | |
|  | |
| {{- define "webhook.caRef" -}} | |
| {{ .Release.Namespace }}/{{ template "webhook.fullname" . }}-ca | |
| {{- end -}} | |
|  | |
| {{/* | |
| Create the name of the service account to use | |
| */}} | |
| {{- define "webhook.serviceAccountName" -}} | |
| {{- if .Values.webhook.serviceAccount.create -}} | |
|     {{ default (include "webhook.fullname" .) .Values.webhook.serviceAccount.name }} | |
| {{- else -}} | |
|     {{ default "default" .Values.webhook.serviceAccount.name }} | |
| {{- end -}} | |
| {{- end -}} | |
|  | |
| {{/* | |
| cainjector templates | |
| */}} | |
|  | |
| {{/* | |
| Expand the name of the chart. | |
| Manually fix the 'app' and 'name' labels to 'cainjector' to maintain | |
| compatibility with the v0.9 deployment selector. | |
| */}} | |
| {{- define "cainjector.name" -}} | |
| {{- printf "cainjector" -}} | |
| {{- 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 "cainjector.fullname" -}} | |
| {{- $trimmedName := printf "%s" (include "cert-manager.fullname" .) | trunc 52 | trimSuffix "-" -}} | |
| {{- printf "%s-cainjector" $trimmedName | trunc 63 | trimSuffix "-" -}} | |
| {{- end -}} | |
|  | |
| {{/* | |
| Create the name of the service account to use | |
| */}} | |
| {{- define "cainjector.serviceAccountName" -}} | |
| {{- if .Values.cainjector.serviceAccount.create -}} | |
|     {{ default (include "cainjector.fullname" .) .Values.cainjector.serviceAccount.name }} | |
| {{- else -}} | |
|     {{ default "default" .Values.cainjector.serviceAccount.name }} | |
| {{- end -}} | |
| {{- end -}} | |
|  | |
| {{/* | |
| startupapicheck templates | |
| */}} | |
|  | |
| {{/* | |
| Expand the name of the chart. | |
| Manually fix the 'app' and 'name' labels to 'startupapicheck' to maintain | |
| compatibility with the v0.9 deployment selector. | |
| */}} | |
| {{- define "startupapicheck.name" -}} | |
| {{- printf "startupapicheck" -}} | |
| {{- 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 "startupapicheck.fullname" -}} | |
| {{- $trimmedName := printf "%s" (include "cert-manager.fullname" .) | trunc 52 | trimSuffix "-" -}} | |
| {{- printf "%s-startupapicheck" $trimmedName | trunc 63 | trimSuffix "-" -}} | |
| {{- end -}} | |
|  | |
| {{/* | |
| Create the name of the service account to use | |
| */}} | |
| {{- define "startupapicheck.serviceAccountName" -}} | |
| {{- if .Values.startupapicheck.serviceAccount.create -}} | |
|     {{ default (include "startupapicheck.fullname" .) .Values.startupapicheck.serviceAccount.name }} | |
| {{- else -}} | |
|     {{ default "default" .Values.startupapicheck.serviceAccount.name }} | |
| {{- end -}} | |
| {{- end -}} | |
|  | |
| {{/* | |
| Create chart name and version as used by the chart label. | |
| */}} | |
| {{- define "chartName" -}} | |
| {{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}} | |
| {{- end -}} | |
|  | |
| {{/* | |
| Labels that should be added on each resource | |
| */}} | |
| {{- define "labels" -}} | |
| app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} | |
| {{- if eq (default "helm" .Values.creator) "helm" }} | |
| app.kubernetes.io/managed-by: {{ .Release.Service }} | |
| helm.sh/chart: {{ include "chartName" . }} | |
| {{- end -}} | |
| {{- end -}}
 | |
| 
 |