mirror of
https://github.com/bitnami/charts.git
synced 2026-03-15 14:57:16 +08:00
* adjust the naming style for resources' name to make them not pass the length limit Signed-off-by: Gang Liu <gang.liu@daocloud.io> * upgrade the patch version Signed-off-by: Gang Liu <gang.liu@daocloud.io> Signed-off-by: Gang Liu <gang.liu@daocloud.io>
28 lines
1.5 KiB
YAML
28 lines
1.5 KiB
YAML
{{- if (include "solr.createTlsSecret" .) }}
|
|
{{- $ca := genCA "solr-ca" 365 }}
|
|
{{- $releaseNamespace := .Release.Namespace }}
|
|
{{- $clusterDomain := .Values.clusterDomain }}
|
|
{{- $serviceName := include "common.names.fullname" . }}
|
|
{{- $headlessServiceName := printf "%s-headless" (include "common.names.fullname" .) | trunc 63 | trimSuffix "-" }}
|
|
{{- $altNames := list (printf "*.%s.%s.svc.%s" $serviceName $releaseNamespace $clusterDomain) (printf "%s.%s.svc.%s" $serviceName $releaseNamespace $clusterDomain) (printf "*.%s.%s.svc.%s" $headlessServiceName $releaseNamespace $clusterDomain) (printf "%s.%s.svc.%s" $headlessServiceName $releaseNamespace $clusterDomain) $serviceName }}
|
|
{{- $crt := genSignedCert $serviceName nil $altNames 365 $ca }}
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: {{ printf "%s-crt" (include "common.names.fullname" .) | trunc 63 | trimSuffix "-" }}
|
|
labels: {{- include "common.labels.standard" . | nindent 4 }}
|
|
app.kubernetes.io/component: solr
|
|
{{- if .Values.commonLabels }}
|
|
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
|
|
{{- end }}
|
|
{{- if .Values.commonAnnotations }}
|
|
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
|
|
{{- end }}
|
|
namespace: {{ .Release.Namespace | quote }}
|
|
type: kubernetes.io/tls
|
|
data:
|
|
ca.crt: {{ $ca.Cert | b64enc | quote }}
|
|
tls.crt: {{ $crt.Cert | b64enc | quote }}
|
|
tls.key: {{ $crt.Key | b64enc | quote }}
|
|
{{- end }}
|