Rebrand CI workflows: master→main, minio→hanzo, optimize publish pipeline

- Switch all 13 workflow branch triggers from master to main
- Replace quay.io/minio/minio with ghcr.io/hanzoai/s3 in all compose/workflow files
- Rebrand issue templates (MinIO → Hanzo, min.io → hanzo.ai)
- Update LDAP test config (MinIO Inc → Hanzo Inc, min.io → hanzo.ai)
- Add QEMU setup and concurrency group to publish workflow
- Fix dl.hanzo.space worker custom domain routing
This commit is contained in:
Hanzo Dev
2026-02-23 14:18:41 -08:00
parent 4d19e36d80
commit d145b35b54
25 changed files with 43 additions and 41 deletions
+2 -2
View File
@@ -8,9 +8,9 @@ assignees: ''
---
## NOTE
All GitHub issues are addressed on a best-effort basis at MinIO's sole discretion. There are no Service Level Agreements (SLA) or Objectives (SLO). Remember our [Code of Conduct](https://github.com/minio/minio/blob/master/code_of_conduct.md) when engaging with MinIO Engineers and the larger community.
All GitHub issues are addressed on a best-effort basis at Hanzo's sole discretion. There are no Service Level Agreements (SLA) or Objectives (SLO). Remember our [Code of Conduct](https://github.com/hanzoai/storage/blob/main/code_of_conduct.md) when engaging with Hanzo Engineers and the larger community.
For urgent issues (e.g. production down, etc.), subscribe to [SUBNET](https://min.io/pricing?jmp=github) for direct to engineering support.
For urgent issues (e.g. production down, etc.), visit [Hanzo Support](https://hanzo.ai/pricing) for direct to engineering support.
<!--- Provide a general summary of the issue in the Title above -->
+3 -5
View File
@@ -1,6 +1,6 @@
---
name: Bug report
about: Report a bug in MinIO (community edition is source-only)
about: Report a bug in Hanzo Storage
title: ''
labels: community, triage
assignees: ''
@@ -9,11 +9,9 @@ assignees: ''
## IMPORTANT NOTES
**Community Edition**: MinIO community edition is now source-only. Install via `go install github.com/minio/minio@latest`
**Feature Requests**: For feature requests and enterprise support, please visit [Hanzo Enterprise Support](https://hanzo.ai/pricing).
**Feature Requests**: We are no longer accepting feature requests for the community edition. For feature requests and enterprise support, please subscribe to [MinIO Enterprise Support](https://min.io/pricing).
**Urgent Issues**: If this case is urgent or affects production, please subscribe to [SUBNET](https://min.io/pricing) for 24/7 enterprise support.
**Urgent Issues**: If this case is urgent or affects production, please visit [Hanzo Support](https://hanzo.ai/pricing) for enterprise support.
<!--- Provide a general summary of the issue in the Title above -->
+5 -5
View File
@@ -1,8 +1,8 @@
blank_issues_enabled: false
contact_links:
- name: MinIO Community Support
url: https://slack.min.io
about: Community support via Slack - for questions and discussions
- name: MinIO Enterprise Support (SUBNET)
url: https://min.io/pricing
- name: Hanzo Community Support
url: https://hanzo.ai/discord
about: Community support via Discord - for questions and discussions
- name: Hanzo Enterprise Support
url: https://hanzo.ai/pricing
about: Enterprise support with SLA - for production deployments and feature requests
+1 -1
View File
@@ -3,7 +3,7 @@ name: Crosscompile
on:
pull_request:
branches:
- master
- main
# This ensures that previous jobs for the PR are canceled when the PR is
# updated.
+1 -1
View File
@@ -3,7 +3,7 @@ name: Healing Functional Tests
on:
pull_request:
branches:
- master
- main
# This ensures that previous jobs for the PR are canceled when the PR is
# updated.
+1 -1
View File
@@ -3,7 +3,7 @@ name: Linters and Tests
on:
pull_request:
branches:
- master
- main
# This ensures that previous jobs for the PR are canceled when the PR is
# updated.
+1 -1
View File
@@ -3,7 +3,7 @@ name: Resiliency Functional Tests
on:
pull_request:
branches:
- master
- main
# This ensures that previous jobs for the PR are canceled when the PR is
# updated.
+1 -1
View File
@@ -3,7 +3,7 @@ name: Functional Tests
on:
pull_request:
branches:
- master
- main
# This ensures that previous jobs for the PR are canceled when the PR is
# updated.
+1 -1
View File
@@ -3,7 +3,7 @@ name: Helm Chart linting
on:
pull_request:
branches:
- master
- main
# This ensures that previous jobs for the PR are canceled when the PR is
# updated.
+3 -3
View File
@@ -3,7 +3,7 @@ name: IAM integration
on:
pull_request:
branches:
- master
- main
# This ensures that previous jobs for the PR are canceled when the PR is
# updated.
@@ -26,8 +26,8 @@ jobs:
- "389:389"
- "636:636"
env:
LDAP_ORGANIZATION: "MinIO Inc"
LDAP_DOMAIN: "min.io"
LDAP_ORGANIZATION: "Hanzo Inc"
LDAP_DOMAIN: "hanzo.ai"
LDAP_ADMIN_PASSWORD: "admin"
etcd:
image: "quay.io/coreos/etcd:v3.5.1"
+1 -1
View File
@@ -14,5 +14,5 @@ jobs:
steps:
- uses: actions/add-to-project@v0.5.0
with:
project-url: https://github.com/orgs/miniohq/projects/2
project-url: https://github.com/orgs/hanzoai/projects/2
github-token: ${{ secrets.BOT_PAT }}
+3 -3
View File
@@ -3,7 +3,7 @@ name: Mint Tests
on:
pull_request:
branches:
- master
- main
# This ensures that previous jobs for the PR are canceled when the PR is
# updated.
@@ -37,7 +37,7 @@ jobs:
- name: build-minio
run: |
TAG="quay.io/minio/minio:${{ steps.vars.outputs.sha_short }}" make docker
TAG="ghcr.io/hanzoai/s3:${{ steps.vars.outputs.sha_short }}" make docker
- name: multipart uploads test
run: |
@@ -75,7 +75,7 @@ jobs:
docker volume rm ${volume} || true
done
docker rmi -f quay.io/minio/minio:${{ steps.vars.outputs.sha_short }}
docker rmi -f ghcr.io/hanzoai/s3:${{ steps.vars.outputs.sha_short }}
docker system prune -f || true
docker volume prune -f || true
docker volume rm $(docker volume ls -q -f dangling=true) || true
@@ -2,7 +2,7 @@ version: '3.7'
# Settings and configurations that are common for all containers
x-minio-common: &minio-common
image: quay.io/minio/minio:${JOB_NAME}
image: ghcr.io/hanzoai/s3:${JOB_NAME}
command: server --console-address ":9001" http://minio{1...4}/cdata{1...2}
expose:
- "9000"
+1 -1
View File
@@ -2,7 +2,7 @@ version: '3.7'
# Settings and configurations that are common for all containers
x-minio-common: &minio-common
image: quay.io/minio/minio:${JOB_NAME}
image: ghcr.io/hanzoai/s3:${JOB_NAME}
command: server --console-address ":9001" edata{1...4}
expose:
- "9000"
+1 -1
View File
@@ -2,7 +2,7 @@ version: '3.7'
# Settings and configurations that are common for all containers
x-minio-common: &minio-common
image: quay.io/minio/minio:${JOB_NAME}
image: ghcr.io/hanzoai/s3:${JOB_NAME}
command: server --console-address ":9001" http://minio{1...4}/pdata{1...2} http://minio{5...8}/pdata{1...2}
expose:
- "9000"
+1 -1
View File
@@ -2,7 +2,7 @@ version: '3.7'
# Settings and configurations that are common for all containers
x-minio-common: &minio-common
image: quay.io/minio/minio:${JOB_NAME}
image: ghcr.io/hanzoai/s3:${JOB_NAME}
command: server --console-address ":9001" http://minio{1...4}/rdata{1...2}
expose:
- "9000"
@@ -2,7 +2,7 @@ version: '3.7'
# Settings and configurations that are common for all containers
x-minio-common: &minio-common
image: quay.io/minio/minio:${RELEASE}
image: ghcr.io/hanzoai/s3:${RELEASE}
command: server http://site1-minio{1...4}/data{1...2}
environment:
- S3_PROMETHEUS_AUTH_TYPE=public
@@ -2,7 +2,7 @@ version: '3.7'
# Settings and configurations that are common for all containers
x-minio-common: &minio-common
image: quay.io/minio/minio:${RELEASE}
image: ghcr.io/hanzoai/s3:${RELEASE}
command: server http://site2-minio{1...4}/data{1...2}
environment:
- S3_PROMETHEUS_AUTH_TYPE=public
+7
View File
@@ -6,6 +6,10 @@ on:
tags: ['v*', 'RELEASE.*']
workflow_dispatch:
concurrency:
group: publish-${{ github.ref }}
cancel-in-progress: true
env:
REGISTRY: ghcr.io
@@ -23,6 +27,9 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
+1 -1
View File
@@ -3,7 +3,7 @@ name: MinIO advanced tests
on:
pull_request:
branches:
- master
- main
# This ensures that previous jobs for the PR are canceled when the PR is
# updated.
+1 -1
View File
@@ -3,7 +3,7 @@ name: Root lockdown tests
on:
pull_request:
branches:
- master
- main
# This ensures that previous jobs for the PR are canceled when the PR is
# updated.
+1 -1
View File
@@ -3,7 +3,7 @@ name: Shell formatting checks
on:
pull_request:
branches:
- master
- main
permissions:
contents: read
+1 -1
View File
@@ -3,7 +3,7 @@ name: Upgrade old version tests
on:
pull_request:
branches:
- master
- main
# This ensures that previous jobs for the PR are canceled when the PR is
# updated.
+2 -2
View File
@@ -2,11 +2,11 @@ name: VulnCheck
on:
pull_request:
branches:
- master
- main
push:
branches:
- master
- main
permissions:
contents: read # to fetch code (actions/checkout)
+1 -4
View File
@@ -4,8 +4,5 @@ compatibility_date = "2024-01-01"
[env.production]
routes = [
{ pattern = "dl.hanzo.space/*", zone_name = "hanzo.space" }
{ pattern = "dl.hanzo.space", custom_domain = true }
]
[[env.production.custom_domains]]
hostname = "dl.hanzo.space"