diff --git a/infra/minIO/console.yaml b/infra/minIO/console.yaml index 4e6a43a..b744eea 100644 --- a/infra/minIO/console.yaml +++ b/infra/minIO/console.yaml @@ -67,6 +67,13 @@ metadata: spec: rules: - host: minio.k8s.semprod.local + http: + paths: + - path: / + backend: + serviceName: minio-console + servicePort: 9090 + - host: buckets.semapp.de http: paths: - path: / diff --git a/infra/minIO/server.yaml b/infra/minIO/server.yaml index 66058fb..004a27e 100644 --- a/infra/minIO/server.yaml +++ b/infra/minIO/server.yaml @@ -37,8 +37,13 @@ spec: - mountPath: /data name: minio-pv env: - - name: MINIO_BROWSER_REDIRECT_URL - value: "http://minio.k8s.semprod.local/" + - name: MINIO_BROWSER_REDIRECT_URL + value: "http://minio.k8s.semprod.local/" + # Minio access key and secret key + - name: MINIO_ACCESS_KEY + value: "miniosuperueberadmin" + - name: MINIO_SECRET_KEY + value: "tJ3,sU1$hC7}tE3^xM6(eB9%aG1@cO2^" volumes: - name: minio-pv persistentVolumeClaim: @@ -58,7 +63,7 @@ spec: - ReadWriteOnce resources: requests: - storage: 2Gi + storage: 50Gi --- # Minio Service apiVersion: v1