123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339 |
- {{- /*
- Copyright VMware, Inc.
- SPDX-License-Identifier: APACHE-2.0
- */}}
- {{- if (eq .Values.mode "distributed") }}
- {{- $fullname := include "common.names.fullname" . }}
- {{- $headlessService := printf "%s-headless" (include "common.names.fullname" .) | trunc 63 }}
- {{- $releaseNamespace := include "common.names.namespace" . }}
- {{- $clusterDomain := .Values.clusterDomain }}
- {{- $apiPort := toString .Values.containerPorts.api }}
- {{- $replicaCount := int .Values.statefulset.replicaCount }}
- {{- $zoneCount := int .Values.statefulset.zones }}
- {{- $drivesPerNode := int .Values.statefulset.drivesPerNode }}
- {{- $mountPath := .Values.persistence.mountPath }}
- apiVersion: {{ include "common.capabilities.statefulset.apiVersion" . }}
- kind: StatefulSet
- metadata:
- name: {{ $fullname }}
- namespace: {{ $releaseNamespace | quote }}
- labels: {{- include "common.labels.standard" ( dict "customLabels" .Values.commonLabels "context" $ ) | nindent 4 }}
- {{- if .Values.commonAnnotations }}
- annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
- {{- end }}
- spec:
- {{- $podLabels := include "common.tplvalues.merge" ( dict "values" ( list .Values.podLabels .Values.commonLabels ) "context" . ) }}
- selector:
- matchLabels: {{- include "common.labels.matchLabels" ( dict "customLabels" $podLabels "context" $ ) | nindent 6 }}
- serviceName: {{ $headlessService }}
- replicas: {{ mul $zoneCount $replicaCount }}
- podManagementPolicy: {{ .Values.statefulset.podManagementPolicy }}
- {{- if .Values.statefulset.updateStrategy }}
- updateStrategy: {{- toYaml .Values.statefulset.updateStrategy | nindent 4 }}
- {{- end }}
- template:
- metadata:
- labels: {{- include "common.labels.standard" ( dict "customLabels" $podLabels "context" $ ) | nindent 8 }}
- {{- if or .Values.podAnnotations (include "minio.createSecret" .) }}
- annotations:
- {{- if (include "minio.createSecret" .) }}
- checksum/credentials-secret: {{ include (print $.Template.BasePath "/secrets.yaml") . | sha256sum }}
- {{- end }}
- {{- if .Values.podAnnotations }}
- {{- include "common.tplvalues.render" ( dict "value" .Values.podAnnotations "context" $) | nindent 8 }}
- {{- end }}
- {{- end }}
- spec:
- {{- include "minio.imagePullSecrets" . | nindent 6 }}
- {{- if .Values.schedulerName }}
- schedulerName: {{ .Values.schedulerName }}
- {{- end }}
- serviceAccountName: {{ template "minio.serviceAccountName" . }}
- {{- if .Values.affinity }}
- affinity: {{- include "common.tplvalues.render" (dict "value" .Values.affinity "context" $) | nindent 8 }}
- {{- else }}
- affinity:
- podAffinity: {{- include "common.affinities.pods" (dict "type" .Values.podAffinityPreset "customLabels" $podLabels "context" $) | nindent 10 }}
- podAntiAffinity: {{- include "common.affinities.pods" (dict "type" .Values.podAntiAffinityPreset "customLabels" $podLabels "context" $) | nindent 10 }}
- nodeAffinity: {{- include "common.affinities.nodes" (dict "type" .Values.nodeAffinityPreset.type "key" .Values.nodeAffinityPreset.key "values" .Values.nodeAffinityPreset.values) | nindent 10 }}
- {{- end }}
- {{- if .Values.nodeSelector }}
- nodeSelector: {{- include "common.tplvalues.render" (dict "value" .Values.nodeSelector "context" $) | nindent 8 }}
- {{- end }}
- automountServiceAccountToken: {{ .Values.automountServiceAccountToken }}
- {{- if .Values.hostAliases }}
- hostAliases: {{- include "common.tplvalues.render" (dict "value" .Values.hostAliases "context" $) | nindent 8 }}
- {{- end }}
- {{- if .Values.tolerations }}
- tolerations: {{- include "common.tplvalues.render" (dict "value" .Values.tolerations "context" $) | nindent 8 }}
- {{- end }}
- {{- if .Values.topologySpreadConstraints }}
- topologySpreadConstraints: {{- include "common.tplvalues.render" (dict "value" .Values.topologySpreadConstraints "context" $) | nindent 8 }}
- {{- end }}
- {{- if .Values.priorityClassName }}
- priorityClassName: {{ .Values.priorityClassName | quote }}
- {{- end }}
- {{- if .Values.podSecurityContext.enabled }}
- securityContext: {{- omit .Values.podSecurityContext "enabled" | toYaml | nindent 8 }}
- {{- end }}
- {{- if .Values.terminationGracePeriodSeconds }}
- terminationGracePeriodSeconds: {{ .Values.terminationGracePeriodSeconds }}
- {{- end }}
- {{- if or .Values.initContainers (and .Values.volumePermissions.enabled .Values.persistence.enabled) }}
- initContainers:
- {{- if .Values.initContainers }}
- {{- include "common.tplvalues.render" (dict "value" .Values.initContainers "context" $) | nindent 8 }}
- {{- end }}
- {{- if and .Values.volumePermissions.enabled .Values.persistence.enabled }}
- - name: volume-permissions
- image: {{ template "minio.volumePermissions.image" . }}
- imagePullPolicy: {{ default "" .Values.volumePermissions.image.pullPolicy | quote }}
- command:
- - /bin/bash
- - -ec
- - |
- {{- if and .Values.persistence.enabled (gt $drivesPerNode 1) }}
- chown -R {{ .Values.containerSecurityContext.runAsUser }}:{{ .Values.podSecurityContext.fsGroup }} {{ range $diskId := until $drivesPerNode }}{{ $mountPath }}-{{ $diskId }} {{ end }}
- {{- else }}
- chown -R {{ .Values.containerSecurityContext.runAsUser }}:{{ .Values.podSecurityContext.fsGroup }} {{ $mountPath }}
- {{- end }}
- securityContext: {{- .Values.volumePermissions.containerSecurityContext | toYaml | nindent 12 }}
- {{- if .Values.volumePermissions.resources }}
- resources: {{- toYaml .Values.volumePermissions.resources | nindent 12 }}
- {{- end }}
- volumeMounts:
- {{- if and .Values.persistence.enabled (gt $drivesPerNode 1) }}
- {{- range $diskId := until $drivesPerNode }}
- - name: data-{{ $diskId }}
- mountPath: {{ $mountPath }}-{{ $diskId }}
- {{- end }}
- {{- else }}
- - name: data
- mountPath: {{ $mountPath }}
- {{- end }}
- {{- end }}
- {{- end }}
- containers:
- - name: minio
- image: {{ include "minio.image" . }}
- imagePullPolicy: {{ .Values.image.pullPolicy | quote }}
- {{- if .Values.containerSecurityContext.enabled }}
- securityContext: {{- omit .Values.containerSecurityContext "enabled" | toYaml | nindent 12 }}
- {{- end }}
- {{- if .Values.command }}
- command: {{- include "common.tplvalues.render" (dict "value" .Values.command "context" $) | nindent 12 }}
- {{- end }}
- {{- if .Values.args }}
- args: {{- include "common.tplvalues.render" (dict "value" .Values.args "context" $) | nindent 12 }}
- {{- end }}
- env:
- - name: BITNAMI_DEBUG
- value: {{ ternary "true" "false" .Values.image.debug | quote }}
- - name: MINIO_DISTRIBUTED_MODE_ENABLED
- value: "yes"
- - name: MINIO_DISTRIBUTED_NODES
- {{- $clusters := list }}
- {{- range $i := until $zoneCount }}
- {{- $factor := mul $i $replicaCount }}
- {{- $endIndex := sub (add $factor $replicaCount) 1 }}
- {{- $beginIndex := mul $i $replicaCount }}
- {{- $bucket := ternary (printf "%s-{0...%d}" $mountPath (sub $drivesPerNode 1)) $mountPath (gt $drivesPerNode 1) }}
- {{- $clusters = append $clusters (printf "%s-{%d...%d}.%s.%s.svc.%s:%s%s" $fullname $beginIndex $endIndex $headlessService $releaseNamespace $clusterDomain $apiPort $bucket) }}
- {{- end }}
- value: {{ join "," $clusters | quote }}
- - name: MINIO_SCHEME
- value: {{ ternary "https" "http" .Values.tls.enabled | quote }}
- - name: MINIO_FORCE_NEW_KEYS
- value: {{ ternary "yes" "no" .Values.auth.forceNewKeys | quote }}
- {{- if .Values.auth.useCredentialsFiles }}
- - name: MINIO_ROOT_USER_FILE
- value: "/opt/bitnami/minio/secrets/root-user"
- {{- else }}
- - name: MINIO_ROOT_USER
- valueFrom:
- secretKeyRef:
- name: {{ include "minio.secretName" . }}
- key: root-user
- {{- end }}
- {{- if .Values.auth.useCredentialsFiles }}
- - name: MINIO_ROOT_PASSWORD_FILE
- value: "/opt/bitnami/minio/secrets/root-password"
- {{- else }}
- - name: MINIO_ROOT_PASSWORD
- valueFrom:
- secretKeyRef:
- name: {{ include "minio.secretName" . }}
- key: root-password
- {{- end }}
- - name: MINIO_SKIP_CLIENT
- value: {{ ternary "yes" "no" (empty .Values.defaultBuckets) | quote }}
- {{- if .Values.defaultBuckets }}
- - name: MINIO_DEFAULT_BUCKETS
- value: {{ .Values.defaultBuckets }}
- {{- end }}
- - name: MINIO_BROWSER
- value: {{ ternary "off" "on" .Values.disableWebUI | quote }}
- - name: MINIO_PROMETHEUS_AUTH_TYPE
- value: {{ .Values.metrics.prometheusAuthType | quote }}
- {{- if .Values.tls.mountPath }}
- - name: MINIO_CERTS_DIR
- value: {{ .Values.tls.mountPath | quote }}
- - name: MINIO_CONSOLE_PORT_NUMBER
- value: {{ .Values.containerPorts.console | quote }}
- {{- end }}
- {{- if .Values.extraEnvVars }}
- {{- include "common.tplvalues.render" (dict "value" .Values.extraEnvVars "context" $) | nindent 12 }}
- {{- end }}
- envFrom:
- {{- if .Values.extraEnvVarsCM }}
- - configMapRef:
- name: {{ include "common.tplvalues.render" (dict "value" .Values.extraEnvVarsCM "context" $) }}
- {{- end }}
- {{- if .Values.extraEnvVarsSecret }}
- - secretRef:
- name: {{ include "common.tplvalues.render" (dict "value" .Values.extraEnvVarsSecret "context" $) }}
- {{- end }}
- ports:
- - name: minio-api
- containerPort: {{ .Values.containerPorts.api }}
- protocol: TCP
- - name: minio-console
- containerPort: {{ .Values.containerPorts.console }}
- protocol: TCP
- {{- if .Values.customLivenessProbe }}
- livenessProbe: {{- include "common.tplvalues.render" (dict "value" .Values.customLivenessProbe "context" $) | nindent 12 }}
- {{- else if .Values.livenessProbe.enabled }}
- livenessProbe:
- httpGet:
- path: /minio/health/live
- port: minio-api
- scheme: {{ ternary "HTTPS" "HTTP" .Values.tls.enabled | quote }}
- initialDelaySeconds: {{ .Values.livenessProbe.initialDelaySeconds }}
- periodSeconds: {{ .Values.livenessProbe.periodSeconds }}
- timeoutSeconds: {{ .Values.livenessProbe.timeoutSeconds }}
- successThreshold: {{ .Values.livenessProbe.successThreshold }}
- failureThreshold: {{ .Values.livenessProbe.failureThreshold }}
- {{- end }}
- {{- if .Values.customReadinessProbe }}
- readinessProbe: {{- include "common.tplvalues.render" (dict "value" .Values.customReadinessProbe "context" $) | nindent 12 }}
- {{- else if .Values.readinessProbe.enabled }}
- readinessProbe:
- tcpSocket:
- port: minio-api
- initialDelaySeconds: {{ .Values.readinessProbe.initialDelaySeconds }}
- periodSeconds: {{ .Values.readinessProbe.periodSeconds }}
- timeoutSeconds: {{ .Values.readinessProbe.timeoutSeconds }}
- successThreshold: {{ .Values.readinessProbe.successThreshold }}
- failureThreshold: {{ .Values.readinessProbe.failureThreshold }}
- {{- end }}
- {{- if .Values.customStartupProbe }}
- startupProbe: {{- include "common.tplvalues.render" (dict "value" .Values.customStartupProbe "context" $) | nindent 12 }}
- {{- else if .Values.startupProbe.enabled }}
- startupProbe:
- tcpSocket:
- port: minio-api
- initialDelaySeconds: {{ .Values.startupProbe.initialDelaySeconds }}
- periodSeconds: {{ .Values.startupProbe.periodSeconds }}
- timeoutSeconds: {{ .Values.startupProbe.timeoutSeconds }}
- successThreshold: {{ .Values.startupProbe.successThreshold }}
- failureThreshold: {{ .Values.startupProbe.failureThreshold }}
- {{- end }}
- {{- if .Values.resources }}
- resources: {{- toYaml .Values.resources | nindent 12 }}
- {{- end }}
- {{- if .Values.lifecycleHooks }}
- lifecycle: {{- include "common.tplvalues.render" (dict "value" .Values.lifecycleHooks "context" $) | nindent 12 }}
- {{- end }}
- volumeMounts:
- {{- if .Values.auth.useCredentialsFiles }}
- - name: minio-credentials
- mountPath: /opt/bitnami/minio/secrets/
- {{- end }}
- {{- if .Values.tls.enabled }}
- - name: minio-certs
- mountPath: {{ default "/certs" .Values.tls.mountPath }}
- {{- end }}
- {{- if gt $drivesPerNode 1 }}
- {{- range $diskId := until $drivesPerNode }}
- - name: data-{{ $diskId }}
- mountPath: {{ $mountPath }}-{{ $diskId }}
- {{- end }}
- {{- else }}
- - name: data
- mountPath: {{ $mountPath }}
- {{- end }}
- {{- if .Values.extraVolumeMounts }}
- {{- include "common.tplvalues.render" (dict "value" .Values.extraVolumeMounts "context" $) | nindent 12 }}
- {{- end }}
- {{- if .Values.sidecars }}
- {{- include "common.tplvalues.render" (dict "value" .Values.sidecars "context" $) | nindent 8 }}
- {{- end }}
- volumes:
- {{- if .Values.auth.useCredentialsFiles }}
- - name: minio-credentials
- secret:
- secretName: {{ include "minio.secretName" . }}
- {{- end }}
- {{- if .Values.tls.enabled }}
- - name: minio-certs
- secret:
- secretName: {{ include "minio.tlsSecretName" . }}
- items:
- - key: tls.crt
- path: public.crt
- - key: tls.key
- path: private.key
- - key: ca.crt
- path: CAs/public.crt
- {{- end }}
- {{- if .Values.extraVolumes }}
- {{- include "common.tplvalues.render" (dict "value" .Values.extraVolumes "context" $) | nindent 8 }}
- {{- end }}
- {{- if and (not .Values.persistence.enabled) (gt $drivesPerNode 1) }}
- {{- range $diskId := until $drivesPerNode }}
- - name: data-{{ $diskId }}
- emptyDir: {}
- {{- end }}
- {{- else if not .Values.persistence.enabled }}
- - name: data
- emptyDir: {}
- {{- else }}
- volumeClaimTemplates:
- {{- if gt $drivesPerNode 1 }}
- {{- range $diskId := until $drivesPerNode }}
- - metadata:
- name: data-{{ $diskId }}
- labels: {{- include "common.labels.matchLabels" ( dict "customLabels" $.Values.commonLabels "context" $ ) | nindent 10 }}
- {{- if $.Values.persistence.annotations }}
- annotations: {{- include "common.tplvalues.render" ( dict "value" $.Values.persistence.annotations "context" $) | nindent 10 }}
- {{- end }}
- spec:
- accessModes:
- {{- range $.Values.persistence.accessModes }}
- - {{ . | quote }}
- {{- end }}
- resources:
- requests:
- storage: {{ $.Values.persistence.size | quote }}
- {{- include "common.storage.class" (dict "persistence" $.Values.persistence "global" $.Values.global) | nindent 8 }}
- {{- end }}
- {{- else }}
- - metadata:
- name: data
- labels: {{- include "common.labels.matchLabels" ( dict "customLabels" .Values.commonLabels "context" $ ) | nindent 10 }}
- {{- if .Values.persistence.annotations }}
- annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.persistence.annotations "context" $) | nindent 10 }}
- {{- end }}
- spec:
- accessModes:
- {{- range .Values.persistence.accessModes }}
- - {{ . | quote }}
- {{- end }}
- resources:
- requests:
- storage: {{ .Values.persistence.size | quote }}
- {{- include "common.storage.class" (dict "persistence" .Values.persistence "global" .Values.global) | nindent 8 }}
- {{- end }}
- {{- end }}
- {{- end }}
|