{{- if and (eq .Values.mode "distributed") (not .Values.gateway.enabled) }} {{- $fullname := include "common.names.fullname" . }} {{- $headlessService := printf "%s-headless" (include "common.names.fullname" .) | trunc 63 }} {{- $releaseNamespace := .Release.Namespace }} {{- $clusterDomain := .Values.clusterDomain }} {{- $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 }} labels: {{- include "common.labels.standard" . | nindent 4 }} {{- 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 }} spec: selector: matchLabels: {{- include "common.labels.matchLabels" . | nindent 6 }} serviceName: {{ $headlessService }} replicas: {{ mul $zoneCount $replicaCount }} podManagementPolicy: {{ .Values.statefulset.podManagementPolicy }} updateStrategy: type: {{ .Values.statefulset.updateStrategy }} {{- if (eq "Recreate" .Values.statefulset.updateStrategy) }} rollingUpdate: null {{- end }} template: metadata: labels: {{- include "common.labels.standard" . | nindent 8 }} {{- if .Values.podLabels }} {{- include "common.tplvalues.render" (dict "value" .Values.podLabels "context" $) | nindent 8 }} {{- end }} {{- 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 "context" $) | nindent 10 }} podAntiAffinity: {{- include "common.affinities.pods" (dict "type" .Values.podAntiAffinityPreset "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 }} {{- 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.securityContext.enabled }} securityContext: fsGroup: {{ .Values.securityContext.fsGroup }} {{- 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.securityContext.runAsUser }}:{{ .Values.securityContext.fsGroup }} {{ range $diskId := until $drivesPerNode }}{{ $mountPath }}-{{ $diskId }} {{ end }} {{- else }} chown -R {{ .Values.securityContext.runAsUser }}:{{ .Values.securityContext.fsGroup }} {{ $mountPath }} {{- end }} securityContext: runAsUser: 0 {{- 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.securityContext.enabled }} securityContext: runAsUser: {{ .Values.securityContext.runAsUser }} {{- 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" $fullname $beginIndex $endIndex $headlessService $releaseNamespace $clusterDomain $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.forceNewKeys | quote }} {{- if .Values.useCredentialsFile }} - name: MINIO_ACCESS_KEY_FILE value: "/opt/bitnami/minio/secrets/access-key" {{- else }} - name: MINIO_ACCESS_KEY valueFrom: secretKeyRef: name: {{ include "minio.secretName" . }} key: access-key {{- end }} {{- if .Values.useCredentialsFile }} - name: MINIO_SECRET_KEY_FILE value: "/opt/bitnami/minio/secrets/secret-key" {{- else }} - name: MINIO_SECRET_KEY valueFrom: secretKeyRef: name: {{ include "minio.secretName" . }} key: secret-key {{- 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_CERTSDIR value: {{ .Values.tls.mountPath | quote }} {{- end }} {{- if .Values.extraEnv }} {{- include "common.tplvalues.render" (dict "value" .Values.extraEnv "context" $) | nindent 12 }} {{- end }} {{- if .Values.global.webhook.enabled }} - name: MINIO_NOTIFY_WEBHOOK_ENABLE_1 valueFrom: configMapKeyRef: name: {{ include "common.names.fullname" . }}-webhook-config key: minio_notify_webhook_enable_1 - name: MINIO_NOTIFY_WEBHOOK_ENDPOINT_1 valueFrom: configMapKeyRef: name: {{ include "common.names.fullname" . }}-webhook-config key: minio_notify_webhook_endpoint_1 - name: MINIO_NOTIFY_WEBHOOK_QUEUE_DIR_1 valueFrom: configMapKeyRef: name: {{ include "common.names.fullname" . }}-webhook-config key: minio_notify_webhook_queue_dir_1 {{- 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 containerPort: {{ .Values.containerPort }} protocol: TCP {{- if .Values.global.webhook.enabled }} - name: minio-webhook containerPort: {{ .Values.global.webhook.port }} protocol: TCP {{- end }} {{- if .Values.livenessProbe.enabled }} livenessProbe: httpGet: path: /minio/health/live port: minio 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 }} {{- else if .Values.customLivenessProbe }} livenessProbe: {{- include "common.tplvalues.render" (dict "value" .Values.customLivenessProbe "context" $) | nindent 12 }} {{- end }} {{- if .Values.readinessProbe.enabled }} readinessProbe: tcpSocket: port: minio initialDelaySeconds: {{ .Values.readinessProbe.initialDelaySeconds }} periodSeconds: {{ .Values.readinessProbe.periodSeconds }} timeoutSeconds: {{ .Values.readinessProbe.timeoutSeconds }} successThreshold: {{ .Values.readinessProbe.successThreshold }} failureThreshold: {{ .Values.readinessProbe.failureThreshold }} {{- else if .Values.customReadinessProbe }} readinessProbe: {{- include "common.tplvalues.render" (dict "value" .Values.customReadinessProbe "context" $) | nindent 12 }} {{- end }} {{- if .Values.startupProbe.enabled }} startupProbe: tcpSocket: port: minio initialDelaySeconds: {{ .Values.startupProbe.initialDelaySeconds }} periodSeconds: {{ .Values.startupProbe.periodSeconds }} timeoutSeconds: {{ .Values.startupProbe.timeoutSeconds }} successThreshold: {{ .Values.startupProbe.successThreshold }} failureThreshold: {{ .Values.startupProbe.failureThreshold }} {{- else if .Values.customStartupProbe }} startupProbe: {{- include "common.tplvalues.render" (dict "value" .Values.customStartupProbe "context" $) | nindent 12 }} {{- end }} {{- if .Values.resources }} resources: {{- toYaml .Values.resources | nindent 12 }} {{- end }} volumeMounts: {{- if .Values.useCredentialsFile }} - name: minio-credentials mountPath: /opt/bitnami/minio/secrets/ {{- end }} {{- if .Values.tls.enabled }} - name: minio-certs mountPath: {{ default "/certs" .Values.tls.mountPath }} {{- end }} {{- 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 }} {{- if .Values.extraVolumeMounts }} {{- include "common.tplvalues.render" (dict "value" .Values.extraVolumeMounts "context" $) | nindent 12 }} {{- end }} {{- if .Values.global.webhook.enabled }} - name: webhook-config mountPath: "/.mc/config.json" readOnly: false subPath: config.json - name: webhook-download-config mountPath: "/.mc/share/downloads.json" readOnly: false subPath: downloads.json - name: webhook-uploads-config mountPath: "/.mc/share/uploads.json" readOnly: false subPath: uploads.json {{- end }} {{- if .Values.sidecars }} {{- include "common.tplvalues.render" (dict "value" .Values.sidecars "context" $) | nindent 8 }} {{- end }} volumes: {{- if .Values.global.webhook.enabled }} - name: webhook-config configMap: name: {{ include "common.names.fullname" . }}-webhook-config items: - key: config.json path: "config.json" - name: webhook-download-config configMap: name: {{ include "common.names.fullname" . }}-webhook-config items: - key: downloads.json path: "downloads.json" - name: webhook-uploads-config configMap: name: {{ include "common.names.fullname" . }}-webhook-config items: - key: uploads.json path: "uploads.json" {{- end }} {{- if .Values.useCredentialsFile }} - name: minio-credentials secret: secretName: {{ include "minio.secretName" . }} {{- end }} {{- if .Values.tls.enabled }} - name: minio-certs secret: secretName: {{ .Values.tls.secretName }} 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 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" $ | 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" . | 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 }}