mirror of
https://github.com/pgsty/minio.git
synced 2026-08-10 00:03:29 +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>
214 lines
8.6 KiB
YAML
214 lines
8.6 KiB
YAML
{{- if eq .Values.mode "standalone" }}
|
|
{{ $scheme := .Values.tls.enabled | ternary "https" "http" }}
|
|
{{ $bucketRoot := or ($.Values.bucketRoot) ($.Values.mountPath) }}
|
|
apiVersion: {{ template "silo.deployment.apiVersion" . }}
|
|
kind: Deployment
|
|
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:
|
|
strategy:
|
|
type: {{ .Values.deploymentUpdate.type }}
|
|
{{- if eq .Values.deploymentUpdate.type "RollingUpdate" }}
|
|
rollingUpdate:
|
|
maxSurge: {{ .Values.deploymentUpdate.maxSurge }}
|
|
maxUnavailable: {{ .Values.deploymentUpdate.maxUnavailable }}
|
|
{{- end }}
|
|
replicas: 1
|
|
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 | trimSuffix "\n" | 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 {{ $bucketRoot }} -S {{ .Values.certsPath }} --address :{{ .Values.minioAPIPort }} --console-address :{{ .Values.minioConsolePort }} {{- template "silo.extraArgs" . }}"
|
|
volumeMounts:
|
|
- name: silo-user
|
|
mountPath: "/tmp/credentials"
|
|
readOnly: true
|
|
- name: export
|
|
mountPath: {{ .Values.mountPath }}
|
|
{{- if and .Values.persistence.enabled .Values.persistence.subPath }}
|
|
subPath: "{{ .Values.persistence.subPath }}"
|
|
{{- 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 }}
|
|
{{- if .Values.etcd.endpoints }}
|
|
- name: MINIO_ETCD_ENDPOINTS
|
|
value: {{ join "," .Values.etcd.endpoints | quote }}
|
|
{{- if .Values.etcd.clientCert }}
|
|
- name: MINIO_ETCD_CLIENT_CERT
|
|
value: "/tmp/credentials/etcd_client_cert.pem"
|
|
{{- end }}
|
|
{{- if .Values.etcd.clientCertKey }}
|
|
- name: MINIO_ETCD_CLIENT_CERT_KEY
|
|
value: "/tmp/credentials/etcd_client_cert_key.pem"
|
|
{{- end }}
|
|
{{- if .Values.etcd.pathPrefix }}
|
|
- name: MINIO_ETCD_PATH_PREFIX
|
|
value: {{ .Values.etcd.pathPrefix }}
|
|
{{- end }}
|
|
{{- if .Values.etcd.corednsPathPrefix }}
|
|
- name: MINIO_ETCD_COREDNS_PATH
|
|
value: {{ .Values.etcd.corednsPathPrefix }}
|
|
{{- end }}
|
|
{{- 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 }}
|
|
volumes:
|
|
- name: export
|
|
{{- if .Values.persistence.enabled }}
|
|
persistentVolumeClaim:
|
|
claimName: {{ .Values.persistence.existingClaim | default (include "silo.fullname" .) }}
|
|
{{- else }}
|
|
emptyDir: {}
|
|
{{- end }}
|
|
{{- if .Values.extraSecret }}
|
|
- name: extra-secret
|
|
secret:
|
|
secretName: {{ .Values.extraSecret }}
|
|
{{- end }}
|
|
- name: silo-user
|
|
secret:
|
|
secretName: {{ template "silo.secretName" . }}
|
|
{{- include "silo.tlsKeysVolume" . | indent 8 }}
|
|
{{- if .Values.extraVolumes }}
|
|
{{ toYaml .Values.extraVolumes | nindent 8 }}
|
|
{{- end }}
|
|
{{- end }}
|