From 5884072dcad28ee14828cc99e7eb82137fd8cf6b Mon Sep 17 00:00:00 2001 From: Vojtech Mares Date: Thu, 16 Nov 2023 21:32:28 +0100 Subject: [PATCH] feat: add minio-operator app --- apps/minio-operator.yaml | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 apps/minio-operator.yaml diff --git a/apps/minio-operator.yaml b/apps/minio-operator.yaml new file mode 100644 index 0000000..7a1678d --- /dev/null +++ b/apps/minio-operator.yaml @@ -0,0 +1,37 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: minio-operator + namespace: argocd + annotations: + argocd.argoproj.io/sync-wave: "10" +spec: + project: cluster-infrastructure + syncPolicy: + automated: + prune: true + selfHeal: true + syncOptions: + - CreateNamespace=true + source: + chart: operator + repoURL: https://operator.min.io + targetRevision: 5.0.10 + helm: + releaseName: minio-operator + valuesObject: + console: + replicaCount: 2 + ingress: + enabled: true + ingressClassName: nginx + annotations: + cert-manager.io/cluster-issuer: letsencrypt-prod + host: console.minio.ops.mareshq.com + tls: + - hosts: + - console.minio.ops.mareshq.com + secretName: minio-console-ingress-tls + destination: + server: "https://kubernetes.default.svc" + namespace: minio-operator