this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(apps): deploy Minio

+33
+7
apps/minio/Chart.yaml
··· 1 + apiVersion: v2 2 + name: minio 3 + version: 0.0.0 4 + dependencies: 5 + - name: minio 6 + version: 4.0.2 7 + repository: https://charts.min.io
+26
apps/minio/values.yaml
··· 1 + minio: 2 + mode: standalone 3 + rootUser: admin 4 + ingress: 5 + enabled: true 6 + annotations: 7 + cert-manager.io/cluster-issuer: letsencrypt-prod 8 + hosts: 9 + - &host s3.minio.horus.khuedoan.com 10 + tls: 11 + - secretName: minio-tls-certificate 12 + hosts: 13 + - *host 14 + consoleIngress: 15 + enabled: true 16 + annotations: 17 + cert-manager.io/cluster-issuer: letsencrypt-prod 18 + hosts: 19 + - &consoleHost minio.horus.khuedoan.com 20 + tls: 21 + - secretName: minio-console-tls-certificate 22 + hosts: 23 + - *consoleHost 24 + persistence: 25 + enabled: true 26 + size: 32Gi