Files
minio/helm/silo
Feng Ruohang 16b78eb4e5 build: point the release surfaces at RELEASE.2026-08-06
Bundle mcli RELEASE.2026-08-06T00-00-00Z in the container image (pin
and both architecture digests; interop with the new server was
verified end to end during release acceptance) and align the CI
fixture default in install-mcli.sh.

Point the Helm chart defaults at the first real silo image tag:
docker.io/pgsty/silo is a fresh repository, so the inherited
RELEASE.2026-08-04 default could never pull. Chart version moves to
7.0.1 with appVersion RELEASE.2026-08-06T00-00-00Z; the packaging
tripwire in verify-helm-migration.sh follows.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-06 19:10:56 +08:00
..

Silo Helm Chart

This chart installs Silo, an independently maintained, S3-compatible object storage server, on Kubernetes. It supports standalone and distributed modes. The chart and server are licensed under AGPL-3.0-or-later.

Prerequisites

  • Kubernetes 1.19 or later
  • Helm 3
  • A PersistentVolume provisioner unless persistence.enabled=false

Install

From this repository:

helm install silo ./helm/silo \
  --namespace silo --create-namespace \
  --set rootUser=silo-admin \
  --set rootPassword='replace-with-a-long-random-secret'

For a disposable standalone installation:

helm install silo ./helm/silo \
  --namespace silo --create-namespace \
  --set mode=standalone \
  --set replicas=1 \
  --set persistence.enabled=false \
  --set resources.requests.memory=512Mi \
  --set rootUser=silo-admin \
  --set rootPassword='replace-with-a-long-random-secret'

The default server and post-install image is docker.io/pgsty/silo. The image contains the silo server, mcli, and an mc compatibility symlink. It does not contain a minio server binary.

Compatibility contract

The product and delivery names are Silo, while established interfaces remain compatible:

  • MINIO_* environment variables and existing values keys are unchanged.
  • /minio/* API and metrics routes are unchanged.
  • minio_* Prometheus metrics and x-minio-* protocol headers are unchanged.
  • Existing storage, including .minio.sys, is used without conversion.
  • nameOverride, fullnameOverride, and serviceAccount.name can pin existing Kubernetes resource identities during an upgrade.

New installations default to Silo resource names and the silo-sa service account.

Upgrade an existing release

Do not upgrade an existing release without first pinning its current resource names. Export the complete values and render the candidate chart offline:

helm get values my-release -n my-namespace -a > values.before-silo.yaml
SILO_TAG='<published-silo-release-tag>'

helm template my-release ./helm/silo \
  -n my-namespace \
  -f values.before-silo.yaml \
  --set nameOverride=minio \
  --set fullnameOverride=my-existing-fullname \
  --set serviceAccount.name=minio-sa \
  --set image.repository=pgsty/silo \
  --set mcImage.repository=pgsty/silo \
  --set-string image.tag="${SILO_TAG}" \
  --set-string mcImage.tag="${SILO_TAG}" \
  > rendered.silo.yaml

Compare the old and new manifests. Stop if the candidate changes immutable selectors, StatefulSet or Service identity, PVC names, Secrets, or storage mounts. After review, upgrade the chart and image together:

SILO_TAG='<published-silo-release-tag>'
helm upgrade my-release ./helm/silo \
  -n my-namespace \
  -f values.before-silo.yaml \
  --set nameOverride=minio \
  --set fullnameOverride=my-existing-fullname \
  --set serviceAccount.name=minio-sa \
  --set image.repository=pgsty/silo \
  --set mcImage.repository=pgsty/silo \
  --set-string image.tag="${SILO_TAG}" \
  --set-string mcImage.tag="${SILO_TAG}"

Rollback is chart-level: use helm rollback, not an image-only downgrade. The new chart invokes silo server; an old image does not provide that executable. The new image accepts a legacy first argv token of minio only to support old chart commands during the forward migration.

Persistence and TLS

The default PersistentVolumeClaim mounts at /export. Use an existing claim with:

helm install silo ./helm/silo --set persistence.existingClaim=PVC_NAME

Create a TLS Secret containing private.key and public.crt, then set:

helm upgrade --install silo ./helm/silo \
  --set tls.enabled=true \
  --set tls.certSecret=silo-tls

Additional trusted CAs can be supplied through trustedCertsSecret.

Existing Secrets and post-install resources

Set existingSecret to a Secret containing rootUser and rootPassword. Buckets, users, policies, service accounts, and custom commands can be created with the existing buckets, users, policies, svcaccts, and customCommands values. The post-install job uses mcli through its mc compatibility command. New custom commands should target mysilo; the legacy myminio target remains registered so existing values continue to work.

Configuration

See values.yaml for the complete values surface and the Silo documentation for server operations.

To uninstall the chart:

helm uninstall silo -n silo

PersistentVolumeClaims may remain after uninstall; inspect them before any manual deletion.