diff --git a/.github/workflows/helm.yml b/.github/workflows/helm.yml
new file mode 100644
index 000000000..5094f885f
--- /dev/null
+++ b/.github/workflows/helm.yml
@@ -0,0 +1,110 @@
+name: Helm Chart
+
+on:
+ workflow_dispatch:
+ pull_request:
+ paths:
+ - ".github/workflows/helm.yml"
+ - "helm/**"
+ - "helm-releases/minio-*.tgz"
+ - "helm-reindex.sh"
+ - "index.yaml"
+ push:
+ branches:
+ - master
+ paths:
+ - ".github/workflows/helm.yml"
+ - "helm/**"
+ - "helm-releases/minio-*.tgz"
+ - "helm-reindex.sh"
+ - "index.yaml"
+
+permissions:
+ contents: read
+
+jobs:
+ install-smoke:
+ runs-on: ubuntu-latest
+ timeout-minutes: 20
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v4
+
+ - name: Set up Helm
+ uses: azure/setup-helm@v4
+ with:
+ version: v3.19.0
+
+ - name: Verify packaged chart
+ run: |
+ set -euo pipefail
+ chart_version="$(awk '$1 == "version:" { print $2; exit }' helm/minio/Chart.yaml)"
+ chart_package="helm-releases/minio-${chart_version}.tgz"
+ test -f "${chart_package}"
+ echo "CHART_PACKAGE=${chart_package}" >> "${GITHUB_ENV}"
+ helm lint --strict "${chart_package}"
+
+ unpacked="$(mktemp -d)"
+ tar -xzf "${chart_package}" -C "${unpacked}"
+ diff -ru --exclude Chart.yaml helm/minio "${unpacked}/minio"
+
+ package_digest="$(sha256sum "${chart_package}" | awk '{ print $1 }')"
+ grep -F "digest: ${package_digest}" index.yaml
+ grep -F "https://raw.githubusercontent.com/pgsty/minio/master/${chart_package}" index.yaml
+
+ - name: Render and verify immutable images
+ run: |
+ set -euo pipefail
+ expected_image='pgsty/minio@sha256:dacff8306a6e0a734518533992dbdcca26bc1ca47f77cf47cb9945725f92b29b'
+ rendered="$(mktemp)"
+ helm template silo "${CHART_PACKAGE}" \
+ --namespace silo \
+ --set mode=standalone \
+ --set persistence.enabled=false > "${rendered}"
+ grep -F "image: \"${expected_image}\"" "${rendered}"
+ if grep -Eq 'image:.*(quay\.io/minio|minio/minio|minio/mc)' "${rendered}"; then
+ echo "Rendered chart still references an upstream MinIO image."
+ exit 1
+ fi
+
+ - name: Create Kind cluster
+ uses: helm/kind-action@v1
+ with:
+ version: v0.31.0
+ kubectl_version: v1.35.0
+ node_image: kindest/node:v1.35.0@sha256:452d707d4862f52530247495d180205e029056831160e22870e37e3f6c1ac31f
+ cluster_name: silo-chart
+ wait: 120s
+
+ - name: Install chart
+ run: |
+ set -euo pipefail
+ helm install silo "${CHART_PACKAGE}" \
+ --namespace silo \
+ --create-namespace \
+ --wait \
+ --wait-for-jobs \
+ --timeout 10m \
+ --set mode=standalone \
+ --set replicas=1 \
+ --set persistence.enabled=false \
+ --set resources.requests.memory=512Mi \
+ --set rootUser=siloadmin \
+ --set rootPassword=silo-smoke-password \
+ --set 'buckets[0].name=bootstrap' \
+ --set 'buckets[0].policy=none' \
+ --set 'buckets[0].purge=false'
+ kubectl rollout status deployment/silo-minio --namespace silo --timeout=2m
+
+ - name: Run S3 smoke test
+ run: |
+ set -euo pipefail
+ helm test silo --namespace silo --logs --timeout 5m
+
+ - name: Diagnostics
+ if: failure()
+ run: |
+ helm status silo --namespace silo || true
+ kubectl get all --namespace silo -o wide || true
+ kubectl describe pods --namespace silo || true
+ kubectl logs --namespace silo --all-containers=true --prefix=true --selector release=silo || true
diff --git a/README.md b/README.md
index d8edb6d00..2e0941b80 100644
--- a/README.md
+++ b/README.md
@@ -29,3 +29,15 @@ Console: [`georgmangold/console`](https://github.com/georgmangold/console/), a c
Ansible Deployment: [https://pigsty.io/docs/minio](https://pigsty.io/docs/minio)
APT/YUM repo for `minio` and `mcli` binary: [https://pigsty.io/docs/infra](https://pigsty.io/docs/repo/infra/list/#object-storage)
+
+## Kubernetes delivery and scope
+
+This repository maintains the direct-deployment Helm chart in [`helm/minio`](helm/minio/README.md) for standalone and distributed Silo server deployments. Chart defaults use the version- and digest-pinned multi-architecture [`pgsty/minio`](https://hub.docker.com/r/pgsty/minio) image, and every chart change is checked by a real Kind install plus an S3 write/read/delete smoke test.
+
+```bash
+helm repo add silo https://raw.githubusercontent.com/pgsty/minio/master
+helm repo update silo
+helm install my-release silo/minio --namespace minio --create-namespace
+```
+
+The MinIO Operator, Tenant CRDs, and operator lifecycle are **not maintained by this repository**. There is no Pigsty/Silo operator fork here. Users who require an operator must select and validate a separate operator implementation; issues and pull requests for operator code should be filed with that implementation.
diff --git a/helm-reindex.sh b/helm-reindex.sh
index 424533665..8b0d0018f 100755
--- a/helm-reindex.sh
+++ b/helm-reindex.sh
@@ -1,5 +1,6 @@
-#!/bin/bash
+#!/usr/bin/env bash
+set -euo pipefail
helm package helm/minio -d helm-releases/
-helm repo index --merge index.yaml --url https://charts.min.io .
+helm repo index --merge index.yaml --url https://raw.githubusercontent.com/pgsty/minio/master .
diff --git a/helm-releases/minio-5.5.0.tgz b/helm-releases/minio-5.5.0.tgz
new file mode 100644
index 000000000..e826d89f7
Binary files /dev/null and b/helm-releases/minio-5.5.0.tgz differ
diff --git a/helm/minio/Chart.yaml b/helm/minio/Chart.yaml
index 6ae6f1161..a50bb04f4 100644
--- a/helm/minio/Chart.yaml
+++ b/helm/minio/Chart.yaml
@@ -1,18 +1,19 @@
apiVersion: v1
-description: High Performance Object Storage
+description: Silo, a community-maintained MinIO-compatible object store
name: minio
-version: 5.4.0
-appVersion: RELEASE.2024-12-18T13-15-44Z
+version: 5.5.0
+appVersion: RELEASE.2026-06-18T00-00-00Z
keywords:
- minio
+ - silo
- storage
- object-storage
- s3
- cluster
-home: https://min.io
-icon: https://min.io/resources/img/logo/MINIO_wordmark.png
+home: https://silo.pigsty.io
+icon: https://raw.githubusercontent.com/pgsty/minio/master/.github/logo.svg
sources:
-- https://github.com/minio/minio
+- https://github.com/pgsty/minio
maintainers:
-- name: MinIO, Inc
- email: dev@minio.io
+- name: Pigsty
+ url: https://pigsty.io
diff --git a/helm/minio/README.md b/helm/minio/README.md
index e30bdc714..2d3d0949e 100644
--- a/helm/minio/README.md
+++ b/helm/minio/README.md
@@ -1,27 +1,42 @@
-# MinIO Community Helm Chart
+# Silo Community Helm Chart
-[](https://slack.min.io) [](https://github.com/minio/minio/blob/master/LICENSE)
+[](https://github.com/pgsty/minio/blob/master/LICENSE)
+[](https://github.com/pgsty/minio)
+[](https://hub.docker.com/r/pgsty/minio)
-MinIO is a High Performance Object Storage released under GNU Affero General Public License v3.0. It is API compatible with Amazon S3 cloud storage service. Use MinIO to build high performance infrastructure for machine learning, analytics and application data workloads.
+Silo is a community-maintained, S3-compatible object store derived from MinIO. This chart deploys the Silo server directly on Kubernetes in standalone or distributed mode.
-| IMPORTANT |
-| -------------------------- |
-| This Helm chart is community built, maintained, and supported. MinIO does not guarantee support for any given bug, feature request, or update referencing this chart.
MinIO publishes a separate [MinIO Kubernetes Operator and Tenant Helm Chart](https://github.com/minio/operator/tree/master/helm) that is officially maintained and supported. MinIO strongly recommends using the MinIO Kubernetes Operator for production deployments. See [Deploy Operator With Helm](https://silo.pigsty.io/operations/deployments/k8s-deploy-operator-helm-on-kubernetes.html?ref=github) for additional documentation. |
+> [!IMPORTANT]
+> This chart is maintained in [`pgsty/minio`](https://github.com/pgsty/minio). Chart changes are linted, installed into Kind, and verified with an S3 write/read/delete test.
+>
+> The MinIO Operator, Tenant CRDs, and operator lifecycle are **not maintained here**. This repository does not provide or plan to provide a Pigsty/Silo operator fork.
+
+## Pinned images
+
+The defaults are immutable multi-architecture references for `linux/amd64` and `linux/arm64`:
+
+| Workload | Repository | Release | Manifest digest |
+|:---------|:-----------|:--------|:----------------|
+| Server | `pgsty/minio` | `RELEASE.2026-06-18T00-00-00Z` | `sha256:dacff8306a6e0a734518533992dbdcca26bc1ca47f77cf47cb9945725f92b29b` |
+| Post-install jobs and tests | `pgsty/minio` | `RELEASE.2026-06-18T00-00-00Z` | `sha256:dacff8306a6e0a734518533992dbdcca26bc1ca47f77cf47cb9945725f92b29b` |
+
+The Silo image bundles `mcli` and an `mc` compatibility alias. When an image `digest` is set it takes precedence over `tag`. To select another release, update both fields; alternatively set `digest: ""` to use the tag alone.
## Introduction
-This chart bootstraps MinIO Cluster on [Kubernetes](http://kubernetes.io) using the [Helm](https://helm.sh) package manager.
+This chart bootstraps a Silo cluster on [Kubernetes](https://kubernetes.io) using the [Helm](https://helm.sh) package manager.
## Prerequisites
-- Helm cli with Kubernetes cluster configured.
+- Helm 3 with a Kubernetes cluster configured.
- PV provisioner support in the underlying infrastructure. (We recommend using )
-- Use Kubernetes version v1.19 and later for best experience.
+- Kubernetes v1.25 or later is recommended. The current CI test version is recorded in [the Helm workflow](../../.github/workflows/helm.yml).
-## Configure MinIO Helm repo
+## Configure the Silo Helm repository
```bash
-helm repo add minio https://charts.min.io/
+helm repo add silo https://raw.githubusercontent.com/pgsty/minio/master
+helm repo update silo
```
### Installing the Chart
@@ -29,7 +44,10 @@ helm repo add minio https://charts.min.io/
Install this chart using:
```bash
-helm install --namespace minio --set rootUser=rootuser,rootPassword=rootpass123 --generate-name minio/minio
+helm install my-release silo/minio \
+ --namespace minio \
+ --create-namespace \
+ --set rootUser=rootuser,rootPassword=rootpass123
```
The command deploys MinIO on the Kubernetes cluster in the default configuration. The [configuration](#configuration) section lists the parameters that can be configured during installation.
@@ -39,7 +57,17 @@ The command deploys MinIO on the Kubernetes cluster in the default configuration
Minimal toy setup for testing purposes can be deployed using:
```bash
-helm install --set resources.requests.memory=512Mi --set replicas=1 --set persistence.enabled=false --set mode=standalone --set rootUser=rootuser,rootPassword=rootpass123 --generate-name minio/minio
+helm install my-release silo/minio \
+ --namespace minio \
+ --create-namespace \
+ --set mode=standalone \
+ --set replicas=1 \
+ --set persistence.enabled=false \
+ --set resources.requests.memory=512Mi \
+ --set rootUser=rootuser \
+ --set rootPassword=rootpass123
+
+helm test my-release --namespace minio --logs
```
### Upgrading the Chart
@@ -50,10 +78,10 @@ You can use Helm to update MinIO version in a live release. Assuming your releas
helm get values my-release > old_values.yaml
```
-Then change the field `image.tag` in `old_values.yaml` file with MinIO image tag you want to use. Now update the chart using
+Update `image.tag` and `image.digest` together for the server release. If post-install jobs are enabled, update `mcImage.tag` and `mcImage.digest` to the same tested artifact. Then upgrade the release:
```bash
-helm upgrade -f old_values.yaml my-release minio/minio
+helm upgrade -f old_values.yaml my-release silo/minio
```
Default upgrade strategies are specified in the `values.yaml` file. Update these fields if you'd like to use a different strategy.
@@ -65,7 +93,7 @@ Refer the [Values file](./values.yaml) for all the possible config fields.
You can specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
```bash
-helm install --name my-release --set persistence.size=1Ti minio/minio
+helm install my-release --set persistence.size=1Ti silo/minio
```
The above command deploys MinIO server with a 1Ti backing persistent volume.
@@ -73,7 +101,7 @@ The above command deploys MinIO server with a 1Ti backing persistent volume.
Alternately, you can provide a YAML file that specifies parameter values while installing the chart. For example,
```bash
-helm install --name my-release -f values.yaml minio/minio
+helm install my-release -f values.yaml silo/minio
```
### Persistence
@@ -81,7 +109,7 @@ helm install --name my-release -f values.yaml minio/minio
This chart provisions a PersistentVolumeClaim and mounts corresponding persistent volume to default location `/export`. You'll need physical storage available in the Kubernetes cluster for this to work. If you'd rather use `emptyDir`, disable PersistentVolumeClaim by:
```bash
-helm install --set persistence.enabled=false minio/minio
+helm install my-release --set persistence.enabled=false silo/minio
```
> *"An emptyDir volume is first created when a Pod is assigned to a Node, and exists as long as that Pod is running on that node. When a Pod is removed from a node for any reason, the data in the emptyDir is deleted forever."*
@@ -95,7 +123,7 @@ If a Persistent Volume Claim already exists, specify it during installation.
3. Install the chart
```bash
-helm install --set persistence.existingClaim=PVC_NAME minio/minio
+helm install my-release --set persistence.existingClaim=PVC_NAME silo/minio
```
### NetworkPolicy
@@ -134,7 +162,7 @@ kubectl create secret generic my-minio-secret --from-literal=rootUser=foobarbaz
Then install the chart, specifying that you want to use an existing secret:
```bash
-helm install --set existingSecret=my-minio-secret minio/minio
+helm install my-release --set existingSecret=my-minio-secret silo/minio
```
The following fields are expected in the secret:
@@ -157,7 +185,7 @@ kubectl create secret generic tls-ssl-minio --from-file=path/to/private.key --fr
Then install the chart, specifying that you want to use the TLS secret:
```bash
-helm install --set tls.enabled=true,tls.certSecret=tls-ssl-minio minio/minio
+helm install my-release --set tls.enabled=true,tls.certSecret=tls-ssl-minio silo/minio
```
### Installing certificates from third party CAs
@@ -191,7 +219,7 @@ or
Install the chart, specifying the buckets you want to create after install:
```bash
-helm install --set buckets[0].name=bucket1,buckets[0].policy=none,buckets[0].purge=false minio/minio
+helm install my-release --set buckets[0].name=bucket1,buckets[0].policy=none,buckets[0].purge=false silo/minio
```
Description of the configuration parameters used above -
@@ -205,7 +233,7 @@ Description of the configuration parameters used above -
Install the chart, specifying the policies you want to create after install:
```bash
-helm install --set policies[0].name=mypolicy,policies[0].statements[0].resources[0]='arn:aws:s3:::bucket1',policies[0].statements[0].actions[0]='s3:ListBucket',policies[0].statements[0].actions[1]='s3:GetObject' minio/minio
+helm install my-release --set policies[0].name=mypolicy,policies[0].statements[0].resources[0]='arn:aws:s3:::bucket1',policies[0].statements[0].actions[0]='s3:ListBucket',policies[0].statements[0].actions[1]='s3:GetObject' silo/minio
```
Description of the configuration parameters used above -
@@ -220,7 +248,7 @@ Description of the configuration parameters used above -
Install the chart, specifying the users you want to create after install:
```bash
-helm install --set users[0].accessKey=accessKey,users[0].secretKey=secretKey,users[0].policy=none,users[1].accessKey=accessKey2,users[1].secretRef=existingSecret,users[1].secretKey=password,users[1].policy=none minio/minio
+helm install my-release --set users[0].accessKey=accessKey,users[0].secretKey=secretKey,users[0].policy=none,users[1].accessKey=accessKey2,users[1].secretRef=existingSecret,users[1].secretKey=password,users[1].policy=none silo/minio
```
Description of the configuration parameters used above -
@@ -236,7 +264,7 @@ Description of the configuration parameters used above -
Install the chart, specifying the service accounts you want to create after install:
```bash
-helm install --set svcaccts[0].accessKey=accessKey,svcaccts[0].secretKey=secretKey,svcaccts[0].user=parentUser,svcaccts[1].accessKey=accessKey2,svcaccts[1].secretRef=existingSecret,svcaccts[1].secretKey=password,svcaccts[1].user=parentUser2 minio/minio
+helm install my-release --set svcaccts[0].accessKey=accessKey,svcaccts[0].secretKey=secretKey,svcaccts[0].user=parentUser,svcaccts[1].accessKey=accessKey2,svcaccts[1].secretRef=existingSecret,svcaccts[1].secretKey=password,svcaccts[1].user=parentUser2 silo/minio
```
Description of the configuration parameters used above -
diff --git a/helm/minio/templates/_helpers.tpl b/helm/minio/templates/_helpers.tpl
index 64f34aeb7..15b34e491 100644
--- a/helm/minio/templates/_helpers.tpl
+++ b/helm/minio/templates/_helpers.tpl
@@ -31,6 +31,28 @@ Create chart name and version as used by the chart label.
{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}}
{{- end -}}
+{{/*
+Build the immutable server image reference. Digest takes precedence over tag.
+*/}}
+{{- define "minio.image" -}}
+ {{- if .Values.image.digest -}}
+ {{- printf "%s@%s" .Values.image.repository .Values.image.digest -}}
+ {{- else -}}
+ {{- printf "%s:%s" .Values.image.repository .Values.image.tag -}}
+ {{- end -}}
+{{- end -}}
+
+{{/*
+Build the immutable client/job image reference. Digest takes precedence over tag.
+*/}}
+{{- define "minio.mcImage" -}}
+ {{- if .Values.mcImage.digest -}}
+ {{- printf "%s@%s" .Values.mcImage.repository .Values.mcImage.digest -}}
+ {{- else -}}
+ {{- printf "%s:%s" .Values.mcImage.repository .Values.mcImage.tag -}}
+ {{- end -}}
+{{- end -}}
+
{{/*
Return the appropriate apiVersion for networkpolicy.
*/}}
diff --git a/helm/minio/templates/deployment.yaml b/helm/minio/templates/deployment.yaml
index 4c57010fd..fcc115c76 100644
--- a/helm/minio/templates/deployment.yaml
+++ b/helm/minio/templates/deployment.yaml
@@ -62,7 +62,7 @@ spec:
{{- end }}
containers:
- name: {{ .Chart.Name }}
- image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
+ image: {{ include "minio.image" . | quote }}
imagePullPolicy: {{ .Values.image.pullPolicy }}
command:
- "/bin/sh"
diff --git a/helm/minio/templates/post-job.yaml b/helm/minio/templates/post-job.yaml
index 955d6558c..ffb3517af 100644
--- a/helm/minio/templates/post-job.yaml
+++ b/helm/minio/templates/post-job.yaml
@@ -88,7 +88,7 @@ spec:
{{- if .Values.policies }}
initContainers:
- name: minio-make-policy
- image: "{{ .Values.mcImage.repository }}:{{ .Values.mcImage.tag }}"
+ image: {{ include "minio.mcImage" . | quote }}
{{- if .Values.makePolicyJob.securityContext.enabled }}
{{- with .Values.makePolicyJob.containerSecurityContext }}
securityContext: {{ toYaml . | nindent 12 }}
@@ -122,7 +122,7 @@ spec:
containers:
{{- if .Values.buckets }}
- name: minio-make-bucket
- image: "{{ .Values.mcImage.repository }}:{{ .Values.mcImage.tag }}"
+ image: {{ include "minio.mcImage" . | quote }}
{{- if .Values.makeBucketJob.securityContext.enabled }}
{{- with .Values.makeBucketJob.containerSecurityContext }}
securityContext: {{ toYaml . | nindent 12 }}
@@ -155,7 +155,7 @@ spec:
{{- end }}
{{- if .Values.users }}
- name: minio-make-user
- image: "{{ .Values.mcImage.repository }}:{{ .Values.mcImage.tag }}"
+ image: {{ include "minio.mcImage" . | quote }}
{{- if .Values.makeUserJob.securityContext.enabled }}
{{- with .Values.makeUserJob.containerSecurityContext }}
securityContext: {{ toYaml . | nindent 12 }}
@@ -188,7 +188,7 @@ spec:
{{- end }}
{{- if .Values.customCommands }}
- name: minio-custom-command
- image: "{{ .Values.mcImage.repository }}:{{ .Values.mcImage.tag }}"
+ image: {{ include "minio.mcImage" . | quote }}
{{- if .Values.customCommandJob.securityContext.enabled }}
{{- with .Values.customCommandJob.containerSecurityContext }}
securityContext: {{ toYaml . | nindent 12 }}
@@ -224,7 +224,7 @@ spec:
{{- end }}
{{- if .Values.svcaccts }}
- name: minio-make-svcacct
- image: "{{ .Values.mcImage.repository }}:{{ .Values.mcImage.tag }}"
+ image: {{ include "minio.mcImage" . | quote }}
{{- if .Values.makeServiceAccountJob.securityContext.enabled }}
{{- with .Values.makeServiceAccountJob.containerSecurityContext }}
securityContext: {{ toYaml . | nindent 12 }}
diff --git a/helm/minio/templates/statefulset.yaml b/helm/minio/templates/statefulset.yaml
index d671eaaf4..b3e42cb8a 100644
--- a/helm/minio/templates/statefulset.yaml
+++ b/helm/minio/templates/statefulset.yaml
@@ -90,7 +90,7 @@ spec:
{{- end }}
containers:
- name: {{ .Chart.Name }}
- image: {{ .Values.image.repository }}:{{ .Values.image.tag }}
+ image: {{ include "minio.image" . | quote }}
imagePullPolicy: {{ .Values.image.pullPolicy }}
command: [
"/bin/sh",
diff --git a/helm/minio/templates/tests/test-connection.yaml b/helm/minio/templates/tests/test-connection.yaml
new file mode 100644
index 000000000..e4e933cb9
--- /dev/null
+++ b/helm/minio/templates/tests/test-connection.yaml
@@ -0,0 +1,52 @@
+{{- if .Values.tests.enabled }}
+{{- $scheme := .Values.tls.enabled | ternary "https" "http" }}
+apiVersion: v1
+kind: Pod
+metadata:
+ name: {{ include "minio.fullname" . }}-test-connection
+ labels:
+ app: {{ include "minio.name" . }}-test
+ release: {{ .Release.Name }}
+ {{ include "minio.name" . }}-client: "true"
+ annotations:
+ "helm.sh/hook": test
+ "helm.sh/hook-delete-policy": before-hook-creation
+spec:
+ restartPolicy: Never
+ {{- include "minio.imagePullSecrets" . | nindent 2 }}
+ containers:
+ - name: s3-smoke
+ image: {{ include "minio.mcImage" . | quote }}
+ imagePullPolicy: {{ .Values.mcImage.pullPolicy }}
+ command: ["/bin/sh", "-ec"]
+ args:
+ - |
+ alias_name=silo-helm-test
+ bucket_name="silo-helm-test-$(date +%s)"
+ object_name=probe.txt
+ payload="silo helm smoke test"
+ mc alias set "${alias_name}" "{{ $scheme }}://{{ include "minio.fullname" . }}:{{ .Values.service.port }}" "${MINIO_ROOT_USER}" "${MINIO_ROOT_PASSWORD}" {{ if .Values.tls.enabled }}--insecure{{ end }}
+ cleanup() {
+ mc rm --recursive --force "${alias_name}/${bucket_name}" >/dev/null 2>&1 || true
+ mc rb "${alias_name}/${bucket_name}" >/dev/null 2>&1 || true
+ }
+ trap cleanup EXIT
+ mc mb --ignore-existing "${alias_name}/${bucket_name}"
+ printf '%s' "${payload}" | mc pipe "${alias_name}/${bucket_name}/${object_name}"
+ actual="$(mc cat "${alias_name}/${bucket_name}/${object_name}")"
+ test "${actual}" = "${payload}"
+ mc rm "${alias_name}/${bucket_name}/${object_name}"
+ mc rb "${alias_name}/${bucket_name}"
+ trap - EXIT
+ env:
+ - name: MINIO_ROOT_USER
+ valueFrom:
+ secretKeyRef:
+ name: {{ include "minio.secretName" . }}
+ key: rootUser
+ - name: MINIO_ROOT_PASSWORD
+ valueFrom:
+ secretKeyRef:
+ name: {{ include "minio.secretName" . }}
+ key: rootPassword
+{{- end }}
diff --git a/helm/minio/values.yaml b/helm/minio/values.yaml
index de293a9ea..65735bbac 100644
--- a/helm/minio/values.yaml
+++ b/helm/minio/values.yaml
@@ -10,22 +10,26 @@ fullnameOverride: ""
##
clusterDomain: cluster.local
-## Set default image, imageTag, and imagePullPolicy. mode is used to indicate the
+## Silo server image. The default is pinned by both release tag and multi-arch
+## manifest digest. When digest is non-empty it takes precedence over tag.
##
image:
- repository: quay.io/minio/minio
- tag: RELEASE.2024-12-18T13-15-44Z
+ repository: pgsty/minio
+ tag: RELEASE.2026-06-18T00-00-00Z
+ digest: sha256:dacff8306a6e0a734518533992dbdcca26bc1ca47f77cf47cb9945725f92b29b
pullPolicy: IfNotPresent
imagePullSecrets: []
# - name: "image-pull-secret"
-## Set default image, imageTag, and imagePullPolicy for the `mc` (the minio
-## client used to create a default bucket).
+## Image used by post-install jobs and Helm tests. pgsty/minio bundles the
+## maintained mcli binary and an mc compatibility alias, so these jobs use the
+## exact same pinned, multi-arch artifact as the server.
##
mcImage:
- repository: quay.io/minio/mc
- tag: RELEASE.2024-11-21T17-21-54Z
+ repository: pgsty/minio
+ tag: RELEASE.2026-06-18T00-00-00Z
+ digest: sha256:dacff8306a6e0a734518533992dbdcca26bc1ca47f77cf47cb9945725f92b29b
pullPolicy: IfNotPresent
## minio mode, i.e. standalone or distributed
@@ -127,13 +131,13 @@ pools: 1
## TLS Settings for MinIO
tls:
enabled: false
- ## Create a secret with private.key and public.crt files and pass that here. Ref: https://github.com/minio/minio/tree/master/docs/tls/kubernetes#2-create-kubernetes-secret
+ ## Create a secret with private.key and public.crt files and pass that here. Ref: https://github.com/pgsty/minio/tree/master/docs/tls/kubernetes#2-create-kubernetes-secret
certSecret: ""
publicCrt: public.crt
privateKey: private.key
## Trusted Certificates Settings for MinIO. Ref: https://silo.pigsty.io/operations/network-encryption.html#third-party-certificate-authorities
-## Bundle multiple trusted certificates into one secret and pass that here. Ref: https://github.com/minio/minio/tree/master/docs/tls/kubernetes#2-create-kubernetes-secret
+## Bundle multiple trusted certificates into one secret and pass that here. Ref: https://github.com/pgsty/minio/tree/master/docs/tls/kubernetes#2-create-kubernetes-secret
## When using self-signed certificates, remember to include MinIO's own certificate in the bundle with key public.crt.
## If certSecret is left empty and tls is enabled, this chart installs the public certificate from .Values.tls.certSecret.
trustedCertsSecret: ""
@@ -617,7 +621,11 @@ metrics:
# Scrape timeout, for example `scrapeTimeout: 10s`
scrapeTimeout: ~
-## ETCD settings: https://github.com/minio/minio/blob/master/docs/sts/etcd.md
+## Enable the `helm test` S3 write/read/delete smoke test.
+tests:
+ enabled: true
+
+## ETCD settings: https://github.com/pgsty/minio/blob/master/docs/sts/etcd.md
## Define endpoints to enable this section.
etcd:
endpoints: []
diff --git a/index.yaml b/index.yaml
index 7d62f602f..a9c5823ae 100644
--- a/index.yaml
+++ b/index.yaml
@@ -1,9 +1,32 @@
apiVersion: v1
entries:
minio:
+ - apiVersion: v1
+ appVersion: RELEASE.2026-06-18T00-00-00Z
+ created: "2026-07-28T11:24:48.108851+08:00"
+ description: Silo, a community-maintained MinIO-compatible object store
+ digest: fb7bc2bc3d625836468f1ddf398de1595d9a91f94e17ca0f434b56f4ef0f123d
+ home: https://silo.pigsty.io
+ icon: https://raw.githubusercontent.com/pgsty/minio/master/.github/logo.svg
+ keywords:
+ - minio
+ - silo
+ - storage
+ - object-storage
+ - s3
+ - cluster
+ maintainers:
+ - name: Pigsty
+ url: https://pigsty.io
+ name: minio
+ sources:
+ - https://github.com/pgsty/minio
+ urls:
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-5.5.0.tgz
+ version: 5.5.0
- apiVersion: v1
appVersion: RELEASE.2024-12-18T13-15-44Z
- created: "2025-01-02T21:34:25.234658257-08:00"
+ created: "2026-07-28T11:24:48.107892+08:00"
description: High Performance Object Storage
digest: 25fa2740480d1ebc9e64340854a6c42d3a7bc39c2a77378da91b21f144faa9af
home: https://min.io
@@ -21,11 +44,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-5.4.0.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-5.4.0.tgz
version: 5.4.0
- apiVersion: v1
appVersion: RELEASE.2024-04-18T19-09-19Z
- created: "2025-01-02T21:34:25.231025201-08:00"
+ created: "2026-07-28T11:24:48.106483+08:00"
description: High Performance Object Storage
digest: 5f927286767c285b925a3395e75b4f372367f83d2124395185e21dc7fd4ca177
home: https://min.io
@@ -43,11 +66,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-5.3.0.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-5.3.0.tgz
version: 5.3.0
- apiVersion: v1
appVersion: RELEASE.2024-04-18T19-09-19Z
- created: "2025-01-02T21:34:25.227480037-08:00"
+ created: "2026-07-28T11:24:48.105439+08:00"
description: High Performance Object Storage
digest: 8ef4212d7d51be6c8192b3e91138a9ca918ca56142c42500028cfd3b80e0b2dd
home: https://min.io
@@ -65,11 +88,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-5.2.0.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-5.2.0.tgz
version: 5.2.0
- apiVersion: v1
appVersion: RELEASE.2024-03-03T17-50-39Z
- created: "2025-01-02T21:34:25.221946278-08:00"
+ created: "2026-07-28T11:24:48.104449+08:00"
description: High Performance Object Storage
digest: 742d658c029616f0a977f255a27e806f2e3ef31f0d30467353a0882b5607001e
home: https://min.io
@@ -87,11 +110,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-5.1.0.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-5.1.0.tgz
version: 5.1.0
- apiVersion: v1
appVersion: RELEASE.2024-01-11T07-46-16Z
- created: "2025-01-02T21:34:25.188561933-08:00"
+ created: "2026-07-28T11:24:48.095001+08:00"
description: Multi-Cloud Object Storage
digest: 3a2d8e03ffdd98501026aa7561633c91d9871647f4b01d77b75a2ad9b72ee618
home: https://min.io
@@ -109,11 +132,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-5.0.15.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-5.0.15.tgz
version: 5.0.15
- apiVersion: v1
appVersion: RELEASE.2023-09-30T07-02-29Z
- created: "2025-01-02T21:34:25.184512596-08:00"
+ created: "2026-07-28T11:24:48.094008+08:00"
description: Multi-Cloud Object Storage
digest: 6c3656924fbad2cb17f810cd78f352f9b60626aaec64b837c96829095b215ad3
home: https://min.io
@@ -131,11 +154,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-5.0.14.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-5.0.14.tgz
version: 5.0.14
- apiVersion: v1
appVersion: RELEASE.2023-07-07T07-13-57Z
- created: "2025-01-02T21:34:25.180913342-08:00"
+ created: "2026-07-28T11:24:48.092749+08:00"
description: Multi-Cloud Object Storage
digest: 3c18f7381efe6d86497f952e6d5f59003ee5a009c54778ddea1ee8d3c7bed9c8
home: https://min.io
@@ -153,11 +176,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-5.0.13.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-5.0.13.tgz
version: 5.0.13
- apiVersion: v1
appVersion: RELEASE.2023-07-07T07-13-57Z
- created: "2025-01-02T21:34:25.177247018-08:00"
+ created: "2026-07-28T11:24:48.09166+08:00"
description: Multi-Cloud Object Storage
digest: 5318bc56c73a8f4539c3dd178f4d55c7f41bee4a25d7dc02ac6a5843eeee7976
home: https://min.io
@@ -175,11 +198,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-5.0.12.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-5.0.12.tgz
version: 5.0.12
- apiVersion: v1
appVersion: RELEASE.2023-06-19T19-52-50Z
- created: "2025-01-02T21:34:25.17337971-08:00"
+ created: "2026-07-28T11:24:48.090636+08:00"
description: Multi-Cloud Object Storage
digest: cba44c8cddcda1fb5c082dce82004a39f53cc20677ab9698a6998f01efefd8db
home: https://min.io
@@ -197,11 +220,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-5.0.11.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-5.0.11.tgz
version: 5.0.11
- apiVersion: v1
appVersion: RELEASE.2023-05-18T00-05-36Z
- created: "2025-01-02T21:34:25.169502301-08:00"
+ created: "2026-07-28T11:24:48.089675+08:00"
description: Multi-Cloud Object Storage
digest: a3d55b12f38a2049ddf3efe35b38b6dc4e59777452b72d18d5a82f3378deb9cd
home: https://min.io
@@ -219,11 +242,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-5.0.10.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-5.0.10.tgz
version: 5.0.10
- apiVersion: v1
appVersion: RELEASE.2023-04-28T18-11-17Z
- created: "2025-01-02T21:34:25.218260054-08:00"
+ created: "2026-07-28T11:24:48.103408+08:00"
description: Multi-Cloud Object Storage
digest: cf98985e32675e4ce327304ea9ac61046a788b3d5190d6b501330f7803d41a11
home: https://min.io
@@ -241,11 +264,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-5.0.9.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-5.0.9.tgz
version: 5.0.9
- apiVersion: v1
appVersion: RELEASE.2023-04-13T03-08-07Z
- created: "2025-01-02T21:34:25.214515045-08:00"
+ created: "2026-07-28T11:24:48.102395+08:00"
description: Multi-Cloud Object Storage
digest: 034d68f85799f6693836975797f85a91842cf2d003a6c4ff401bd4ea4c946af6
home: https://min.io
@@ -263,11 +286,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-5.0.8.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-5.0.8.tgz
version: 5.0.8
- apiVersion: v1
appVersion: RELEASE.2023-02-10T18-48-39Z
- created: "2025-01-02T21:34:25.210879405-08:00"
+ created: "2026-07-28T11:24:48.101399+08:00"
description: Multi-Cloud Object Storage
digest: 3f935a310e1b5b873052629b66005c160356ca7b2bd394cb07b34dbaf9905e3f
home: https://min.io
@@ -285,11 +308,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-5.0.7.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-5.0.7.tgz
version: 5.0.7
- apiVersion: v1
appVersion: RELEASE.2023-02-10T18-48-39Z
- created: "2025-01-02T21:34:25.207094353-08:00"
+ created: "2026-07-28T11:24:48.100265+08:00"
description: Multi-Cloud Object Storage
digest: 82ef858ce483c2d736444792986cb36bd0fb4fc90a80b97fe30d7b2f2034d24a
home: https://min.io
@@ -307,11 +330,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-5.0.6.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-5.0.6.tgz
version: 5.0.6
- apiVersion: v1
appVersion: RELEASE.2023-01-31T02-24-19Z
- created: "2025-01-02T21:34:25.201959046-08:00"
+ created: "2026-07-28T11:24:48.098922+08:00"
description: Multi-Cloud Object Storage
digest: fefeea10e4e525e45f82fb80a03900d34605ec432dd92f56d94eaf4fb1b98c41
home: https://min.io
@@ -329,11 +352,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-5.0.5.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-5.0.5.tgz
version: 5.0.5
- apiVersion: v1
appVersion: RELEASE.2022-12-12T19-27-27Z
- created: "2025-01-02T21:34:25.198369173-08:00"
+ created: "2026-07-28T11:24:48.097972+08:00"
description: Multi-Cloud Object Storage
digest: 6b305783c98b0b97ffab079ff4430094fd0ca6e98e82bb8153cb93033a1bf40f
home: https://min.io
@@ -351,11 +374,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-5.0.4.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-5.0.4.tgz
version: 5.0.4
- apiVersion: v1
appVersion: RELEASE.2022-12-12T19-27-27Z
- created: "2025-01-02T21:34:25.194953084-08:00"
+ created: "2026-07-28T11:24:48.096977+08:00"
description: Multi-Cloud Object Storage
digest: bac89157c53b324aece263c294aa49f5c9b64f426b4b06c9bca3d72e77e244f2
home: https://min.io
@@ -373,11 +396,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-5.0.3.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-5.0.3.tgz
version: 5.0.3
- apiVersion: v1
appVersion: RELEASE.2022-12-12T19-27-27Z
- created: "2025-01-02T21:34:25.191760917-08:00"
+ created: "2026-07-28T11:24:48.096022+08:00"
description: Multi-Cloud Object Storage
digest: 935ce4f09366231b11d414d626f887fa6fa6024dd30a42e81e810ca1438d5904
home: https://min.io
@@ -395,11 +418,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-5.0.2.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-5.0.2.tgz
version: 5.0.2
- apiVersion: v1
appVersion: RELEASE.2022-11-11T03-44-20Z
- created: "2025-01-02T21:34:25.164816778-08:00"
+ created: "2026-07-28T11:24:48.088641+08:00"
description: Multi-Cloud Object Storage
digest: 3e952c5d737980b8ccdfb819021eafb4b4e8da226f764a1dc3de1ba63ceb1ffa
home: https://min.io
@@ -417,11 +440,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-5.0.1.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-5.0.1.tgz
version: 5.0.1
- apiVersion: v1
appVersion: RELEASE.2022-10-24T18-35-07Z
- created: "2025-01-02T21:34:25.16141762-08:00"
+ created: "2026-07-28T11:24:48.087535+08:00"
description: Multi-Cloud Object Storage
digest: 6215c800d84fd4c40e4fb4142645fc1c6a039c251776a3cc8c11a24b9e3b59c7
home: https://min.io
@@ -439,11 +462,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-5.0.0.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-5.0.0.tgz
version: 5.0.0
- apiVersion: v1
appVersion: RELEASE.2022-10-24T18-35-07Z
- created: "2025-01-02T21:34:25.157595167-08:00"
+ created: "2026-07-28T11:24:48.086441+08:00"
description: Multi-Cloud Object Storage
digest: 2d3d884490ea1127742f938bc9382844bae713caae08b3308f766f3c9000659a
home: https://min.io
@@ -461,11 +484,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-4.1.0.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-4.1.0.tgz
version: 4.1.0
- apiVersion: v1
appVersion: RELEASE.2022-09-17T00-09-45Z
- created: "2025-01-02T21:34:25.122758935-08:00"
+ created: "2026-07-28T11:24:48.07647+08:00"
description: Multi-Cloud Object Storage
digest: 6f16f2dbfed91ab81a7fae60b6ea32f554365bd27bf5fda55b64a0fa264f4252
home: https://min.io
@@ -483,11 +506,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-4.0.15.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-4.0.15.tgz
version: 4.0.15
- apiVersion: v1
appVersion: RELEASE.2022-09-01T23-53-36Z
- created: "2025-01-02T21:34:25.118898654-08:00"
+ created: "2026-07-28T11:24:48.075138+08:00"
description: Multi-Cloud Object Storage
digest: 35d89d8f49d53ea929466fb88ee26123431326033f1387e6b2d536a629c0a398
home: https://min.io
@@ -505,11 +528,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-4.0.14.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-4.0.14.tgz
version: 4.0.14
- apiVersion: v1
appVersion: RELEASE.2022-08-22T23-53-06Z
- created: "2025-01-02T21:34:25.115194076-08:00"
+ created: "2026-07-28T11:24:48.07403+08:00"
description: Multi-Cloud Object Storage
digest: 5b86937ca88d9f6046141fdc2b1cc54760435ed92d289cd0a115fa7148781d4e
home: https://min.io
@@ -527,11 +550,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-4.0.13.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-4.0.13.tgz
version: 4.0.13
- apiVersion: v1
appVersion: RELEASE.2022-08-13T21-54-44Z
- created: "2025-01-02T21:34:25.111485897-08:00"
+ created: "2026-07-28T11:24:48.073023+08:00"
description: Multi-Cloud Object Storage
digest: 2d9c227c0f46ea8bdef4d760c212156fd4c6623ddc5406779c569fe925527787
home: https://min.io
@@ -549,11 +572,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-4.0.12.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-4.0.12.tgz
version: 4.0.12
- apiVersion: v1
appVersion: RELEASE.2022-08-05T23-27-09Z
- created: "2025-01-02T21:34:25.107832294-08:00"
+ created: "2026-07-28T11:24:48.071962+08:00"
description: Multi-Cloud Object Storage
digest: 6caaffcb636e040cd7e8bc4883a1674a673757f4781c32d53b5ec0f41fea3944
home: https://min.io
@@ -571,11 +594,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-4.0.11.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-4.0.11.tgz
version: 4.0.11
- apiVersion: v1
appVersion: RELEASE.2022-08-02T23-59-16Z
- created: "2025-01-02T21:34:25.103772055-08:00"
+ created: "2026-07-28T11:24:48.070918+08:00"
description: Multi-Cloud Object Storage
digest: 841d87788fb094d6a7d8a91e91821fe1e847bc952e054c781fc93742d112e18a
home: https://min.io
@@ -593,11 +616,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-4.0.10.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-4.0.10.tgz
version: 4.0.10
- apiVersion: v1
appVersion: RELEASE.2022-08-02T23-59-16Z
- created: "2025-01-02T21:34:25.153995865-08:00"
+ created: "2026-07-28T11:24:48.085222+08:00"
description: Multi-Cloud Object Storage
digest: 6f1a78382df3215deac07495a5e7de7009a1153b4cf6cb565630652a69aec4cf
home: https://min.io
@@ -615,11 +638,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-4.0.9.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-4.0.9.tgz
version: 4.0.9
- apiVersion: v1
appVersion: RELEASE.2022-07-29T19-40-48Z
- created: "2025-01-02T21:34:25.150678505-08:00"
+ created: "2026-07-28T11:24:48.083641+08:00"
description: Multi-Cloud Object Storage
digest: d11db37963636922cb778b6bc0ad2ca4724cb391ea7b785995ada52467d7dd83
home: https://min.io
@@ -637,11 +660,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-4.0.8.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-4.0.8.tgz
version: 4.0.8
- apiVersion: v1
appVersion: RELEASE.2022-07-26T00-53-03Z
- created: "2025-01-02T21:34:25.146767779-08:00"
+ created: "2026-07-28T11:24:48.08261+08:00"
description: Multi-Cloud Object Storage
digest: ca775e08c84331bb5029d4d29867d30c16e2c62e897788eb432212a756e91e4e
home: https://min.io
@@ -659,11 +682,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-4.0.7.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-4.0.7.tgz
version: 4.0.7
- apiVersion: v1
appVersion: RELEASE.2022-05-08T23-50-31Z
- created: "2025-01-02T21:34:25.142770749-08:00"
+ created: "2026-07-28T11:24:48.081659+08:00"
description: Multi-Cloud Object Storage
digest: 06542b8f3d149d5908b15de9a8d6f8cf304af0213830be56dc315785d14f9ccd
home: https://min.io
@@ -681,11 +704,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-4.0.6.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-4.0.6.tgz
version: 4.0.6
- apiVersion: v1
appVersion: RELEASE.2022-05-08T23-50-31Z
- created: "2025-01-02T21:34:25.139151034-08:00"
+ created: "2026-07-28T11:24:48.080703+08:00"
description: Multi-Cloud Object Storage
digest: dd2676362f067454a496cdd293609d0c904b08f521625af49f95402a024ba1f5
home: https://min.io
@@ -703,11 +726,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-4.0.5.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-4.0.5.tgz
version: 4.0.5
- apiVersion: v1
appVersion: RELEASE.2022-05-08T23-50-31Z
- created: "2025-01-02T21:34:25.135573416-08:00"
+ created: "2026-07-28T11:24:48.079672+08:00"
description: Multi-Cloud Object Storage
digest: bab9ef192d4eda4c572ad0ce0cf551736c847f582d1837d6833ee10543c23167
home: https://min.io
@@ -725,11 +748,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-4.0.4.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-4.0.4.tgz
version: 4.0.4
- apiVersion: v1
appVersion: RELEASE.2022-05-08T23-50-31Z
- created: "2025-01-02T21:34:25.132238833-08:00"
+ created: "2026-07-28T11:24:48.078749+08:00"
description: Multi-Cloud Object Storage
digest: c770bb9841c76576e4e8573f78b0ec33e0d729504c9667e67ad62d48df5ed64c
home: https://min.io
@@ -747,11 +770,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-4.0.3.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-4.0.3.tgz
version: 4.0.3
- apiVersion: v1
appVersion: RELEASE.2022-05-08T23-50-31Z
- created: "2025-01-02T21:34:25.128974045-08:00"
+ created: "2026-07-28T11:24:48.077743+08:00"
description: Multi-Cloud Object Storage
digest: 95835f4199d963e2a23a2493610b348e6f2ff8b71c1a648c4a3b84af9b7a83eb
home: https://min.io
@@ -769,11 +792,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-4.0.2.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-4.0.2.tgz
version: 4.0.2
- apiVersion: v1
appVersion: RELEASE.2022-04-30T22-23-53Z
- created: "2025-01-02T21:34:25.099393644-08:00"
+ created: "2026-07-28T11:24:48.069758+08:00"
description: Multi-Cloud Object Storage
digest: 55a088c403b056e1f055a97426aa11759c3d6cbad38face170fe6cbbec7d568f
home: https://min.io
@@ -791,11 +814,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-4.0.1.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-4.0.1.tgz
version: 4.0.1
- apiVersion: v1
appVersion: RELEASE.2022-04-26T01-20-24Z
- created: "2025-01-02T21:34:25.095908528-08:00"
+ created: "2026-07-28T11:24:48.068652+08:00"
description: Multi-Cloud Object Storage
digest: f541237e24336ec3f7f45ae0d523fef694e3a2f9ef648c5b11c15734db6ba2b2
home: https://min.io
@@ -813,11 +836,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-4.0.0.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-4.0.0.tgz
version: 4.0.0
- apiVersion: v1
appVersion: RELEASE.2022-04-16T04-26-02Z
- created: "2025-01-02T21:34:25.092803423-08:00"
+ created: "2026-07-28T11:24:48.067091+08:00"
description: Multi-Cloud Object Storage
digest: edc0c3dd6d5246a06b74ba16bb4aff80a6d7225dc9aecf064fd89a8af371b9c1
home: https://min.io
@@ -835,11 +858,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.6.6.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.6.6.tgz
version: 3.6.6
- apiVersion: v1
appVersion: RELEASE.2022-04-12T06-55-35Z
- created: "2025-01-02T21:34:25.089672015-08:00"
+ created: "2026-07-28T11:24:48.065765+08:00"
description: Multi-Cloud Object Storage
digest: 211e89f6b9eb0b9a3583abaa127be60e1f9717a098e6b2858cb9dc1cc50c1650
home: https://min.io
@@ -857,11 +880,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.6.5.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.6.5.tgz
version: 3.6.5
- apiVersion: v1
appVersion: RELEASE.2022-04-09T15-09-52Z
- created: "2025-01-02T21:34:25.086239968-08:00"
+ created: "2026-07-28T11:24:48.064741+08:00"
description: Multi-Cloud Object Storage
digest: 534a879d73b370a18b554b93d0930e1c115419619c4ce4ec7dbaae632acacf06
home: https://min.io
@@ -879,11 +902,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.6.4.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.6.4.tgz
version: 3.6.4
- apiVersion: v1
appVersion: RELEASE.2022-03-24T00-43-44Z
- created: "2025-01-02T21:34:25.081664315-08:00"
+ created: "2026-07-28T11:24:48.063721+08:00"
description: Multi-Cloud Object Storage
digest: 99508b20eb0083a567dcccaf9a6c237e09575ed1d70cd2e8333f89c472d13d75
home: https://min.io
@@ -901,11 +924,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.6.3.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.6.3.tgz
version: 3.6.3
- apiVersion: v1
appVersion: RELEASE.2022-03-17T06-34-49Z
- created: "2025-01-02T21:34:25.078433537-08:00"
+ created: "2026-07-28T11:24:48.062745+08:00"
description: Multi-Cloud Object Storage
digest: b4cd25611ca322b1d23d23112fdfa6b068fd91eefe0b0663b88ff87ea4282495
home: https://min.io
@@ -923,11 +946,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.6.2.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.6.2.tgz
version: 3.6.2
- apiVersion: v1
appVersion: RELEASE.2022-03-14T18-25-24Z
- created: "2025-01-02T21:34:25.075113944-08:00"
+ created: "2026-07-28T11:24:48.061817+08:00"
description: Multi-Cloud Object Storage
digest: d75b88162bfe54740a233bcecf87328bba2ae23d170bec3a35c828bc6fdc224c
home: https://min.io
@@ -945,11 +968,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.6.1.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.6.1.tgz
version: 3.6.1
- apiVersion: v1
appVersion: RELEASE.2022-03-11T23-57-45Z
- created: "2025-01-02T21:34:25.07170837-08:00"
+ created: "2026-07-28T11:24:48.060832+08:00"
description: Multi-Cloud Object Storage
digest: 22e53a1184a21a679bc7d8b94e955777f3506340fc29da5ab0cb6d729bdbde8d
home: https://min.io
@@ -967,11 +990,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.6.0.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.6.0.tgz
version: 3.6.0
- apiVersion: v1
appVersion: RELEASE.2022-03-03T21-21-16Z
- created: "2025-01-02T21:34:25.067175653-08:00"
+ created: "2026-07-28T11:24:48.059438+08:00"
description: Multi-Cloud Object Storage
digest: 6fda968d3fdfd60470c0055a4e1a3bd8e5aee9ad0af5ba2fb7b7b926fdc9e4a0
home: https://min.io
@@ -989,11 +1012,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.5.9.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.5.9.tgz
version: 3.5.9
- apiVersion: v1
appVersion: RELEASE.2022-02-26T02-54-46Z
- created: "2025-01-02T21:34:25.063997563-08:00"
+ created: "2026-07-28T11:24:48.058348+08:00"
description: Multi-Cloud Object Storage
digest: 8e015369048a3a82bbd53ad36696786f18561c6b25d14eee9e2c93a7336cef46
home: https://min.io
@@ -1011,11 +1034,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.5.8.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.5.8.tgz
version: 3.5.8
- apiVersion: v1
appVersion: RELEASE.2022-02-18T01-50-10Z
- created: "2025-01-02T21:34:25.058867444-08:00"
+ created: "2026-07-28T11:24:48.057372+08:00"
description: Multi-Cloud Object Storage
digest: cb3543fe748e5f0d59b3ccf4ab9af8e10b731405ae445d1f5715e30013632373
home: https://min.io
@@ -1033,11 +1056,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.5.7.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.5.7.tgz
version: 3.5.7
- apiVersion: v1
appVersion: RELEASE.2022-02-18T01-50-10Z
- created: "2025-01-02T21:34:25.055866713-08:00"
+ created: "2026-07-28T11:24:48.056471+08:00"
description: Multi-Cloud Object Storage
digest: f2e359fa5eefffc59abb3d14a8fa94b11ddeaa99f6cd8dd5f40f4e04121000d6
home: https://min.io
@@ -1055,11 +1078,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.5.6.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.5.6.tgz
version: 3.5.6
- apiVersion: v1
appVersion: RELEASE.2022-02-16T00-35-27Z
- created: "2025-01-02T21:34:25.052552978-08:00"
+ created: "2026-07-28T11:24:48.055587+08:00"
description: Multi-Cloud Object Storage
digest: 529d56cca9d83a3d0e5672e63b6e87b5bcbe10a6b45f7a55ba998cceb32f9c81
home: https://min.io
@@ -1077,11 +1100,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.5.5.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.5.5.tgz
version: 3.5.5
- apiVersion: v1
appVersion: RELEASE.2022-02-12T00-51-25Z
- created: "2025-01-02T21:34:25.049153108-08:00"
+ created: "2026-07-28T11:24:48.05455+08:00"
description: Multi-Cloud Object Storage
digest: 3d530598f8ece67bec5b7f990d206584893987c713502f9228e4ee24b5535414
home: https://min.io
@@ -1099,11 +1122,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.5.4.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.5.4.tgz
version: 3.5.4
- apiVersion: v1
appVersion: RELEASE.2022-02-12T00-51-25Z
- created: "2025-01-02T21:34:25.045984459-08:00"
+ created: "2026-07-28T11:24:48.053304+08:00"
description: Multi-Cloud Object Storage
digest: 53937031348b29615f07fc4869b2d668391d8ba9084630a497abd7a7dea9dfb0
home: https://min.io
@@ -1121,11 +1144,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.5.3.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.5.3.tgz
version: 3.5.3
- apiVersion: v1
appVersion: RELEASE.2022-02-07T08-17-33Z
- created: "2025-01-02T21:34:25.042945494-08:00"
+ created: "2026-07-28T11:24:48.052351+08:00"
description: Multi-Cloud Object Storage
digest: 68d643414ff0d565716c5715034fcbf1af262e041915a5c02eb51ec1a65c1ea0
home: https://min.io
@@ -1143,11 +1166,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.5.2.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.5.2.tgz
version: 3.5.2
- apiVersion: v1
appVersion: RELEASE.2022-02-01T18-00-14Z
- created: "2025-01-02T21:34:25.038683645-08:00"
+ created: "2026-07-28T11:24:48.051521+08:00"
description: Multi-Cloud Object Storage
digest: a3e855ed0f31233b989fffd775a29d6fbfa0590089010ff16783fd7f142ef6e7
home: https://min.io
@@ -1165,11 +1188,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.5.1.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.5.1.tgz
version: 3.5.1
- apiVersion: v1
appVersion: RELEASE.2022-02-01T18-00-14Z
- created: "2025-01-02T21:34:25.03587265-08:00"
+ created: "2026-07-28T11:24:48.050496+08:00"
description: Multi-Cloud Object Storage
digest: b1b0ae3c54b4260a698753e11d7781bb8ddc67b7e3fbf0af82796e4cd4ef92a3
home: https://min.io
@@ -1187,11 +1210,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.5.0.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.5.0.tgz
version: 3.5.0
- apiVersion: v1
appVersion: RELEASE.2022-01-28T02-28-16Z
- created: "2025-01-02T21:34:25.032826604-08:00"
+ created: "2026-07-28T11:24:48.049783+08:00"
description: Multi-Cloud Object Storage
digest: fecf25d2d3fb208c6f894fed642a60780a570b7f6d0adddde846af7236dc80aa
home: https://min.io
@@ -1209,11 +1232,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.4.8.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.4.8.tgz
version: 3.4.8
- apiVersion: v1
appVersion: RELEASE.2022-01-25T19-56-04Z
- created: "2025-01-02T21:34:25.029589236-08:00"
+ created: "2026-07-28T11:24:48.049037+08:00"
description: Multi-Cloud Object Storage
digest: c78008caa5ce98f64c887630f59d0cbd481cb3f19a7d4e9d3e81bf4e1e45cadc
home: https://min.io
@@ -1231,11 +1254,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.4.7.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.4.7.tgz
version: 3.4.7
- apiVersion: v1
appVersion: RELEASE.2022-01-08T03-11-54Z
- created: "2025-01-02T21:34:25.026512118-08:00"
+ created: "2026-07-28T11:24:48.048342+08:00"
description: Multi-Cloud Object Storage
digest: 8f2e2691bf897f74ff094dd370ec56ba9d417e5e8926710c14c2ba346330238d
home: https://min.io
@@ -1253,11 +1276,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.4.6.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.4.6.tgz
version: 3.4.6
- apiVersion: v1
appVersion: RELEASE.2022-01-04T07-41-07Z
- created: "2025-01-02T21:34:25.023266957-08:00"
+ created: "2026-07-28T11:24:48.047642+08:00"
description: Multi-Cloud Object Storage
digest: bacd140f0016fab35f516bde787da6449b3a960c071fad9e4b6563118033ac84
home: https://min.io
@@ -1275,11 +1298,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.4.5.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.4.5.tgz
version: 3.4.5
- apiVersion: v1
appVersion: RELEASE.2021-12-29T06-49-06Z
- created: "2025-01-02T21:34:25.020285989-08:00"
+ created: "2026-07-28T11:24:48.046946+08:00"
description: Multi-Cloud Object Storage
digest: 48a453ea5ffeef25933904caefd9470bfb26224dfc2d1096bd0031467ba53007
home: https://min.io
@@ -1297,11 +1320,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.4.4.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.4.4.tgz
version: 3.4.4
- apiVersion: v1
appVersion: RELEASE.2021-12-20T22-07-16Z
- created: "2025-01-02T21:34:25.014477173-08:00"
+ created: "2026-07-28T11:24:48.046204+08:00"
description: Multi-Cloud Object Storage
digest: 47ef4a930713b98f9438ceca913c6e700f85bb25dba5624b056486254b5f0c60
home: https://min.io
@@ -1319,11 +1342,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.4.3.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.4.3.tgz
version: 3.4.3
- apiVersion: v1
appVersion: RELEASE.2021-12-20T22-07-16Z
- created: "2025-01-02T21:34:25.011715909-08:00"
+ created: "2026-07-28T11:24:48.045319+08:00"
description: Multi-Cloud Object Storage
digest: d6763f7e2ea66810bd55eb225579a9c3b968f9ae1256f45fd469362e55d846ff
home: https://min.io
@@ -1341,11 +1364,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.4.2.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.4.2.tgz
version: 3.4.2
- apiVersion: v1
appVersion: RELEASE.2021-12-10T23-03-39Z
- created: "2025-01-02T21:34:25.009018639-08:00"
+ created: "2026-07-28T11:24:48.043814+08:00"
description: Multi-Cloud Object Storage
digest: 2fb822c87216ba3fc2ae51a54a0a3e239aa560d86542991504a841cc2a2b9a37
home: https://min.io
@@ -1363,11 +1386,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.4.1.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.4.1.tgz
version: 3.4.1
- apiVersion: v1
appVersion: RELEASE.2021-12-18T04-42-33Z
- created: "2025-01-02T21:34:25.006295652-08:00"
+ created: "2026-07-28T11:24:48.043107+08:00"
description: Multi-Cloud Object Storage
digest: fa8ba1aeb1a15316c6be8403416a5e6b5e6139b7166592087e7bddc9e6db5453
home: https://min.io
@@ -1385,11 +1408,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.4.0.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.4.0.tgz
version: 3.4.0
- apiVersion: v1
appVersion: RELEASE.2021-12-10T23-03-39Z
- created: "2025-01-02T21:34:25.003243793-08:00"
+ created: "2026-07-28T11:24:48.042356+08:00"
description: Multi-Cloud Object Storage
digest: b9b0af9ca50b8d00868e1f1b989dca275829d9110af6de91bb9b3a398341e894
home: https://min.io
@@ -1407,11 +1430,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.3.4.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.3.4.tgz
version: 3.3.4
- apiVersion: v1
appVersion: RELEASE.2021-12-10T23-03-39Z
- created: "2025-01-02T21:34:24.999956538-08:00"
+ created: "2026-07-28T11:24:48.04156+08:00"
description: Multi-Cloud Object Storage
digest: f8b22a5b8fe95a7ddf61b825e17d11c9345fb10e4c126b0d78381608aa300a08
home: https://min.io
@@ -1429,11 +1452,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.3.3.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.3.3.tgz
version: 3.3.3
- apiVersion: v1
appVersion: RELEASE.2021-12-10T23-03-39Z
- created: "2025-01-02T21:34:24.995166842-08:00"
+ created: "2026-07-28T11:24:48.040771+08:00"
description: Multi-Cloud Object Storage
digest: c48d474f269427abe5ab446f00687d0625b3d1adfc5c73bdb4b21ca9e42853fb
home: https://min.io
@@ -1451,11 +1474,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.3.2.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.3.2.tgz
version: 3.3.2
- apiVersion: v1
appVersion: RELEASE.2021-11-24T23-19-33Z
- created: "2025-01-02T21:34:24.992276741-08:00"
+ created: "2026-07-28T11:24:48.040075+08:00"
description: Multi-Cloud Object Storage
digest: 7c3da39d9b0090cbf5efedf0cc163a1e2df05becc5152c3add8e837384690bc4
home: https://min.io
@@ -1473,11 +1496,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.3.1.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.3.1.tgz
version: 3.3.1
- apiVersion: v1
appVersion: RELEASE.2021-11-24T23-19-33Z
- created: "2025-01-02T21:34:24.989284049-08:00"
+ created: "2026-07-28T11:24:48.039421+08:00"
description: Multi-Cloud Object Storage
digest: 50d6590b4cc779c40f81cc13b1586fbe508aa7f3230036c760bfc5f4154fbce4
home: https://min.io
@@ -1495,11 +1518,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.3.0.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.3.0.tgz
version: 3.3.0
- apiVersion: v1
appVersion: RELEASE.2021-10-13T00-23-17Z
- created: "2025-01-02T21:34:24.986516619-08:00"
+ created: "2026-07-28T11:24:48.038706+08:00"
description: Multi-Cloud Object Storage
digest: 5b797b7208cd904c11a76cd72938c8652160cb5fcd7f09fa41e4e703e6d64054
home: https://min.io
@@ -1517,11 +1540,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.2.0.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.2.0.tgz
version: 3.2.0
- apiVersion: v1
appVersion: RELEASE.2021-10-10T16-53-30Z
- created: "2025-01-02T21:34:24.983573512-08:00"
+ created: "2026-07-28T11:24:48.037422+08:00"
description: Multi-Cloud Object Storage
digest: e084ac4bb095f071e59f8f08bd092e4ab2404c1ddadacfdce7dbe248f1bafff8
home: https://min.io
@@ -1539,11 +1562,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.1.9.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.1.9.tgz
version: 3.1.9
- apiVersion: v1
appVersion: RELEASE.2021-10-06T23-36-31Z
- created: "2025-01-02T21:34:24.980470597-08:00"
+ created: "2026-07-28T11:24:48.036628+08:00"
description: Multi-Cloud Object Storage
digest: 2890430a8d9487d1fa5508c26776e4881d0086b2c052aa6bdc65c0e4423b9159
home: https://min.io
@@ -1561,11 +1584,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.1.8.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.1.8.tgz
version: 3.1.8
- apiVersion: v1
appVersion: RELEASE.2021-10-02T16-31-05Z
- created: "2025-01-02T21:34:24.977221503-08:00"
+ created: "2026-07-28T11:24:48.035874+08:00"
description: Multi-Cloud Object Storage
digest: 01a92196af6c47e3a01e1c68d7cf693a8bc487cba810c2cecff155071e4d6a11
home: https://min.io
@@ -1583,11 +1606,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.1.7.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.1.7.tgz
version: 3.1.7
- apiVersion: v1
appVersion: RELEASE.2021-09-18T18-09-59Z
- created: "2025-01-02T21:34:24.972867415-08:00"
+ created: "2026-07-28T11:24:48.035137+08:00"
description: Multi-Cloud Object Storage
digest: e779d73f80b75f33b9c9d995ab10fa455c9c57ee575ebc54e06725a64cd04310
home: https://min.io
@@ -1605,11 +1628,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.1.6.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.1.6.tgz
version: 3.1.6
- apiVersion: v1
appVersion: RELEASE.2021-09-18T18-09-59Z
- created: "2025-01-02T21:34:24.969718459-08:00"
+ created: "2026-07-28T11:24:48.034472+08:00"
description: Multi-Cloud Object Storage
digest: 19de4bbc8a400f0c2a94c5e85fc25c9bfc666e773fb3e368dd621d5a57dd1c2a
home: https://min.io
@@ -1627,11 +1650,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.1.5.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.1.5.tgz
version: 3.1.5
- apiVersion: v1
appVersion: RELEASE.2021-09-18T18-09-59Z
- created: "2025-01-02T21:34:24.966608057-08:00"
+ created: "2026-07-28T11:24:48.033773+08:00"
description: Multi-Cloud Object Storage
digest: f789d93a171296dd01af0105a5ce067c663597afbb2432faeda293b752b355c0
home: https://min.io
@@ -1649,11 +1672,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.1.4.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.1.4.tgz
version: 3.1.4
- apiVersion: v1
appVersion: RELEASE.2021-09-09T21-37-07Z
- created: "2025-01-02T21:34:24.963751369-08:00"
+ created: "2026-07-28T11:24:48.033115+08:00"
description: Multi-Cloud Object Storage
digest: e2eb34d31560b012ef6581f0ff6004ea4376c968cbe0daed2d8f3a614a892afb
home: https://min.io
@@ -1671,11 +1694,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.1.3.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.1.3.tgz
version: 3.1.3
- apiVersion: v1
appVersion: RELEASE.2021-09-09T21-37-07Z
- created: "2025-01-02T21:34:24.960755082-08:00"
+ created: "2026-07-28T11:24:48.032382+08:00"
description: Multi-Cloud Object Storage
digest: 8d7e0cc46b3583abd71b97dc0c071f98321101f90eca17348f1e9e0831be64cd
home: https://min.io
@@ -1693,11 +1716,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.1.2.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.1.2.tgz
version: 3.1.2
- apiVersion: v1
appVersion: RELEASE.2021-09-09T21-37-07Z
- created: "2025-01-02T21:34:24.957713429-08:00"
+ created: "2026-07-28T11:24:48.030934+08:00"
description: Multi-Cloud Object Storage
digest: 50dcbf366b1b21f4a6fc429d0b884c0c7ff481d0fb95c5e9b3ae157c348dd124
home: https://min.io
@@ -1715,11 +1738,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.1.1.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.1.1.tgz
version: 3.1.1
- apiVersion: v1
appVersion: RELEASE.2021-09-09T21-37-07Z
- created: "2025-01-02T21:34:24.954546983-08:00"
+ created: "2026-07-28T11:24:48.030286+08:00"
description: Multi-Cloud Object Storage
digest: 6c01af55d2e2e5f716eabf6fef3a92a8464d0674529e9bacab292e5478a73b7a
home: https://min.io
@@ -1737,11 +1760,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.1.0.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.1.0.tgz
version: 3.1.0
- apiVersion: v1
appVersion: RELEASE.2021-09-03T03-56-13Z
- created: "2025-01-02T21:34:24.949999464-08:00"
+ created: "2026-07-28T11:24:48.029639+08:00"
description: Multi-Cloud Object Storage
digest: 18e10be4d0458bc590ca9abf753227e0c70f60511495387b8d4fb15a4daf932e
home: https://min.io
@@ -1759,11 +1782,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.0.2.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.0.2.tgz
version: 3.0.2
- apiVersion: v1
appVersion: RELEASE.2021-08-31T05-46-54Z
- created: "2025-01-02T21:34:24.947018538-08:00"
+ created: "2026-07-28T11:24:48.029007+08:00"
description: Multi-Cloud Object Storage
digest: f5b6e7f6272a9e71aef3b75555f6f756a39eef65cb78873f26451dba79b19906
home: https://min.io
@@ -1781,11 +1804,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.0.1.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.0.1.tgz
version: 3.0.1
- apiVersion: v1
appVersion: RELEASE.2021-08-31T05-46-54Z
- created: "2025-01-02T21:34:24.943547135-08:00"
+ created: "2026-07-28T11:24:48.028376+08:00"
description: Multi-Cloud Object Storage
digest: 6d2ee1336c412affaaf209fdb80215be2a6ebb23ab2443adbaffef9e7df13fab
home: https://min.io
@@ -1803,11 +1826,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-3.0.0.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-3.0.0.tgz
version: 3.0.0
- apiVersion: v1
appVersion: RELEASE.2021-08-31T05-46-54Z
- created: "2025-01-02T21:34:24.940463458-08:00"
+ created: "2026-07-28T11:24:48.027704+08:00"
description: Multi-Cloud Object Storage
digest: 0a004aaf5bb61deed6a5c88256d1695ebe2f9ff1553874a93e4acfd75e8d339b
home: https://min.io
@@ -1823,11 +1846,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-2.0.1.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-2.0.1.tgz
version: 2.0.1
- apiVersion: v1
appVersion: RELEASE.2021-08-25T00-41-18Z
- created: "2025-01-02T21:34:24.937381269-08:00"
+ created: "2026-07-28T11:24:48.02676+08:00"
description: Multi-Cloud Object Storage
digest: fcd944e837ee481307de6aa3d387ea18c234f995a84c15abb211aab4a4054afc
home: https://min.io
@@ -1843,11 +1866,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-2.0.0.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-2.0.0.tgz
version: 2.0.0
- apiVersion: v1
appVersion: RELEASE.2021-08-25T00-41-18Z
- created: "2025-01-02T21:34:24.934337395-08:00"
+ created: "2026-07-28T11:24:48.024846+08:00"
description: Multi-Cloud Object Storage
digest: 7b6c033d43a856479eb493ab8ca05b230f77c3e42e209e8f298fac6af1a9796f
home: https://min.io
@@ -1863,11 +1886,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-1.0.5.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-1.0.5.tgz
version: 1.0.5
- apiVersion: v1
appVersion: RELEASE.2021-08-25T00-41-18Z
- created: "2025-01-02T21:34:24.931230726-08:00"
+ created: "2026-07-28T11:24:48.024013+08:00"
description: Multi-Cloud Object Storage
digest: abd221245ace16c8e0c6c851cf262d1474a5219dcbf25c4b2e7b77142f9c59ed
home: https://min.io
@@ -1883,11 +1906,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-1.0.4.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-1.0.4.tgz
version: 1.0.4
- apiVersion: v1
appVersion: RELEASE.2021-08-20T18-32-01Z
- created: "2025-01-02T21:34:24.926018385-08:00"
+ created: "2026-07-28T11:24:48.023388+08:00"
description: Multi-Cloud Object Storage
digest: 922a333f5413d1042f7aa81929f43767f6ffca9b260c46713f04ce1dda86d57d
home: https://min.io
@@ -1903,11 +1926,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-1.0.3.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-1.0.3.tgz
version: 1.0.3
- apiVersion: v1
appVersion: RELEASE.2021-08-20T18-32-01Z
- created: "2025-01-02T21:34:24.924448521-08:00"
+ created: "2026-07-28T11:24:48.022668+08:00"
description: High Performance, Kubernetes Native Object Storage
digest: 10e22773506bbfb1c66442937956534cf4057b94f06a977db78b8cd223588388
home: https://min.io
@@ -1923,11 +1946,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-1.0.2.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-1.0.2.tgz
version: 1.0.2
- apiVersion: v1
appVersion: RELEASE.2021-08-20T18-32-01Z
- created: "2025-01-02T21:34:24.923185443-08:00"
+ created: "2026-07-28T11:24:48.022009+08:00"
description: High Performance, Kubernetes Native Object Storage
digest: ef86ab6df23d6942705da9ef70991b649638c51bc310587d37a425268ba4a06c
home: https://min.io
@@ -1943,11 +1966,11 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-1.0.1.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-1.0.1.tgz
version: 1.0.1
- apiVersion: v1
appVersion: RELEASE.2021-08-17T20-53-08Z
- created: "2025-01-02T21:34:24.921774338-08:00"
+ created: "2026-07-28T11:24:48.021279+08:00"
description: High Performance, Kubernetes Native Object Storage
digest: 1add7608692cbf39aaf9b1252530e566f7b2f306a14e390b0f49b97a20f2b188
home: https://min.io
@@ -1963,6 +1986,6 @@ entries:
sources:
- https://github.com/minio/minio
urls:
- - https://charts.min.io/helm-releases/minio-1.0.0.tgz
+ - https://raw.githubusercontent.com/pgsty/minio/master/helm-releases/minio-1.0.0.tgz
version: 1.0.0
-generated: "2025-01-02T21:34:24.920106038-08:00"
+generated: "2026-07-28T11:24:48.020117+08:00"