diff --git a/.github/logo.svg b/.github/logo.svg
deleted file mode 100644
index 16e664eb9..000000000
--- a/.github/logo.svg
+++ /dev/null
@@ -1,6 +0,0 @@
-
diff --git a/CNAME b/CNAME
deleted file mode 100644
index f5ea80346..000000000
--- a/CNAME
+++ /dev/null
@@ -1 +0,0 @@
-charts.min.io
diff --git a/Dockerfile b/Dockerfile
deleted file mode 100644
index 84a963455..000000000
--- a/Dockerfile
+++ /dev/null
@@ -1,18 +0,0 @@
-FROM minio/minio:latest
-
-ARG TARGETARCH
-ARG RELEASE
-
-RUN chmod -R 777 /usr/bin
-
-COPY ./minio-${TARGETARCH}.${RELEASE} /usr/bin/minio
-COPY ./minio-${TARGETARCH}.${RELEASE}.minisig /usr/bin/minio.minisig
-COPY ./minio-${TARGETARCH}.${RELEASE}.sha256sum /usr/bin/minio.sha256sum
-
-COPY dockerscripts/docker-entrypoint.sh /usr/bin/docker-entrypoint.sh
-
-ENTRYPOINT ["/usr/bin/docker-entrypoint.sh"]
-
-VOLUME ["/data"]
-
-CMD ["minio"]
diff --git a/Dockerfile.cicd b/Dockerfile.cicd
deleted file mode 100644
index 118ab0329..000000000
--- a/Dockerfile.cicd
+++ /dev/null
@@ -1,3 +0,0 @@
-FROM minio/minio:edge
-
-CMD ["minio", "server", "/data"]
diff --git a/Dockerfile.hotfix b/Dockerfile.hotfix
deleted file mode 100644
index c8a571596..000000000
--- a/Dockerfile.hotfix
+++ /dev/null
@@ -1,71 +0,0 @@
-FROM golang:1.26.5-alpine as build
-
-ARG TARGETARCH
-ARG RELEASE
-
-ENV GOPATH=/go
-ENV CGO_ENABLED=0
-
-# Install curl and minisign
-RUN apk add -U --no-cache ca-certificates && \
- apk add -U --no-cache curl && \
- go install aead.dev/minisign/cmd/minisign@v0.2.1
-
-# Download minio binary and signature files
-RUN curl -s -q https://dl.min.io/server/minio/hotfixes/linux-${TARGETARCH}/archive/minio.${RELEASE} -o /go/bin/minio && \
- curl -s -q https://dl.min.io/server/minio/hotfixes/linux-${TARGETARCH}/archive/minio.${RELEASE}.minisig -o /go/bin/minio.minisig && \
- curl -s -q https://dl.min.io/server/minio/hotfixes/linux-${TARGETARCH}/archive/minio.${RELEASE}.sha256sum -o /go/bin/minio.sha256sum && \
- chmod +x /go/bin/minio
-
-# Download mc binary and signature files
-RUN curl -s -q https://dl.min.io/client/mc/release/linux-${TARGETARCH}/mc -o /go/bin/mc && \
- curl -s -q https://dl.min.io/client/mc/release/linux-${TARGETARCH}/mc.minisig -o /go/bin/mc.minisig && \
- curl -s -q https://dl.min.io/client/mc/release/linux-${TARGETARCH}/mc.sha256sum -o /go/bin/mc.sha256sum && \
- chmod +x /go/bin/mc
-
-RUN if [ "$TARGETARCH" = "amd64" ]; then \
- curl -L -s -q https://github.com/moparisthebest/static-curl/releases/latest/download/curl-${TARGETARCH} -o /go/bin/curl; \
- chmod +x /go/bin/curl; \
- fi
-
-# Verify binary signature using public key "RWTx5Zr1tiHQLwG9keckT0c45M3AGeHD6IvimQHpyRywVWGbP1aVSGavRUN"
-RUN minisign -Vqm /go/bin/minio -x /go/bin/minio.minisig -P RWTx5Zr1tiHQLwG9keckT0c45M3AGeHD6IvimQHpyRywVWGbP1aVSGav && \
- minisign -Vqm /go/bin/mc -x /go/bin/mc.minisig -P RWTx5Zr1tiHQLwG9keckT0c45M3AGeHD6IvimQHpyRywVWGbP1aVSGav
-
-FROM registry.access.redhat.com/ubi9/ubi-micro:latest
-
-ARG RELEASE
-
-LABEL name="MinIO" \
- vendor="MinIO Inc " \
- maintainer="MinIO Inc " \
- version="${RELEASE}" \
- release="${RELEASE}" \
- summary="MinIO is a High Performance Object Storage, API compatible with Amazon S3 cloud storage service." \
- description="MinIO object storage is fundamentally different. Designed for performance and the S3 API, it is 100% open-source. MinIO is ideal for large, private cloud environments with stringent security requirements and delivers mission-critical availability across a diverse range of workloads."
-
-ENV MINIO_ACCESS_KEY_FILE=access_key \
- MINIO_SECRET_KEY_FILE=secret_key \
- MINIO_ROOT_USER_FILE=access_key \
- MINIO_ROOT_PASSWORD_FILE=secret_key \
- MINIO_KMS_SECRET_KEY_FILE=kms_master_key \
- MINIO_UPDATE_MINISIGN_PUBKEY="RWTx5Zr1tiHQLwG9keckT0c45M3AGeHD6IvimQHpyRywVWGbP1aVSGav" \
- MINIO_CONFIG_ENV_FILE=config.env \
- MC_CONFIG_DIR=/tmp/.mc
-
-RUN chmod -R 777 /usr/bin
-
-COPY --from=build /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
-COPY --from=build /go/bin/minio* /usr/bin/
-COPY --from=build /go/bin/mc* /usr/bin/
-COPY --from=build /go/bin/cur* /usr/bin/
-
-COPY CREDITS /licenses/CREDITS
-COPY LICENSE /licenses/LICENSE
-COPY dockerscripts/docker-entrypoint.sh /usr/bin/docker-entrypoint.sh
-
-EXPOSE 9000
-VOLUME ["/data"]
-
-ENTRYPOINT ["/usr/bin/docker-entrypoint.sh"]
-CMD ["minio"]
diff --git a/Dockerfile.release b/Dockerfile.release
deleted file mode 100644
index fead6a5e9..000000000
--- a/Dockerfile.release
+++ /dev/null
@@ -1,73 +0,0 @@
-FROM golang:1.26.5-alpine AS build
-
-ARG TARGETARCH
-ARG RELEASE
-
-ENV GOPATH=/go
-ENV CGO_ENABLED=0
-
-WORKDIR /build
-
-# Install curl and minisign
-RUN apk add -U --no-cache ca-certificates && \
- apk add -U --no-cache curl && \
- apk add -U --no-cache bash && \
- go install aead.dev/minisign/cmd/minisign@v0.2.1
-
-# Download minio binary and signature files
-RUN curl -s -q https://dl.min.io/server/minio/release/linux-${TARGETARCH}/archive/minio.${RELEASE} -o /go/bin/minio && \
- curl -s -q https://dl.min.io/server/minio/release/linux-${TARGETARCH}/archive/minio.${RELEASE}.minisig -o /go/bin/minio.minisig && \
- curl -s -q https://dl.min.io/server/minio/release/linux-${TARGETARCH}/archive/minio.${RELEASE}.sha256sum -o /go/bin/minio.sha256sum && \
- chmod +x /go/bin/minio
-
-# Download mc binary and signature files
-RUN curl -s -q https://dl.min.io/client/mc/release/linux-${TARGETARCH}/mc -o /go/bin/mc && \
- curl -s -q https://dl.min.io/client/mc/release/linux-${TARGETARCH}/mc.minisig -o /go/bin/mc.minisig && \
- curl -s -q https://dl.min.io/client/mc/release/linux-${TARGETARCH}/mc.sha256sum -o /go/bin/mc.sha256sum && \
- chmod +x /go/bin/mc
-
-# Verify binary signature using public key "RWTx5Zr1tiHQLwG9keckT0c45M3AGeHD6IvimQHpyRywVWGbP1aVSGavRUN"
-RUN minisign -Vqm /go/bin/minio -x /go/bin/minio.minisig -P RWTx5Zr1tiHQLwG9keckT0c45M3AGeHD6IvimQHpyRywVWGbP1aVSGav && \
- minisign -Vqm /go/bin/mc -x /go/bin/mc.minisig -P RWTx5Zr1tiHQLwG9keckT0c45M3AGeHD6IvimQHpyRywVWGbP1aVSGav
-
-COPY dockerscripts/download-static-curl.sh /build/download-static-curl
-RUN chmod +x /build/download-static-curl && \
- /build/download-static-curl
-
-FROM registry.access.redhat.com/ubi9/ubi-micro:latest
-
-ARG RELEASE
-
-LABEL name="MinIO" \
- vendor="MinIO Inc " \
- maintainer="MinIO Inc " \
- version="${RELEASE}" \
- release="${RELEASE}" \
- summary="MinIO is a High Performance Object Storage, API compatible with Amazon S3 cloud storage service." \
- description="MinIO object storage is fundamentally different. Designed for performance and the S3 API, it is 100% open-source. MinIO is ideal for large, private cloud environments with stringent security requirements and delivers mission-critical availability across a diverse range of workloads."
-
-ENV MINIO_ACCESS_KEY_FILE=access_key \
- MINIO_SECRET_KEY_FILE=secret_key \
- MINIO_ROOT_USER_FILE=access_key \
- MINIO_ROOT_PASSWORD_FILE=secret_key \
- MINIO_KMS_SECRET_KEY_FILE=kms_master_key \
- MINIO_UPDATE_MINISIGN_PUBKEY="RWTx5Zr1tiHQLwG9keckT0c45M3AGeHD6IvimQHpyRywVWGbP1aVSGav" \
- MINIO_CONFIG_ENV_FILE=config.env \
- MC_CONFIG_DIR=/tmp/.mc
-
-RUN chmod -R 777 /usr/bin
-
-COPY --from=build /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
-COPY --from=build /go/bin/minio* /usr/bin/
-COPY --from=build /go/bin/mc* /usr/bin/
-COPY --from=build /go/bin/curl* /usr/bin/
-
-COPY CREDITS /licenses/CREDITS
-COPY LICENSE /licenses/LICENSE
-COPY dockerscripts/docker-entrypoint.sh /usr/bin/docker-entrypoint.sh
-
-EXPOSE 9000
-VOLUME ["/data"]
-
-ENTRYPOINT ["/usr/bin/docker-entrypoint.sh"]
-CMD ["minio"]
diff --git a/Dockerfile.release.old_cpu b/Dockerfile.release.old_cpu
deleted file mode 100644
index e2e2bb56e..000000000
--- a/Dockerfile.release.old_cpu
+++ /dev/null
@@ -1,71 +0,0 @@
-FROM golang:1.26.5-alpine AS build
-
-ARG TARGETARCH
-ARG RELEASE
-
-ENV GOPATH=/go
-ENV CGO_ENABLED=0
-
-# Install curl and minisign
-RUN apk add -U --no-cache ca-certificates && \
- apk add -U --no-cache curl && \
- go install aead.dev/minisign/cmd/minisign@v0.2.1
-
-# Download minio binary and signature files
-RUN curl -s -q https://dl.min.io/server/minio/release/linux-${TARGETARCH}/archive/minio.${RELEASE} -o /go/bin/minio && \
- curl -s -q https://dl.min.io/server/minio/release/linux-${TARGETARCH}/archive/minio.${RELEASE}.minisig -o /go/bin/minio.minisig && \
- curl -s -q https://dl.min.io/server/minio/release/linux-${TARGETARCH}/archive/minio.${RELEASE}.sha256sum -o /go/bin/minio.sha256sum && \
- chmod +x /go/bin/minio
-
-# Download mc binary and signature files
-RUN curl -s -q https://dl.min.io/client/mc/release/linux-${TARGETARCH}/mc -o /go/bin/mc && \
- curl -s -q https://dl.min.io/client/mc/release/linux-${TARGETARCH}/mc.minisig -o /go/bin/mc.minisig && \
- curl -s -q https://dl.min.io/client/mc/release/linux-${TARGETARCH}/mc.sha256sum -o /go/bin/mc.sha256sum && \
- chmod +x /go/bin/mc
-
-RUN if [ "$TARGETARCH" = "amd64" ]; then \
- curl -L -s -q https://github.com/moparisthebest/static-curl/releases/latest/download/curl-${TARGETARCH} -o /go/bin/curl; \
- chmod +x /go/bin/curl; \
- fi
-
-# Verify binary signature using public key "RWTx5Zr1tiHQLwG9keckT0c45M3AGeHD6IvimQHpyRywVWGbP1aVSGavRUN"
-RUN minisign -Vqm /go/bin/minio -x /go/bin/minio.minisig -P RWTx5Zr1tiHQLwG9keckT0c45M3AGeHD6IvimQHpyRywVWGbP1aVSGav && \
- minisign -Vqm /go/bin/mc -x /go/bin/mc.minisig -P RWTx5Zr1tiHQLwG9keckT0c45M3AGeHD6IvimQHpyRywVWGbP1aVSGav
-
-FROM registry.access.redhat.com/ubi8/ubi-micro:latest
-
-ARG RELEASE
-
-LABEL name="MinIO" \
- vendor="MinIO Inc " \
- maintainer="MinIO Inc " \
- version="${RELEASE}" \
- release="${RELEASE}" \
- summary="MinIO is a High Performance Object Storage, API compatible with Amazon S3 cloud storage service." \
- description="MinIO object storage is fundamentally different. Designed for performance and the S3 API, it is 100% open-source. MinIO is ideal for large, private cloud environments with stringent security requirements and delivers mission-critical availability across a diverse range of workloads."
-
-ENV MINIO_ACCESS_KEY_FILE=access_key \
- MINIO_SECRET_KEY_FILE=secret_key \
- MINIO_ROOT_USER_FILE=access_key \
- MINIO_ROOT_PASSWORD_FILE=secret_key \
- MINIO_KMS_SECRET_KEY_FILE=kms_master_key \
- MINIO_UPDATE_MINISIGN_PUBKEY="RWTx5Zr1tiHQLwG9keckT0c45M3AGeHD6IvimQHpyRywVWGbP1aVSGav" \
- MINIO_CONFIG_ENV_FILE=config.env \
- MC_CONFIG_DIR=/tmp/.mc
-
-RUN chmod -R 777 /usr/bin
-
-COPY --from=build /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
-COPY --from=build /go/bin/minio* /usr/bin/
-COPY --from=build /go/bin/mc* /usr/bin/
-COPY --from=build /go/bin/cur* /usr/bin/
-
-COPY CREDITS /licenses/CREDITS
-COPY LICENSE /licenses/LICENSE
-COPY dockerscripts/docker-entrypoint.sh /usr/bin/docker-entrypoint.sh
-
-EXPOSE 9000
-VOLUME ["/data"]
-
-ENTRYPOINT ["/usr/bin/docker-entrypoint.sh"]
-CMD ["minio"]
diff --git a/Dockerfile.scratch b/Dockerfile.scratch
deleted file mode 100644
index 8074aa15c..000000000
--- a/Dockerfile.scratch
+++ /dev/null
@@ -1,5 +0,0 @@
-FROM scratch
-
-COPY minio /minio
-
-CMD ["/minio"]
diff --git a/_config.yml b/_config.yml
deleted file mode 100644
index 2f7efbeab..000000000
--- a/_config.yml
+++ /dev/null
@@ -1 +0,0 @@
-theme: jekyll-theme-minimal
\ No newline at end of file
diff --git a/buildscripts/upgrade-tests/compose.yml b/buildscripts/upgrade-tests/compose.yml
deleted file mode 100644
index e820a6c53..000000000
--- a/buildscripts/upgrade-tests/compose.yml
+++ /dev/null
@@ -1,74 +0,0 @@
-# Settings and configurations that are common for all containers
-x-minio-common: &minio-common
- image: minio/minio:${MINIO_VERSION}
- command: server http://minio{1...4}/data{1...3}
- env_file:
- - ./minio.env
- expose:
- - "9000"
- - "9001"
-
-# starts 4 docker containers running minio server instances.
-# using nginx reverse proxy, load balancing, you can access
-# it through port 9000.
-services:
- minio1:
- <<: *minio-common
- hostname: minio1
- volumes:
- - data1-1:/data1
- - data1-2:/data2
- - data1-3:/data3
-
- minio2:
- <<: *minio-common
- hostname: minio2
- volumes:
- - data2-1:/data1
- - data2-2:/data2
- - data2-3:/data3
-
- minio3:
- <<: *minio-common
- hostname: minio3
- volumes:
- - data3-1:/data1
- - data3-2:/data2
- - data3-3:/data3
-
- minio4:
- <<: *minio-common
- hostname: minio4
- volumes:
- - data4-1:/data1
- - data4-2:/data2
- - data4-3:/data3
-
- nginx:
- image: nginx:1.19.2-alpine
- volumes:
- - ./nginx.conf:/etc/nginx/nginx.conf:ro
- ports:
- - "9000:9000"
- - "9001:9001"
- depends_on:
- - minio1
- - minio2
- - minio3
- - minio4
-
-## By default this config uses default local driver,
-## For custom volumes replace with volume driver configuration.
-volumes:
- data1-1:
- data1-2:
- data1-3:
- data2-1:
- data2-2:
- data2-3:
- data3-1:
- data3-2:
- data3-3:
- data4-1:
- data4-2:
- data4-3:
diff --git a/buildscripts/upgrade-tests/minio.env b/buildscripts/upgrade-tests/minio.env
deleted file mode 100644
index a957766f9..000000000
--- a/buildscripts/upgrade-tests/minio.env
+++ /dev/null
@@ -1,3 +0,0 @@
-MINIO_ACCESS_KEY=minioadmin
-MINIO_SECRET_KEY=minioadmin
-MINIO_BROWSER=off
diff --git a/buildscripts/upgrade-tests/nginx.conf b/buildscripts/upgrade-tests/nginx.conf
deleted file mode 100644
index 0c46dc920..000000000
--- a/buildscripts/upgrade-tests/nginx.conf
+++ /dev/null
@@ -1,68 +0,0 @@
-user nginx;
-worker_processes auto;
-
-error_log /var/log/nginx/error.log warn;
-pid /var/run/nginx.pid;
-
-
-events {
- worker_connections 1024;
-}
-
-
-http {
- include /etc/nginx/mime.types;
- default_type application/octet-stream;
-
- log_format main '$remote_addr - $remote_user [$time_local] "$request" '
- '$status $body_bytes_sent "$http_referer" '
- '"$http_user_agent" "$http_x_forwarded_for"';
-
- access_log /var/log/nginx/access.log main;
-
- sendfile on;
- #tcp_nopush on;
-
- keepalive_timeout 65;
-
- #gzip on;
-
- # include /etc/nginx/conf.d/*.conf;
-
- upstream minio {
- server minio1:9000;
- server minio2:9000;
- server minio3:9000;
- server minio4:9000;
- }
-
- # main minio
- server {
- listen 9000;
- listen [::]:9000;
- server_name localhost;
-
- # To allow special characters in headers
- ignore_invalid_headers off;
- # Allow any size file to be uploaded.
- # Set to a value such as 1000m; to restrict file size to a specific value
- client_max_body_size 0;
- # To disable buffering
- proxy_buffering off;
-
- location / {
- proxy_set_header Host $http_host;
- proxy_set_header X-Real-IP $remote_addr;
- proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
- proxy_set_header X-Forwarded-Proto $scheme;
-
- proxy_connect_timeout 300;
- # Default is HTTP/1, keepalive is only enabled in HTTP/1.1
- proxy_http_version 1.1;
- proxy_set_header Connection "";
- chunked_transfer_encoding off;
-
- proxy_pass http://minio;
- }
- }
-}
diff --git a/docker-buildx.sh b/docker-buildx.sh
deleted file mode 100755
index 84acf7a53..000000000
--- a/docker-buildx.sh
+++ /dev/null
@@ -1,69 +0,0 @@
-#!/bin/bash
-
-set -ex
-
-function _init() {
- ## All binaries are static make sure to disable CGO.
- export CGO_ENABLED=0
- export CRED_DIR="/media/${USER}/minio"
-
- ## List of architectures and OS to test coss compilation.
- SUPPORTED_OSARCH="linux/ppc64le linux/amd64 linux/arm64"
-
- remote=$(git remote get-url upstream)
- if test "$remote" != "git@github.com:minio/minio.git"; then
- echo "Script requires that the 'upstream' remote is set to git@github.com:minio/minio.git"
- exit 1
- fi
-
- git remote update upstream && git checkout master && git rebase upstream/master
-
- release=$(git describe --abbrev=0 --tags)
- export release
-}
-
-function _build() {
- local osarch=$1
- IFS=/ read -r -a arr <<<"$osarch"
- os="${arr[0]}"
- arch="${arr[1]}"
- package=$(go list -f '{{.ImportPath}}')
- printf -- "--> %15s:%s\n" "${osarch}" "${package}"
-
- # go build -trimpath to build the binary.
- export GOOS=$os
- export GOARCH=$arch
- export MINIO_RELEASE=RELEASE
- LDFLAGS=$(go run buildscripts/gen-ldflags.go)
- go build -tags kqueue -trimpath --ldflags "${LDFLAGS}" -o ./minio-${arch}.${release}
- minisign -qQSm ./minio-${arch}.${release} -s "$CRED_DIR/minisign.key" <"$CRED_DIR/minisign-passphrase"
-
- sha256sum_str=$(sha256sum <./minio-${arch}.${release})
- rc=$?
- if [ "$rc" -ne 0 ]; then
- abort "unable to generate sha256sum for ${1}"
- fi
- echo "${sha256sum_str// -/minio.${release}}" >./minio-${arch}.${release}.sha256sum
-}
-
-function main() {
- echo "Testing builds for OS/Arch: ${SUPPORTED_OSARCH}"
- for each_osarch in ${SUPPORTED_OSARCH}; do
- _build "${each_osarch}"
- done
-
- sudo sysctl net.ipv6.conf.all.disable_ipv6=0
-
- docker buildx build --push --no-cache \
- --build-arg RELEASE="${release}" \
- -t "registry.min.dev/community/minio:latest" \
- -t "registry.min.dev/community/minio:${release}" \
- --platform=linux/arm64,linux/amd64,linux/ppc64le \
- -f Dockerfile .
-
- docker buildx prune -f
-
- sudo sysctl net.ipv6.conf.all.disable_ipv6=0
-}
-
-_init && main "$@"
diff --git a/docs/federation/lookup/bucket-lookup.png b/docs/federation/lookup/bucket-lookup.png
deleted file mode 100644
index b2b60d1bf..000000000
Binary files a/docs/federation/lookup/bucket-lookup.png and /dev/null differ
diff --git a/docs/hotfixes.md b/docs/hotfixes.md
deleted file mode 100644
index d516ce93f..000000000
--- a/docs/hotfixes.md
+++ /dev/null
@@ -1,137 +0,0 @@
-# Introduction
-
-This document outlines how to make hotfix binaries and containers for MinIO?. The main focus in this article is about how to backport patches to a specific branch and finally building binaries/containers.
-
-## Pre-pre requisite
-
-- A working knowledge of MinIO codebase and its various components.
-- A working knowledge of AWS S3 API behaviors and corner cases.
-
-## Pre-requisite for backporting any fixes
-
-Fixes that are allowed a backport must satisfy any of the following criteria's:
-
-- A fix must not be a feature, for example.
-
-```
-commit faf013ec84051b92ae0f420a658b8d35bb7bb000
-Author: Klaus Post
-Date: Thu Nov 18 12:15:22 2021 -0800
-
- Improve performance on multiple versions (#13573)
-```
-
-- A fix must be a valid fix that was reproduced and seen in a customer environment, for example.
-
-```
-commit 886262e58af77ebc7c836ef587c08544e9a0c271
-Author: Harshavardhana
-Date: Wed Nov 17 15:49:12 2021 -0800
-
- heal legacy objects when versioning is enabled after upgrade (#13671)
-```
-
-- A security fix must be backported if a customer is affected by it, we have a mechanism in SUBNET to send out notifications to affected customers in such situations, this is a mandatory requirement.
-
-```
-commit 99bf4d0c429f04dbd013ba98840d07b759ae1702 (tag: RELEASE.2019-06-15T23-07-18Z)
-Author: Harshavardhana
-Date: Sat Jun 15 11:27:17 2019 -0700
-
- [security] Match ${aws:username} exactly instead of prefix match (#7791)
-
- This PR fixes a security issue where an IAM user based
- on his policy is granted more privileges than restricted
- by the users IAM policy.
-
- This is due to an issue of prefix based Matcher() function
- which was incorrectly matching prefix based on resource
- prefixes instead of exact match.
-```
-
-- There is always a possibility of a fix that is new, it is advised that the developer must make sure that the fix is sent upstream, reviewed and merged to the master branch.
-
-## Creating a hotfix branch
-
-Customers in MinIO are allowed LTS on any release they choose to standardize. Production setups seldom change and require maintenance. Hotfix branches are such maintenance branches that allow customers to operate a production cluster without drastic changes to their deployment.
-
-## Backporting a fix
-
-Developer is advised to clone the MinIO source and checkout the MinIO release tag customer is currently on.
-
-```
-λ git checkout RELEASE.2021-04-22T15-44-28Z
-```
-
-Create a branch and proceed to push the branch **upstream**
-> (upstream here points to git@github.com:pgsty/minio.git)
-
-```
-λ git branch -m RELEASE.2021-04-22T15-44-28Z.hotfix
-λ git push -u upstream RELEASE.2021-04-22T15-44-28Z.hotfix
-```
-
-Pick the relevant commit-id say for example commit-id from the master branch
-
-```
-commit 4f3317effea38c203c358af9cb5ce3c0e4173976
-Author: Klaus Post
-Date: Mon Nov 8 08:41:27 2021 -0800
-
- Close stream on panic (#13605)
-
- Always close streamHTTPResponse on panic on main thread to avoid
- write/flush after response handler has returned.
-```
-
-```
-λ git cherry-pick 4f3317effea38c203c358af9cb5ce3c0e4173976
-```
-
-*A self contained **patch** usually applies fine on the hotfix branch during backports as long it is self contained. There are situations however this may lead to conflicts and the patch will not cleanly apply. Conflicts might be trivial which can be resolved easily, when conflicts seem to be non-trivial or touches the part of the code-base the developer is not confident - to get additional clarity reach out to #hack on MinIOHQ slack channel. Hasty changes must be avoided, minor fixes and logs may be added to hotfix branches but this should not be followed as practice.*
-
-Once the **patch** is successfully applied, developer must run tests to validate the fix that was backported by running following tests, locally.
-
-Unit tests
-
-```
-λ make test
-```
-
-Verify different type of MinIO deployments work
-
-```
-λ make verify
-```
-
-Verify if healing and replacing a drive works
-
-```
-λ make verify-healing
-```
-
-At this point in time the backport is ready to be submitted as a pull request to the relevant branch. A pull request is recommended to ensure [mint](http://github.com/minio/mint) tests are validated. Pull request also ensures code-reviews for the backports in case of any unforeseen regressions.
-
-### Building a hotfix binary and container
-
-To add a hotfix tag to the binary version and embed the relevant `commit-id` following build helpers are available
-
-#### Builds the hotfix binary and uploads to https;//dl.min.io
-
-```
-λ CRED_DIR=/media/builder/minio make hotfix-push
-```
-
-#### Builds the hotfix container and pushes to docker.io/minio/minio
-
-```
-λ CRED_DIR=/media/builder/minio make docker-hotfix-push
-```
-
-#### Builds the hotfix container and pushes to registry.min.dev//minio
-
-```
-λ REPO="registry.min.dev/" CRED_DIR=/media/builder/minio make docker-hotfix-push
-```
-
-Once this has been provided to the customer relevant binary will be uploaded from our *release server* securely, directly to
diff --git a/docs/metrics/prometheus/grafana/bucket/grafana-bucket.png b/docs/metrics/prometheus/grafana/bucket/grafana-bucket.png
deleted file mode 100644
index 55c257079..000000000
Binary files a/docs/metrics/prometheus/grafana/bucket/grafana-bucket.png and /dev/null differ
diff --git a/docs/metrics/prometheus/grafana/grafana-minio.png b/docs/metrics/prometheus/grafana/grafana-minio.png
deleted file mode 100644
index 6e48f6ef7..000000000
Binary files a/docs/metrics/prometheus/grafana/grafana-minio.png and /dev/null differ
diff --git a/docs/metrics/prometheus/grafana/node/grafana-node.png b/docs/metrics/prometheus/grafana/node/grafana-node.png
deleted file mode 100644
index 4b12d5417..000000000
Binary files a/docs/metrics/prometheus/grafana/node/grafana-node.png and /dev/null differ
diff --git a/docs/metrics/prometheus/grafana/replication/grafana-replication-cluster.png b/docs/metrics/prometheus/grafana/replication/grafana-replication-cluster.png
deleted file mode 100644
index 0899664c1..000000000
Binary files a/docs/metrics/prometheus/grafana/replication/grafana-replication-cluster.png and /dev/null differ
diff --git a/docs/metrics/prometheus/grafana/replication/grafana-replication-node.png b/docs/metrics/prometheus/grafana/replication/grafana-replication-node.png
deleted file mode 100644
index 2758631b1..000000000
Binary files a/docs/metrics/prometheus/grafana/replication/grafana-replication-node.png and /dev/null differ
diff --git a/docs/screenshots/Architecture-diagram_distributed_16.jpg b/docs/screenshots/Architecture-diagram_distributed_16.jpg
deleted file mode 100644
index 49eb5400f..000000000
Binary files a/docs/screenshots/Architecture-diagram_distributed_16.jpg and /dev/null differ
diff --git a/docs/screenshots/Architecture-diagram_distributed_16.png b/docs/screenshots/Architecture-diagram_distributed_16.png
deleted file mode 100644
index dc8445952..000000000
Binary files a/docs/screenshots/Architecture-diagram_distributed_16.png and /dev/null differ
diff --git a/docs/screenshots/Architecture-diagram_distributed_16.svg b/docs/screenshots/Architecture-diagram_distributed_16.svg
deleted file mode 100644
index 6fbb1ace9..000000000
--- a/docs/screenshots/Architecture-diagram_distributed_16.svg
+++ /dev/null
@@ -1,1063 +0,0 @@
-
-
-
diff --git a/docs/screenshots/Architecture-diagram_distributed_8.jpg b/docs/screenshots/Architecture-diagram_distributed_8.jpg
deleted file mode 100644
index 9dcfcaa10..000000000
Binary files a/docs/screenshots/Architecture-diagram_distributed_8.jpg and /dev/null differ
diff --git a/docs/screenshots/Architecture-diagram_distributed_8.png b/docs/screenshots/Architecture-diagram_distributed_8.png
deleted file mode 100644
index cff2f1df4..000000000
Binary files a/docs/screenshots/Architecture-diagram_distributed_8.png and /dev/null differ
diff --git a/docs/screenshots/Architecture-diagram_distributed_8.svg b/docs/screenshots/Architecture-diagram_distributed_8.svg
deleted file mode 100644
index 7dfbf7f2f..000000000
--- a/docs/screenshots/Architecture-diagram_distributed_8.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/docs/screenshots/Architecture-diagram_distributed_nm.png b/docs/screenshots/Architecture-diagram_distributed_nm.png
deleted file mode 100644
index 0ba9284e6..000000000
Binary files a/docs/screenshots/Architecture-diagram_distributed_nm.png and /dev/null differ
diff --git a/docs/screenshots/Example-1.jpg b/docs/screenshots/Example-1.jpg
deleted file mode 100644
index f46a7d216..000000000
Binary files a/docs/screenshots/Example-1.jpg and /dev/null differ
diff --git a/docs/screenshots/Example-1.png b/docs/screenshots/Example-1.png
deleted file mode 100644
index 7408107d6..000000000
Binary files a/docs/screenshots/Example-1.png and /dev/null differ
diff --git a/docs/screenshots/Example-2.jpg b/docs/screenshots/Example-2.jpg
deleted file mode 100644
index 838f5c88d..000000000
Binary files a/docs/screenshots/Example-2.jpg and /dev/null differ
diff --git a/docs/screenshots/Example-2.png b/docs/screenshots/Example-2.png
deleted file mode 100644
index 02e98adf7..000000000
Binary files a/docs/screenshots/Example-2.png and /dev/null differ
diff --git a/docs/screenshots/Example-3.jpg b/docs/screenshots/Example-3.jpg
deleted file mode 100644
index e0394cffa..000000000
Binary files a/docs/screenshots/Example-3.jpg and /dev/null differ
diff --git a/docs/screenshots/Example-3.png b/docs/screenshots/Example-3.png
deleted file mode 100644
index 581886bb4..000000000
Binary files a/docs/screenshots/Example-3.png and /dev/null differ
diff --git a/docs/screenshots/Minio_Cloud_Native_Arch.jpg b/docs/screenshots/Minio_Cloud_Native_Arch.jpg
deleted file mode 100644
index c4ca5ceb1..000000000
Binary files a/docs/screenshots/Minio_Cloud_Native_Arch.jpg and /dev/null differ
diff --git a/docs/screenshots/Minio_Cloud_Native_Arch.png b/docs/screenshots/Minio_Cloud_Native_Arch.png
deleted file mode 100644
index d2946f49a..000000000
Binary files a/docs/screenshots/Minio_Cloud_Native_Arch.png and /dev/null differ
diff --git a/docs/screenshots/Minio_Cloud_Native_Arch.svg b/docs/screenshots/Minio_Cloud_Native_Arch.svg
deleted file mode 100644
index c5e075d1f..000000000
--- a/docs/screenshots/Minio_Cloud_Native_Arch.svg
+++ /dev/null
@@ -1,583 +0,0 @@
-
-
-
diff --git a/docs/screenshots/pic1.png b/docs/screenshots/pic1.png
deleted file mode 100644
index 4ba49cbaf..000000000
Binary files a/docs/screenshots/pic1.png and /dev/null differ
diff --git a/docs/screenshots/pic2.png b/docs/screenshots/pic2.png
deleted file mode 100644
index 990658921..000000000
Binary files a/docs/screenshots/pic2.png and /dev/null differ
diff --git a/helm-reindex.sh b/helm-reindex.sh
deleted file mode 100755
index 424533665..000000000
--- a/helm-reindex.sh
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/bash
-
-helm package helm/minio -d helm-releases/
-
-helm repo index --merge index.yaml --url https://charts.min.io .
diff --git a/helm-releases/minio-1.0.0.tgz b/helm-releases/minio-1.0.0.tgz
deleted file mode 100644
index f88132a6b..000000000
Binary files a/helm-releases/minio-1.0.0.tgz and /dev/null differ
diff --git a/helm-releases/minio-1.0.1.tgz b/helm-releases/minio-1.0.1.tgz
deleted file mode 100644
index 04ad8e0f6..000000000
Binary files a/helm-releases/minio-1.0.1.tgz and /dev/null differ
diff --git a/helm-releases/minio-1.0.2.tgz b/helm-releases/minio-1.0.2.tgz
deleted file mode 100644
index c629174d7..000000000
Binary files a/helm-releases/minio-1.0.2.tgz and /dev/null differ
diff --git a/helm-releases/minio-1.0.3.tgz b/helm-releases/minio-1.0.3.tgz
deleted file mode 100644
index bac160023..000000000
Binary files a/helm-releases/minio-1.0.3.tgz and /dev/null differ
diff --git a/helm-releases/minio-1.0.4.tgz b/helm-releases/minio-1.0.4.tgz
deleted file mode 100644
index 4cbbc13bd..000000000
Binary files a/helm-releases/minio-1.0.4.tgz and /dev/null differ
diff --git a/helm-releases/minio-1.0.5.tgz b/helm-releases/minio-1.0.5.tgz
deleted file mode 100644
index b0c6af748..000000000
Binary files a/helm-releases/minio-1.0.5.tgz and /dev/null differ
diff --git a/helm-releases/minio-2.0.0.tgz b/helm-releases/minio-2.0.0.tgz
deleted file mode 100644
index fcf5e7a09..000000000
Binary files a/helm-releases/minio-2.0.0.tgz and /dev/null differ
diff --git a/helm-releases/minio-2.0.1.tgz b/helm-releases/minio-2.0.1.tgz
deleted file mode 100644
index 7b5d106db..000000000
Binary files a/helm-releases/minio-2.0.1.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.0.0.tgz b/helm-releases/minio-3.0.0.tgz
deleted file mode 100644
index 4722915bb..000000000
Binary files a/helm-releases/minio-3.0.0.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.0.1.tgz b/helm-releases/minio-3.0.1.tgz
deleted file mode 100644
index 27ab069aa..000000000
Binary files a/helm-releases/minio-3.0.1.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.0.2.tgz b/helm-releases/minio-3.0.2.tgz
deleted file mode 100644
index c37f86d55..000000000
Binary files a/helm-releases/minio-3.0.2.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.1.0.tgz b/helm-releases/minio-3.1.0.tgz
deleted file mode 100644
index 6d8941de3..000000000
Binary files a/helm-releases/minio-3.1.0.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.1.1.tgz b/helm-releases/minio-3.1.1.tgz
deleted file mode 100644
index 1b3c49e07..000000000
Binary files a/helm-releases/minio-3.1.1.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.1.2.tgz b/helm-releases/minio-3.1.2.tgz
deleted file mode 100644
index 269df4ec7..000000000
Binary files a/helm-releases/minio-3.1.2.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.1.3.tgz b/helm-releases/minio-3.1.3.tgz
deleted file mode 100644
index e6fde51f9..000000000
Binary files a/helm-releases/minio-3.1.3.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.1.4.tgz b/helm-releases/minio-3.1.4.tgz
deleted file mode 100644
index 186ff7b67..000000000
Binary files a/helm-releases/minio-3.1.4.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.1.5.tgz b/helm-releases/minio-3.1.5.tgz
deleted file mode 100644
index e3af75fde..000000000
Binary files a/helm-releases/minio-3.1.5.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.1.6.tgz b/helm-releases/minio-3.1.6.tgz
deleted file mode 100644
index d136d6176..000000000
Binary files a/helm-releases/minio-3.1.6.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.1.7.tgz b/helm-releases/minio-3.1.7.tgz
deleted file mode 100644
index 0344582dc..000000000
Binary files a/helm-releases/minio-3.1.7.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.1.8.tgz b/helm-releases/minio-3.1.8.tgz
deleted file mode 100644
index 58d127a7a..000000000
Binary files a/helm-releases/minio-3.1.8.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.1.9.tgz b/helm-releases/minio-3.1.9.tgz
deleted file mode 100644
index d7926051e..000000000
Binary files a/helm-releases/minio-3.1.9.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.2.0.tgz b/helm-releases/minio-3.2.0.tgz
deleted file mode 100644
index cc311916c..000000000
Binary files a/helm-releases/minio-3.2.0.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.3.0.tgz b/helm-releases/minio-3.3.0.tgz
deleted file mode 100644
index 34db95c83..000000000
Binary files a/helm-releases/minio-3.3.0.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.3.1.tgz b/helm-releases/minio-3.3.1.tgz
deleted file mode 100644
index b4602bb9c..000000000
Binary files a/helm-releases/minio-3.3.1.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.3.2.tgz b/helm-releases/minio-3.3.2.tgz
deleted file mode 100644
index aa8389bc4..000000000
Binary files a/helm-releases/minio-3.3.2.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.3.3.tgz b/helm-releases/minio-3.3.3.tgz
deleted file mode 100644
index ebcab4377..000000000
Binary files a/helm-releases/minio-3.3.3.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.3.4.tgz b/helm-releases/minio-3.3.4.tgz
deleted file mode 100644
index 009557d61..000000000
Binary files a/helm-releases/minio-3.3.4.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.4.0.tgz b/helm-releases/minio-3.4.0.tgz
deleted file mode 100644
index 0520d55e3..000000000
Binary files a/helm-releases/minio-3.4.0.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.4.1.tgz b/helm-releases/minio-3.4.1.tgz
deleted file mode 100644
index 18dff8648..000000000
Binary files a/helm-releases/minio-3.4.1.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.4.2.tgz b/helm-releases/minio-3.4.2.tgz
deleted file mode 100644
index 496b2becb..000000000
Binary files a/helm-releases/minio-3.4.2.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.4.3.tgz b/helm-releases/minio-3.4.3.tgz
deleted file mode 100644
index bd120f50d..000000000
Binary files a/helm-releases/minio-3.4.3.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.4.4.tgz b/helm-releases/minio-3.4.4.tgz
deleted file mode 100644
index 7a4d94626..000000000
Binary files a/helm-releases/minio-3.4.4.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.4.5.tgz b/helm-releases/minio-3.4.5.tgz
deleted file mode 100644
index 7d5a8126c..000000000
Binary files a/helm-releases/minio-3.4.5.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.4.6.tgz b/helm-releases/minio-3.4.6.tgz
deleted file mode 100644
index 4c8179c1e..000000000
Binary files a/helm-releases/minio-3.4.6.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.4.7.tgz b/helm-releases/minio-3.4.7.tgz
deleted file mode 100644
index a33e87915..000000000
Binary files a/helm-releases/minio-3.4.7.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.4.8.tgz b/helm-releases/minio-3.4.8.tgz
deleted file mode 100644
index e3156c676..000000000
Binary files a/helm-releases/minio-3.4.8.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.5.0.tgz b/helm-releases/minio-3.5.0.tgz
deleted file mode 100644
index b606d7050..000000000
Binary files a/helm-releases/minio-3.5.0.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.5.1.tgz b/helm-releases/minio-3.5.1.tgz
deleted file mode 100644
index dda1c6b1e..000000000
Binary files a/helm-releases/minio-3.5.1.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.5.2.tgz b/helm-releases/minio-3.5.2.tgz
deleted file mode 100644
index 502fa30c2..000000000
Binary files a/helm-releases/minio-3.5.2.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.5.3.tgz b/helm-releases/minio-3.5.3.tgz
deleted file mode 100644
index e0ead3c17..000000000
Binary files a/helm-releases/minio-3.5.3.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.5.4.tgz b/helm-releases/minio-3.5.4.tgz
deleted file mode 100644
index 214e705e1..000000000
Binary files a/helm-releases/minio-3.5.4.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.5.5.tgz b/helm-releases/minio-3.5.5.tgz
deleted file mode 100644
index 35f97126d..000000000
Binary files a/helm-releases/minio-3.5.5.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.5.6.tgz b/helm-releases/minio-3.5.6.tgz
deleted file mode 100644
index 970de3ea4..000000000
Binary files a/helm-releases/minio-3.5.6.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.5.7.tgz b/helm-releases/minio-3.5.7.tgz
deleted file mode 100644
index 05a48404e..000000000
Binary files a/helm-releases/minio-3.5.7.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.5.8.tgz b/helm-releases/minio-3.5.8.tgz
deleted file mode 100644
index ec8c7ae96..000000000
Binary files a/helm-releases/minio-3.5.8.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.5.9.tgz b/helm-releases/minio-3.5.9.tgz
deleted file mode 100644
index 36838a1a5..000000000
Binary files a/helm-releases/minio-3.5.9.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.6.0.tgz b/helm-releases/minio-3.6.0.tgz
deleted file mode 100644
index 9eb9e69c6..000000000
Binary files a/helm-releases/minio-3.6.0.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.6.1.tgz b/helm-releases/minio-3.6.1.tgz
deleted file mode 100644
index fca222146..000000000
Binary files a/helm-releases/minio-3.6.1.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.6.2.tgz b/helm-releases/minio-3.6.2.tgz
deleted file mode 100644
index be850146c..000000000
Binary files a/helm-releases/minio-3.6.2.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.6.3.tgz b/helm-releases/minio-3.6.3.tgz
deleted file mode 100644
index 9829d32cd..000000000
Binary files a/helm-releases/minio-3.6.3.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.6.4.tgz b/helm-releases/minio-3.6.4.tgz
deleted file mode 100644
index f966f6463..000000000
Binary files a/helm-releases/minio-3.6.4.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.6.5.tgz b/helm-releases/minio-3.6.5.tgz
deleted file mode 100644
index d54d40c40..000000000
Binary files a/helm-releases/minio-3.6.5.tgz and /dev/null differ
diff --git a/helm-releases/minio-3.6.6.tgz b/helm-releases/minio-3.6.6.tgz
deleted file mode 100644
index 9e04eb3d1..000000000
Binary files a/helm-releases/minio-3.6.6.tgz and /dev/null differ
diff --git a/helm-releases/minio-4.0.0.tgz b/helm-releases/minio-4.0.0.tgz
deleted file mode 100644
index f231aaf6d..000000000
Binary files a/helm-releases/minio-4.0.0.tgz and /dev/null differ
diff --git a/helm-releases/minio-4.0.1.tgz b/helm-releases/minio-4.0.1.tgz
deleted file mode 100644
index 3da38fb25..000000000
Binary files a/helm-releases/minio-4.0.1.tgz and /dev/null differ
diff --git a/helm-releases/minio-4.0.10.tgz b/helm-releases/minio-4.0.10.tgz
deleted file mode 100644
index 0ca1a8db7..000000000
Binary files a/helm-releases/minio-4.0.10.tgz and /dev/null differ
diff --git a/helm-releases/minio-4.0.11.tgz b/helm-releases/minio-4.0.11.tgz
deleted file mode 100644
index dec7a7c59..000000000
Binary files a/helm-releases/minio-4.0.11.tgz and /dev/null differ
diff --git a/helm-releases/minio-4.0.12.tgz b/helm-releases/minio-4.0.12.tgz
deleted file mode 100644
index 7ab04b43d..000000000
Binary files a/helm-releases/minio-4.0.12.tgz and /dev/null differ
diff --git a/helm-releases/minio-4.0.13.tgz b/helm-releases/minio-4.0.13.tgz
deleted file mode 100644
index 612769974..000000000
Binary files a/helm-releases/minio-4.0.13.tgz and /dev/null differ
diff --git a/helm-releases/minio-4.0.14.tgz b/helm-releases/minio-4.0.14.tgz
deleted file mode 100644
index 10faaba59..000000000
Binary files a/helm-releases/minio-4.0.14.tgz and /dev/null differ
diff --git a/helm-releases/minio-4.0.15.tgz b/helm-releases/minio-4.0.15.tgz
deleted file mode 100644
index 985d0bba1..000000000
Binary files a/helm-releases/minio-4.0.15.tgz and /dev/null differ
diff --git a/helm-releases/minio-4.0.2.tgz b/helm-releases/minio-4.0.2.tgz
deleted file mode 100644
index bb5a205e5..000000000
Binary files a/helm-releases/minio-4.0.2.tgz and /dev/null differ
diff --git a/helm-releases/minio-4.0.3.tgz b/helm-releases/minio-4.0.3.tgz
deleted file mode 100644
index cc57cc05a..000000000
Binary files a/helm-releases/minio-4.0.3.tgz and /dev/null differ
diff --git a/helm-releases/minio-4.0.4.tgz b/helm-releases/minio-4.0.4.tgz
deleted file mode 100644
index 35f8c2c6e..000000000
Binary files a/helm-releases/minio-4.0.4.tgz and /dev/null differ
diff --git a/helm-releases/minio-4.0.5.tgz b/helm-releases/minio-4.0.5.tgz
deleted file mode 100644
index 35ea5112b..000000000
Binary files a/helm-releases/minio-4.0.5.tgz and /dev/null differ
diff --git a/helm-releases/minio-4.0.6.tgz b/helm-releases/minio-4.0.6.tgz
deleted file mode 100644
index a6152b6d7..000000000
Binary files a/helm-releases/minio-4.0.6.tgz and /dev/null differ
diff --git a/helm-releases/minio-4.0.7.tgz b/helm-releases/minio-4.0.7.tgz
deleted file mode 100644
index 10b221c81..000000000
Binary files a/helm-releases/minio-4.0.7.tgz and /dev/null differ
diff --git a/helm-releases/minio-4.0.8.tgz b/helm-releases/minio-4.0.8.tgz
deleted file mode 100644
index ca11a5909..000000000
Binary files a/helm-releases/minio-4.0.8.tgz and /dev/null differ
diff --git a/helm-releases/minio-4.0.9.tgz b/helm-releases/minio-4.0.9.tgz
deleted file mode 100644
index d28cc7627..000000000
Binary files a/helm-releases/minio-4.0.9.tgz and /dev/null differ
diff --git a/helm-releases/minio-4.1.0.tgz b/helm-releases/minio-4.1.0.tgz
deleted file mode 100644
index 0911284bb..000000000
Binary files a/helm-releases/minio-4.1.0.tgz and /dev/null differ
diff --git a/helm-releases/minio-5.0.0.tgz b/helm-releases/minio-5.0.0.tgz
deleted file mode 100644
index 5e915a575..000000000
Binary files a/helm-releases/minio-5.0.0.tgz and /dev/null differ
diff --git a/helm-releases/minio-5.0.1.tgz b/helm-releases/minio-5.0.1.tgz
deleted file mode 100644
index fc6ba1012..000000000
Binary files a/helm-releases/minio-5.0.1.tgz and /dev/null differ
diff --git a/helm-releases/minio-5.0.10.tgz b/helm-releases/minio-5.0.10.tgz
deleted file mode 100644
index 1453f6356..000000000
Binary files a/helm-releases/minio-5.0.10.tgz and /dev/null differ
diff --git a/helm-releases/minio-5.0.11.tgz b/helm-releases/minio-5.0.11.tgz
deleted file mode 100644
index 1f7dc55dc..000000000
Binary files a/helm-releases/minio-5.0.11.tgz and /dev/null differ
diff --git a/helm-releases/minio-5.0.12.tgz b/helm-releases/minio-5.0.12.tgz
deleted file mode 100644
index f9f16d2c2..000000000
Binary files a/helm-releases/minio-5.0.12.tgz and /dev/null differ
diff --git a/helm-releases/minio-5.0.13.tgz b/helm-releases/minio-5.0.13.tgz
deleted file mode 100644
index 41ae11798..000000000
Binary files a/helm-releases/minio-5.0.13.tgz and /dev/null differ
diff --git a/helm-releases/minio-5.0.14.tgz b/helm-releases/minio-5.0.14.tgz
deleted file mode 100644
index 67cd85aae..000000000
Binary files a/helm-releases/minio-5.0.14.tgz and /dev/null differ
diff --git a/helm-releases/minio-5.0.15.tgz b/helm-releases/minio-5.0.15.tgz
deleted file mode 100644
index ee5e93736..000000000
Binary files a/helm-releases/minio-5.0.15.tgz and /dev/null differ
diff --git a/helm-releases/minio-5.0.2.tgz b/helm-releases/minio-5.0.2.tgz
deleted file mode 100644
index 26c15289e..000000000
Binary files a/helm-releases/minio-5.0.2.tgz and /dev/null differ
diff --git a/helm-releases/minio-5.0.3.tgz b/helm-releases/minio-5.0.3.tgz
deleted file mode 100644
index e0d5419c3..000000000
Binary files a/helm-releases/minio-5.0.3.tgz and /dev/null differ
diff --git a/helm-releases/minio-5.0.4.tgz b/helm-releases/minio-5.0.4.tgz
deleted file mode 100644
index bc8a77c83..000000000
Binary files a/helm-releases/minio-5.0.4.tgz and /dev/null differ
diff --git a/helm-releases/minio-5.0.5.tgz b/helm-releases/minio-5.0.5.tgz
deleted file mode 100644
index d286ae2cf..000000000
Binary files a/helm-releases/minio-5.0.5.tgz and /dev/null differ
diff --git a/helm-releases/minio-5.0.6.tgz b/helm-releases/minio-5.0.6.tgz
deleted file mode 100644
index 359d2acf5..000000000
Binary files a/helm-releases/minio-5.0.6.tgz and /dev/null differ
diff --git a/helm-releases/minio-5.0.7.tgz b/helm-releases/minio-5.0.7.tgz
deleted file mode 100644
index b4d81167c..000000000
Binary files a/helm-releases/minio-5.0.7.tgz and /dev/null differ
diff --git a/helm-releases/minio-5.0.8.tgz b/helm-releases/minio-5.0.8.tgz
deleted file mode 100644
index 02204b7f1..000000000
Binary files a/helm-releases/minio-5.0.8.tgz and /dev/null differ
diff --git a/helm-releases/minio-5.0.9.tgz b/helm-releases/minio-5.0.9.tgz
deleted file mode 100644
index 1e33e5f03..000000000
Binary files a/helm-releases/minio-5.0.9.tgz and /dev/null differ
diff --git a/helm-releases/minio-5.1.0.tgz b/helm-releases/minio-5.1.0.tgz
deleted file mode 100644
index 97fe39d33..000000000
Binary files a/helm-releases/minio-5.1.0.tgz and /dev/null differ
diff --git a/helm-releases/minio-5.2.0.tgz b/helm-releases/minio-5.2.0.tgz
deleted file mode 100644
index 92d60a609..000000000
Binary files a/helm-releases/minio-5.2.0.tgz and /dev/null differ
diff --git a/helm-releases/minio-5.3.0.tgz b/helm-releases/minio-5.3.0.tgz
deleted file mode 100644
index cac2baa52..000000000
Binary files a/helm-releases/minio-5.3.0.tgz and /dev/null differ
diff --git a/helm-releases/minio-5.4.0.tgz b/helm-releases/minio-5.4.0.tgz
deleted file mode 100644
index 22f8d733e..000000000
Binary files a/helm-releases/minio-5.4.0.tgz and /dev/null differ
diff --git a/index.yaml b/index.yaml
deleted file mode 100644
index 7d62f602f..000000000
--- a/index.yaml
+++ /dev/null
@@ -1,1968 +0,0 @@
-apiVersion: v1
-entries:
- minio:
- - apiVersion: v1
- appVersion: RELEASE.2024-12-18T13-15-44Z
- created: "2025-01-02T21:34:25.234658257-08:00"
- description: High Performance Object Storage
- digest: 25fa2740480d1ebc9e64340854a6c42d3a7bc39c2a77378da91b21f144faa9af
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: High Performance Object Storage
- digest: 5f927286767c285b925a3395e75b4f372367f83d2124395185e21dc7fd4ca177
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: High Performance Object Storage
- digest: 8ef4212d7d51be6c8192b3e91138a9ca918ca56142c42500028cfd3b80e0b2dd
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: High Performance Object Storage
- digest: 742d658c029616f0a977f255a27e806f2e3ef31f0d30467353a0882b5607001e
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 3a2d8e03ffdd98501026aa7561633c91d9871647f4b01d77b75a2ad9b72ee618
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 6c3656924fbad2cb17f810cd78f352f9b60626aaec64b837c96829095b215ad3
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 3c18f7381efe6d86497f952e6d5f59003ee5a009c54778ddea1ee8d3c7bed9c8
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 5318bc56c73a8f4539c3dd178f4d55c7f41bee4a25d7dc02ac6a5843eeee7976
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: cba44c8cddcda1fb5c082dce82004a39f53cc20677ab9698a6998f01efefd8db
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: a3d55b12f38a2049ddf3efe35b38b6dc4e59777452b72d18d5a82f3378deb9cd
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: cf98985e32675e4ce327304ea9ac61046a788b3d5190d6b501330f7803d41a11
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 034d68f85799f6693836975797f85a91842cf2d003a6c4ff401bd4ea4c946af6
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 3f935a310e1b5b873052629b66005c160356ca7b2bd394cb07b34dbaf9905e3f
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 82ef858ce483c2d736444792986cb36bd0fb4fc90a80b97fe30d7b2f2034d24a
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: fefeea10e4e525e45f82fb80a03900d34605ec432dd92f56d94eaf4fb1b98c41
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 6b305783c98b0b97ffab079ff4430094fd0ca6e98e82bb8153cb93033a1bf40f
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: bac89157c53b324aece263c294aa49f5c9b64f426b4b06c9bca3d72e77e244f2
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 935ce4f09366231b11d414d626f887fa6fa6024dd30a42e81e810ca1438d5904
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 3e952c5d737980b8ccdfb819021eafb4b4e8da226f764a1dc3de1ba63ceb1ffa
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 6215c800d84fd4c40e4fb4142645fc1c6a039c251776a3cc8c11a24b9e3b59c7
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 2d3d884490ea1127742f938bc9382844bae713caae08b3308f766f3c9000659a
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 6f16f2dbfed91ab81a7fae60b6ea32f554365bd27bf5fda55b64a0fa264f4252
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 35d89d8f49d53ea929466fb88ee26123431326033f1387e6b2d536a629c0a398
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 5b86937ca88d9f6046141fdc2b1cc54760435ed92d289cd0a115fa7148781d4e
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 2d9c227c0f46ea8bdef4d760c212156fd4c6623ddc5406779c569fe925527787
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 6caaffcb636e040cd7e8bc4883a1674a673757f4781c32d53b5ec0f41fea3944
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 841d87788fb094d6a7d8a91e91821fe1e847bc952e054c781fc93742d112e18a
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 6f1a78382df3215deac07495a5e7de7009a1153b4cf6cb565630652a69aec4cf
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: d11db37963636922cb778b6bc0ad2ca4724cb391ea7b785995ada52467d7dd83
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: ca775e08c84331bb5029d4d29867d30c16e2c62e897788eb432212a756e91e4e
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 06542b8f3d149d5908b15de9a8d6f8cf304af0213830be56dc315785d14f9ccd
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: dd2676362f067454a496cdd293609d0c904b08f521625af49f95402a024ba1f5
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: bab9ef192d4eda4c572ad0ce0cf551736c847f582d1837d6833ee10543c23167
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: c770bb9841c76576e4e8573f78b0ec33e0d729504c9667e67ad62d48df5ed64c
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 95835f4199d963e2a23a2493610b348e6f2ff8b71c1a648c4a3b84af9b7a83eb
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 55a088c403b056e1f055a97426aa11759c3d6cbad38face170fe6cbbec7d568f
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: f541237e24336ec3f7f45ae0d523fef694e3a2f9ef648c5b11c15734db6ba2b2
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: edc0c3dd6d5246a06b74ba16bb4aff80a6d7225dc9aecf064fd89a8af371b9c1
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 211e89f6b9eb0b9a3583abaa127be60e1f9717a098e6b2858cb9dc1cc50c1650
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 534a879d73b370a18b554b93d0930e1c115419619c4ce4ec7dbaae632acacf06
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 99508b20eb0083a567dcccaf9a6c237e09575ed1d70cd2e8333f89c472d13d75
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: b4cd25611ca322b1d23d23112fdfa6b068fd91eefe0b0663b88ff87ea4282495
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: d75b88162bfe54740a233bcecf87328bba2ae23d170bec3a35c828bc6fdc224c
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 22e53a1184a21a679bc7d8b94e955777f3506340fc29da5ab0cb6d729bdbde8d
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 6fda968d3fdfd60470c0055a4e1a3bd8e5aee9ad0af5ba2fb7b7b926fdc9e4a0
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 8e015369048a3a82bbd53ad36696786f18561c6b25d14eee9e2c93a7336cef46
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: cb3543fe748e5f0d59b3ccf4ab9af8e10b731405ae445d1f5715e30013632373
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: f2e359fa5eefffc59abb3d14a8fa94b11ddeaa99f6cd8dd5f40f4e04121000d6
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 529d56cca9d83a3d0e5672e63b6e87b5bcbe10a6b45f7a55ba998cceb32f9c81
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 3d530598f8ece67bec5b7f990d206584893987c713502f9228e4ee24b5535414
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 53937031348b29615f07fc4869b2d668391d8ba9084630a497abd7a7dea9dfb0
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 68d643414ff0d565716c5715034fcbf1af262e041915a5c02eb51ec1a65c1ea0
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: a3e855ed0f31233b989fffd775a29d6fbfa0590089010ff16783fd7f142ef6e7
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: b1b0ae3c54b4260a698753e11d7781bb8ddc67b7e3fbf0af82796e4cd4ef92a3
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: fecf25d2d3fb208c6f894fed642a60780a570b7f6d0adddde846af7236dc80aa
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: c78008caa5ce98f64c887630f59d0cbd481cb3f19a7d4e9d3e81bf4e1e45cadc
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 8f2e2691bf897f74ff094dd370ec56ba9d417e5e8926710c14c2ba346330238d
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: bacd140f0016fab35f516bde787da6449b3a960c071fad9e4b6563118033ac84
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 48a453ea5ffeef25933904caefd9470bfb26224dfc2d1096bd0031467ba53007
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 47ef4a930713b98f9438ceca913c6e700f85bb25dba5624b056486254b5f0c60
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: d6763f7e2ea66810bd55eb225579a9c3b968f9ae1256f45fd469362e55d846ff
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 2fb822c87216ba3fc2ae51a54a0a3e239aa560d86542991504a841cc2a2b9a37
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: fa8ba1aeb1a15316c6be8403416a5e6b5e6139b7166592087e7bddc9e6db5453
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: b9b0af9ca50b8d00868e1f1b989dca275829d9110af6de91bb9b3a398341e894
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: f8b22a5b8fe95a7ddf61b825e17d11c9345fb10e4c126b0d78381608aa300a08
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: c48d474f269427abe5ab446f00687d0625b3d1adfc5c73bdb4b21ca9e42853fb
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 7c3da39d9b0090cbf5efedf0cc163a1e2df05becc5152c3add8e837384690bc4
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 50d6590b4cc779c40f81cc13b1586fbe508aa7f3230036c760bfc5f4154fbce4
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 5b797b7208cd904c11a76cd72938c8652160cb5fcd7f09fa41e4e703e6d64054
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: e084ac4bb095f071e59f8f08bd092e4ab2404c1ddadacfdce7dbe248f1bafff8
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 2890430a8d9487d1fa5508c26776e4881d0086b2c052aa6bdc65c0e4423b9159
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 01a92196af6c47e3a01e1c68d7cf693a8bc487cba810c2cecff155071e4d6a11
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: e779d73f80b75f33b9c9d995ab10fa455c9c57ee575ebc54e06725a64cd04310
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 19de4bbc8a400f0c2a94c5e85fc25c9bfc666e773fb3e368dd621d5a57dd1c2a
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: f789d93a171296dd01af0105a5ce067c663597afbb2432faeda293b752b355c0
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: e2eb34d31560b012ef6581f0ff6004ea4376c968cbe0daed2d8f3a614a892afb
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 8d7e0cc46b3583abd71b97dc0c071f98321101f90eca17348f1e9e0831be64cd
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 50dcbf366b1b21f4a6fc429d0b884c0c7ff481d0fb95c5e9b3ae157c348dd124
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 6c01af55d2e2e5f716eabf6fef3a92a8464d0674529e9bacab292e5478a73b7a
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 18e10be4d0458bc590ca9abf753227e0c70f60511495387b8d4fb15a4daf932e
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: f5b6e7f6272a9e71aef3b75555f6f756a39eef65cb78873f26451dba79b19906
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 6d2ee1336c412affaaf209fdb80215be2a6ebb23ab2443adbaffef9e7df13fab
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - minio
- - storage
- - object-storage
- - s3
- - cluster
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 0a004aaf5bb61deed6a5c88256d1695ebe2f9ff1553874a93e4acfd75e8d339b
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - storage
- - object-storage
- - S3
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: fcd944e837ee481307de6aa3d387ea18c234f995a84c15abb211aab4a4054afc
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - storage
- - object-storage
- - S3
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 7b6c033d43a856479eb493ab8ca05b230f77c3e42e209e8f298fac6af1a9796f
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - storage
- - object-storage
- - S3
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: abd221245ace16c8e0c6c851cf262d1474a5219dcbf25c4b2e7b77142f9c59ed
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - storage
- - object-storage
- - S3
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: Multi-Cloud Object Storage
- digest: 922a333f5413d1042f7aa81929f43767f6ffca9b260c46713f04ce1dda86d57d
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - storage
- - object-storage
- - S3
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: High Performance, Kubernetes Native Object Storage
- digest: 10e22773506bbfb1c66442937956534cf4057b94f06a977db78b8cd223588388
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - storage
- - object-storage
- - S3
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: High Performance, Kubernetes Native Object Storage
- digest: ef86ab6df23d6942705da9ef70991b649638c51bc310587d37a425268ba4a06c
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - storage
- - object-storage
- - S3
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/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"
- description: High Performance, Kubernetes Native Object Storage
- digest: 1add7608692cbf39aaf9b1252530e566f7b2f306a14e390b0f49b97a20f2b188
- home: https://min.io
- icon: https://min.io/resources/img/logo/MINIO_wordmark.png
- keywords:
- - storage
- - object-storage
- - S3
- maintainers:
- - email: dev@minio.io
- name: MinIO, Inc
- name: minio
- sources:
- - https://github.com/minio/minio
- urls:
- - https://charts.min.io/helm-releases/minio-1.0.0.tgz
- version: 1.0.0
-generated: "2025-01-02T21:34:24.920106038-08:00"