From b69f777e5ae5b39d57ef5705af088ccb59a97e53 Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Mon, 4 Nov 2024 15:11:11 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7(helm)=20expose=20MinIO=20console?= =?UTF-8?q?=20via=20ingress?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add ingress configuration for MinIO web console access. Include Nginx proxy buffer annotations to support large file uploads through web interface. --- src/helm/helmfile.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/helm/helmfile.yaml b/src/helm/helmfile.yaml index e17bc48b..7347e54a 100644 --- a/src/helm/helmfile.yaml +++ b/src/helm/helmfile.yaml @@ -59,6 +59,13 @@ releases: buckets: - name: meet-media-storage versioning: true + - ingress: + enabled: true + hostname: minio-console.127.0.0.1.nip.io + servicePort: 9001 + annotations: + nginx.ingress.kubernetes.io/proxy-body-size: "0" + kubernetes.io/ingress.class: nginx - name: redis installed: {{ eq .Environment.Name "dev" | toYaml }}