blob: a3e6ef1e6ce380ed6d52a4de264d79e7a798b9f5 [file] [log] [blame]
{{/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/}}
{{/* vim: set filetype=mustache: */}}
{{/*
Expand the name of the chart.
*/}}
{{- define "solr-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 "solr-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 chart name and version as used by the chart label.
*/}}
{{- define "solr-operator.chart" -}}
{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}}
{{- end -}}
{{/*
Create the name of the service account to use
*/}}
{{- define "solr-operator.serviceAccountName" -}}
{{- if .Values.serviceAccount.create -}}
{{ default (include "solr-operator.fullname" .) .Values.serviceAccount.name }}
{{- else -}}
{{ required "Must provide a serviceAccount.name if serviceAccount.create is set to false" .Values.serviceAccount.name }}
{{- end -}}
{{- end -}}
{{/*
Get the namespaces to watch (empty if the operator should watch the entire cluster).
If .Values.watchNamespaces = true, then use the release namespace.
If .Values.watchNamespaces is a string, use it.
If .Values.watchNamespaces is empty or false, return empty.
*/}}
{{- define "solr-operator.watchNamespaces" -}}
{{- if .Values.watchNamespaces -}}
{{- if kindIs "bool" .Values.watchNamespaces -}}
{{ .Release.Namespace }}
{{- else -}}
{{ .Values.watchNamespaces }}
{{- end -}}
{{- end -}}
{{- end -}}
{{/*
What namespace to do leader election in
*/}}
{{- define "solr-operator.leaderElectionNamespace" -}}
{{- (splitList "," (include "solr-operator.watchNamespaces" $)) | first | default $.Release.Namespace -}}
{{- end -}}
{{/*
Determine whether to use ClusterRoles or Roles
*/}}
{{- define "solr-operator.roleType" -}}
{{- if .Values.watchNamespaces -}}
Role
{{- else -}}
ClusterRole
{{- end -}}
{{- end -}}
{{/*
mTLS vars
*/}}
{{- define "solr-operator.mTLS.clientCertDirectory" -}}
/etc/ssl/solr/client-cert
{{- end -}}
{{- define "solr-operator.mTLS.caCertDirectory" -}}
/etc/ssl/solr/ca-cert
{{- end -}}
{{- define "solr-operator.mTLS.caCertName" -}}
rootSolrCert.pem
{{- end -}}
{{- define "solr-operator.mTLS.volumeMounts" -}}
{{- if .Values.mTLS.clientCertSecret -}}
- name: tls-client-cert
mountPath: {{ include "solr-operator.mTLS.clientCertDirectory" . }}
readOnly: true
{{- end -}}
{{ if .Values.mTLS.caCertSecret }}
- name: tls-ca-cert
mountPath: {{ include "solr-operator.mTLS.caCertDirectory" . }}
readOnly: true
{{ end }}
{{- end -}}
{{- define "solr-operator.mTLS.volumes" -}}
{{- if .Values.mTLS.clientCertSecret -}}
- name: tls-client-cert
secret:
secretName: {{ .Values.mTLS.clientCertSecret }}
optional: false
{{- end -}}
{{ if .Values.mTLS.caCertSecret }}
- name: tls-ca-cert
secret:
secretName: {{ .Values.mTLS.caCertSecret }}
items:
- key: {{ .Values.mTLS.caCertSecretKey }}
path: {{ include "solr-operator.mTLS.caCertName" . }}
optional: false
{{- end -}}
{{- end -}}