mirror of
https://github.com/pgsty/minio.git
synced 2026-08-09 15:53:28 +03:00
e071bb77e4
helm/minio becomes helm/silo: chart name silo, version 6.0.0 -> 7.0.0, the MinIO wordmark icon replaced with the project's own, image.repository and mcImage.repository pointing at pgsty/silo, and the container command changed to silo. User-visible titles, comments and documentation links are rebranded. The MINIO_* environment variables and every existing values key are kept - the first Silo chart is a rename, not a values-schema migration. The hard problem is that a chart rename normally rewrites Kubernetes resource identity, and a StatefulSet's selector and volumeClaimTemplate are immutable. An existing release upgraded carelessly would either fail or orphan its PVCs. Two things address that: - Templates no longer derive the container name from .Chart.Name. It comes from a helper, so nameOverride can pin it, which means an existing release can be upgraded with nameOverride=minio, fullnameOverride=<existing-fullname> and serviceAccount.name=minio-sa and render byte-stable identity while switching chart and image. - helm-migration-guard and verify-helm-migration.sh make that a gate rather than a documented hope. The script lints the chart, renders it in distributed and standalone modes plus the optional templates, then renders the legacy chart from a pinned commit and the new chart with those three overrides and compares resource identity. The guard additionally rejects any rendered container still pulling pgsty/minio or invoking /usr/bin/minio. It runs through a pinned alpine/helm image when helm is not installed locally, so the gate does not depend on the developer's machine. Currently green over 7 compared resources. Rollback is asymmetric and the README says so: the old chart with the new image survives via the entrypoint argv shim, but the new chart with an old MinIO image does not, because `silo server` is not a command that binary knows. Only `helm rollback` is supported, never an image-only downgrade. Not addressed here: the default image tag is pgsty/silo:RELEASE.2026-08-04T00-00-00Z, which does not exist yet. The chart must not be published until the first Silo image is pushed. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
268 lines
10 KiB
YAML
268 lines
10 KiB
YAML
{{- if eq .Values.mode "distributed" }}
|
|
{{ $poolCount := .Values.pools | int }}
|
|
{{ $nodeCount := .Values.replicas | int }}
|
|
{{ $replicas := mul $poolCount $nodeCount }}
|
|
{{ $drivesPerNode := .Values.drivesPerNode | int }}
|
|
{{ $scheme := .Values.tls.enabled | ternary "https" "http" }}
|
|
{{ $mountPath := .Values.mountPath }}
|
|
{{ $bucketRoot := or ($.Values.bucketRoot) ($.Values.mountPath) }}
|
|
{{ $subPath := .Values.persistence.subPath }}
|
|
{{ $penabled := .Values.persistence.enabled }}
|
|
{{ $accessMode := .Values.persistence.accessMode }}
|
|
{{ $storageClass := .Values.persistence.storageClass }}
|
|
{{ $psize := .Values.persistence.size }}
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ template "silo.fullname" . }}-svc
|
|
labels:
|
|
app: {{ template "silo.name" . }}
|
|
chart: {{ template "silo.chart" . }}
|
|
release: {{ .Release.Name }}
|
|
heritage: {{ .Release.Service }}
|
|
spec:
|
|
publishNotReadyAddresses: true
|
|
clusterIP: None
|
|
ports:
|
|
- name: {{ $scheme }}
|
|
port: {{ .Values.service.port }}
|
|
protocol: TCP
|
|
targetPort: {{ .Values.minioAPIPort }}
|
|
selector:
|
|
app: {{ template "silo.name" . }}
|
|
release: {{ .Release.Name }}
|
|
---
|
|
apiVersion: {{ template "silo.statefulset.apiVersion" . }}
|
|
kind: StatefulSet
|
|
metadata:
|
|
name: {{ template "silo.fullname" . }}
|
|
labels:
|
|
app: {{ template "silo.name" . }}
|
|
chart: {{ template "silo.chart" . }}
|
|
release: {{ .Release.Name }}
|
|
heritage: {{ .Release.Service }}
|
|
{{- if .Values.additionalLabels }}
|
|
{{- toYaml .Values.additionalLabels | nindent 4 }}
|
|
{{- end }}
|
|
{{- if .Values.additionalAnnotations }}
|
|
annotations: {{- toYaml .Values.additionalAnnotations | nindent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
updateStrategy:
|
|
type: {{ .Values.statefulSetUpdate.updateStrategy }}
|
|
podManagementPolicy: "Parallel"
|
|
serviceName: {{ template "silo.fullname" . }}-svc
|
|
replicas: {{ $replicas }}
|
|
selector:
|
|
matchLabels:
|
|
app: {{ template "silo.name" . }}
|
|
release: {{ .Release.Name }}
|
|
template:
|
|
metadata:
|
|
name: {{ template "silo.fullname" . }}
|
|
labels:
|
|
app: {{ template "silo.name" . }}
|
|
release: {{ .Release.Name }}
|
|
{{- if .Values.podLabels }}
|
|
{{- toYaml .Values.podLabels | nindent 8 }}
|
|
{{- end }}
|
|
annotations:
|
|
{{- if not .Values.ignoreChartChecksums }}
|
|
checksum/secrets: {{ include (print $.Template.BasePath "/secrets.yaml") . | sha256sum }}
|
|
checksum/config: {{ include (print $.Template.BasePath "/configmap.yaml") . | sha256sum }}
|
|
{{- end }}
|
|
{{- if .Values.podAnnotations }}
|
|
{{- toYaml .Values.podAnnotations | nindent 8 }}
|
|
{{- end }}
|
|
spec:
|
|
{{- if .Values.priorityClassName }}
|
|
priorityClassName: "{{ .Values.priorityClassName }}"
|
|
{{- end }}
|
|
{{- if .Values.runtimeClassName }}
|
|
runtimeClassName: "{{ .Values.runtimeClassName }}"
|
|
{{- end }}
|
|
{{- if and .Values.securityContext.enabled .Values.persistence.enabled }}
|
|
securityContext:
|
|
{{- omit .Values.securityContext "enabled" | toYaml | nindent 8 }}
|
|
{{- end }}
|
|
{{- if .Values.serviceAccount.create }}
|
|
serviceAccountName: {{ .Values.serviceAccount.name }}
|
|
{{- end }}
|
|
containers:
|
|
- name: {{ include "silo.name" . }}
|
|
image: {{ .Values.image.repository }}:{{ .Values.image.tag }}
|
|
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
|
command: [
|
|
"/bin/sh",
|
|
"-ce",
|
|
"/usr/bin/docker-entrypoint.sh silo server {{- range $i := until $poolCount }}{{ $factor := mul $i $nodeCount }}{{ $endIndex := add $factor $nodeCount }}{{ $beginIndex := mul $i $nodeCount }} {{ $scheme }}://{{ template `silo.fullname` $ }}-{{ `{` }}{{ $beginIndex }}...{{ sub $endIndex 1 }}{{ `}`}}.{{ template `silo.fullname` $ }}-svc.{{ $.Release.Namespace }}.svc{{if (gt $drivesPerNode 1)}}{{ $bucketRoot }}-{{ `{` }}0...{{ sub $drivesPerNode 1 }}{{ `}` }}{{ else }}{{ $bucketRoot }}{{end }}{{- end }} -S {{ .Values.certsPath }} --address :{{ .Values.minioAPIPort }} --console-address :{{ .Values.minioConsolePort }} {{- template `silo.extraArgs` . }}"
|
|
]
|
|
volumeMounts:
|
|
{{- if $penabled }}
|
|
{{- if (gt $drivesPerNode 1) }}
|
|
{{- range $i := until $drivesPerNode }}
|
|
- name: export-{{ $i }}
|
|
mountPath: {{ $mountPath }}-{{ $i }}
|
|
{{- if and $penabled $subPath }}
|
|
subPath: {{ $subPath }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- else }}
|
|
- name: export
|
|
mountPath: {{ $mountPath }}
|
|
{{- if and $penabled $subPath }}
|
|
subPath: {{ $subPath }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- if .Values.extraSecret }}
|
|
- name: extra-secret
|
|
mountPath: "/tmp/silo-config-env"
|
|
{{- end }}
|
|
{{- include "silo.tlsKeysVolumeMount" . | indent 12 }}
|
|
{{- if .Values.extraVolumeMounts }}
|
|
{{- toYaml .Values.extraVolumeMounts | nindent 12 }}
|
|
{{- end }}
|
|
ports:
|
|
- name: {{ $scheme }}
|
|
containerPort: {{ .Values.minioAPIPort }}
|
|
- name: {{ $scheme }}-console
|
|
containerPort: {{ .Values.minioConsolePort }}
|
|
env:
|
|
- name: MINIO_ROOT_USER
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: {{ template "silo.secretName" . }}
|
|
key: rootUser
|
|
- name: MINIO_ROOT_PASSWORD
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: {{ template "silo.secretName" . }}
|
|
key: rootPassword
|
|
{{- if .Values.extraSecret }}
|
|
- name: MINIO_CONFIG_ENV_FILE
|
|
value: "/tmp/silo-config-env/config.env"
|
|
{{- end }}
|
|
{{- if .Values.metrics.serviceMonitor.public }}
|
|
- name: MINIO_PROMETHEUS_AUTH_TYPE
|
|
value: "public"
|
|
{{- end }}
|
|
{{- if .Values.oidc.enabled }}
|
|
- name: MINIO_IDENTITY_OPENID_CONFIG_URL
|
|
value: {{ .Values.oidc.configUrl }}
|
|
- name: MINIO_IDENTITY_OPENID_CLIENT_ID
|
|
{{- if and .Values.oidc.existingClientSecretName .Values.oidc.existingClientIdKey }}
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: {{ .Values.oidc.existingClientSecretName }}
|
|
key: {{ .Values.oidc.existingClientIdKey }}
|
|
{{- else }}
|
|
value: {{ .Values.oidc.clientId }}
|
|
{{- end }}
|
|
- name: MINIO_IDENTITY_OPENID_CLIENT_SECRET
|
|
{{- if and .Values.oidc.existingClientSecretName .Values.oidc.existingClientSecretKey }}
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: {{ .Values.oidc.existingClientSecretName }}
|
|
key: {{ .Values.oidc.existingClientSecretKey }}
|
|
{{- else }}
|
|
value: {{ .Values.oidc.clientSecret }}
|
|
{{- end }}
|
|
- name: MINIO_IDENTITY_OPENID_CLAIM_NAME
|
|
value: {{ .Values.oidc.claimName }}
|
|
- name: MINIO_IDENTITY_OPENID_CLAIM_PREFIX
|
|
value: {{ .Values.oidc.claimPrefix }}
|
|
- name: MINIO_IDENTITY_OPENID_SCOPES
|
|
value: {{ .Values.oidc.scopes }}
|
|
- name: MINIO_IDENTITY_OPENID_COMMENT
|
|
value: {{ .Values.oidc.comment }}
|
|
- name: MINIO_IDENTITY_OPENID_REDIRECT_URI
|
|
value: {{ .Values.oidc.redirectUri }}
|
|
- name: MINIO_IDENTITY_OPENID_DISPLAY_NAME
|
|
value: {{ .Values.oidc.displayName }}
|
|
{{- end }}
|
|
{{- range $key, $val := .Values.environment }}
|
|
- name: {{ $key }}
|
|
value: {{ tpl $val $ | quote }}
|
|
{{- end }}
|
|
resources: {{- toYaml .Values.resources | nindent 12 }}
|
|
{{- if and .Values.securityContext.enabled .Values.persistence.enabled }}
|
|
{{- with .Values.containerSecurityContext }}
|
|
securityContext: {{ toYaml . | nindent 12}}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- with .Values.extraContainers }}
|
|
{{- if eq (typeOf .) "string" }}
|
|
{{- tpl . $ | nindent 8 }}
|
|
{{- else }}
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- with .Values.nodeSelector }}
|
|
nodeSelector: {{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
{{- include "silo.imagePullSecrets" . | indent 6 }}
|
|
{{- with .Values.affinity }}
|
|
affinity: {{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
{{- with .Values.tolerations }}
|
|
tolerations: {{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
{{- if and (gt $replicas 1) (ge .Capabilities.KubeVersion.Major "1") (ge .Capabilities.KubeVersion.Minor "19") }}
|
|
{{- with .Values.topologySpreadConstraints }}
|
|
topologySpreadConstraints: {{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
{{- end }}
|
|
volumes:
|
|
- name: silo-user
|
|
secret:
|
|
secretName: {{ template "silo.secretName" . }}
|
|
{{- if .Values.extraSecret }}
|
|
- name: extra-secret
|
|
secret:
|
|
secretName: {{ .Values.extraSecret }}
|
|
{{- end }}
|
|
{{- include "silo.tlsKeysVolume" . | indent 8 }}
|
|
{{- if .Values.extraVolumes }}
|
|
{{- toYaml .Values.extraVolumes | nindent 8 }}
|
|
{{- end }}
|
|
{{- if .Values.persistence.enabled }}
|
|
volumeClaimTemplates:
|
|
{{- if gt $drivesPerNode 1 }}
|
|
{{- range $diskId := until $drivesPerNode}}
|
|
- apiVersion: v1
|
|
kind: PersistentVolumeClaim
|
|
metadata:
|
|
name: export-{{ $diskId }}
|
|
{{- if $.Values.persistence.annotations }}
|
|
annotations: {{- toYaml $.Values.persistence.annotations | nindent 10 }}
|
|
{{- end }}
|
|
spec:
|
|
accessModes: [ {{ $accessMode | quote }} ]
|
|
{{- if $storageClass }}
|
|
storageClassName: {{ $storageClass }}
|
|
{{- end }}
|
|
resources:
|
|
requests:
|
|
storage: {{ $psize }}
|
|
{{- end }}
|
|
{{- else }}
|
|
- apiVersion: v1
|
|
kind: PersistentVolumeClaim
|
|
metadata:
|
|
name: export
|
|
{{- if $.Values.persistence.annotations }}
|
|
annotations: {{- toYaml $.Values.persistence.annotations | nindent 10 }}
|
|
{{- end }}
|
|
spec:
|
|
accessModes: [ {{ $accessMode | quote }} ]
|
|
{{- if $storageClass }}
|
|
storageClassName: {{ $storageClass }}
|
|
{{- end }}
|
|
resources:
|
|
requests:
|
|
storage: {{ $psize }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|