From 418ab7bfc22ec86d9ec06507c30fb6ef74803670 Mon Sep 17 00:00:00 2001 From: Story Crater Bot <19826264+Riotpiaole@users.noreply.github.com> Date: Tue, 14 Jul 2026 14:26:25 -0700 Subject: [PATCH] Fix: minio-operator uses official MinIO Operator Helm chart --- k8s/argocd/apps/0-minio.yaml | 43 ++++++++++++++++++++++++++++++------ 1 file changed, 36 insertions(+), 7 deletions(-) diff --git a/k8s/argocd/apps/0-minio.yaml b/k8s/argocd/apps/0-minio.yaml index 141bbc9..eb1cb23 100644 --- a/k8s/argocd/apps/0-minio.yaml +++ b/k8s/argocd/apps/0-minio.yaml @@ -8,14 +8,43 @@ metadata: spec: project: homelab source: - repoURL: https://forgejo.riotpiao.homelab.com/riotpiao.com/homelab.git - targetRevision: main - path: k8s/storage - directory: - recurse: false + repoURL: https://operator.min.io + targetRevision: v5.0.0 + chart: operator helm: - valuesFiles: - - minio-operator-values.yaml + releaseName: minio-operator + values: | + operator: + image: + repository: minio/operator + tag: "v5.0.0" + pullPolicy: IfNotPresent + replicaCount: 1 + resources: + requests: + cpu: 100m + memory: 256Mi + limits: + cpu: 500m + memory: 512Mi + metrics: + enabled: true + port: 8080 + rbac: + create: true + console: + enabled: true + replicaCount: 1 + image: + repository: minio/console + tag: "v0.30.0" + resources: + requests: + cpu: 50m + memory: 128Mi + limits: + cpu: 200m + memory: 256Mi destination: server: https://kubernetes.default.svc namespace: minio-operator