From ae6f18fafb5233b55d9c14080c2e3b89307bf146 Mon Sep 17 00:00:00 2001 From: rjshrjndrn Date: Wed, 30 Mar 2022 13:40:25 +0200 Subject: [PATCH] chore(helm): databases make minio installation optional. Signed-off-by: rjshrjndrn --- scripts/helmcharts/databases/Chart.yaml | 4 ++++ scripts/helmcharts/databases/values.yaml | 3 +++ 2 files changed, 7 insertions(+) diff --git a/scripts/helmcharts/databases/Chart.yaml b/scripts/helmcharts/databases/Chart.yaml index 0aa62594a..24472a68f 100644 --- a/scripts/helmcharts/databases/Chart.yaml +++ b/scripts/helmcharts/databases/Chart.yaml @@ -40,3 +40,7 @@ dependencies: repository: file://charts/redis version: 12.10.1 condition: redis.enabled + - name: minio + repository: file://charts/minio + version: 3.7.14 + condition: minio.enabled diff --git a/scripts/helmcharts/databases/values.yaml b/scripts/helmcharts/databases/values.yaml index 6c7f28960..6b106e15a 100644 --- a/scripts/helmcharts/databases/values.yaml +++ b/scripts/helmcharts/databases/values.yaml @@ -99,6 +99,9 @@ redis: cpu: 100m memory: 128Mi +minio: + enabled: true + postgresql: # postgresqlPassword: asayerPostgres fullnameOverride: postgresql