| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- {{/* vim: set filetype=mustache: */}}
- {{/*
- Expand the name of the chart.
- */}}
- {{- define "minio.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 "minio.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 "minio.chart" -}}
- {{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}}
- {{- end -}}
- {{/*
- Return the appropriate apiVersion for networkpolicy.
- */}}
- {{- define "minio.networkPolicy.apiVersion" -}}
- {{- if semverCompare ">=1.4-0, <1.7-0" .Capabilities.KubeVersion.Version -}}
- {{- print "extensions/v1beta1" -}}
- {{- else if semverCompare "^1.7-0" .Capabilities.KubeVersion.Version -}}
- {{- print "networking.k8s.io/v1beta1" -}}
- {{- end -}}
- {{- end -}}
- {{/*
- Return the appropriate apiVersion for deployment.
- */}}
- {{- define "minio.deployment.apiVersion" -}}
- {{- if semverCompare "<1.9-0" .Capabilities.KubeVersion.Version -}}
- {{- print "apps/v1beta2" -}}
- {{- else -}}
- {{- print "apps/v1" -}}
- {{- end -}}
- {{- end -}}
- {{/*
- Return the appropriate apiVersion for statefulset.
- */}}
- {{- define "minio.statefulset.apiVersion" -}}
- {{- if semverCompare "<1.17-0" .Capabilities.KubeVersion.Version -}}
- {{- print "apps/v1beta2" -}}
- {{- else -}}
- {{- print "apps/v1" -}}
- {{- end -}}
- {{- end -}}
- {{/*
- Determine secret name.
- */}}
- {{- define "minio.secretName" -}}
- {{- if .Values.existingSecret -}}
- {{- .Values.existingSecret }}
- {{- else -}}
- {{- include "minio.fullname" . -}}
- {{- end -}}
- {{- end -}}
- {{/*
- Determine service account name for deployment or statefulset.
- */}}
- {{- define "minio.serviceAccountName" -}}
- {{- (include "minio.fullname" .) | replace "+" "_" | trunc 63 | trimSuffix "-" -}}
- {{- end -}}
- {{/*
- Determine name for scc role and rolebinding
- */}}
- {{- define "minio.sccRoleName" -}}
- {{- printf "%s-%s" "scc" (include "minio.fullname" .) | trunc 63 | trimSuffix "-" -}}
- {{- end -}}
- {{/*
- Properly format optional additional arguments to Minio binary
- */}}
- {{- define "minio.extraArgs" -}}
- {{- range .Values.extraArgs -}}
- {{ " " }}{{ . }}
- {{- end -}}
- {{- end -}}
- {{/*
- Formats volumeMount for Minio tls keys and trusted certs
- */}}
- {{- define "minio.tlsKeysVolumeMount" -}}
- {{- if .Values.tls.enabled }}
- - name: cert-secret-volume
- mountPath: {{ .Values.certsPath }}
- {{- end }}
- {{- if or .Values.tls.enabled (ne .Values.trustedCertsSecret "") }}
- {{- $casPath := printf "%s/CAs" .Values.certsPath | clean }}
- - name: trusted-cert-secret-volume
- mountPath: {{ $casPath }}
- {{- end }}
- {{- end -}}
- {{/*
- Formats volume for Minio tls keys and trusted certs
- */}}
- {{- define "minio.tlsKeysVolume" -}}
- {{- if .Values.tls.enabled }}
- - name: cert-secret-volume
- secret:
- secretName: {{ .Values.tls.certSecret }}
- items:
- - key: {{ .Values.tls.publicCrt }}
- path: public.crt
- - key: {{ .Values.tls.privateKey }}
- path: private.key
- {{- end }}
- {{- if or .Values.tls.enabled (ne .Values.trustedCertsSecret "") }}
- {{- $certSecret := eq .Values.trustedCertsSecret "" | ternary .Values.tls.certSecret .Values.trustedCertsSecret }}
- {{- $publicCrt := eq .Values.trustedCertsSecret "" | ternary .Values.tls.publicCrt "" }}
- - name: trusted-cert-secret-volume
- secret:
- secretName: {{ $certSecret }}
- {{- if ne $publicCrt "" }}
- items:
- - key: {{ $publicCrt }}
- path: public.crt
- {{- end }}
- {{- end }}
- {{- end -}}
|