From d81f0ed8b8bf8fca3742772fe24f0da4bd15fbac Mon Sep 17 00:00:00 2001 From: "Cornelius A. Ludmann" Date: Thu, 17 Feb 2022 09:44:57 +0000 Subject: [PATCH] [installer] Add MINIO_SKIP_CLIENT=yes to minio This skips MinIO client configuration in the minio container. The client configuration leads to a crash loop on air-gap installations and since we don't use the minio client in Gitpod we simply skip the client configuration. /werft no-preview --- components/installer/third_party/charts/minio/values.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/components/installer/third_party/charts/minio/values.yaml b/components/installer/third_party/charts/minio/values.yaml index ee61f76b1ff161..5f4f7f7ba671e8 100644 --- a/components/installer/third_party/charts/minio/values.yaml +++ b/components/installer/third_party/charts/minio/values.yaml @@ -10,4 +10,7 @@ minio: resources: requests: # defaults to 4GB, set to 2GB to be able to start on smaller instances - memory: 2G \ No newline at end of file + memory: 2G + extraEnvVars: + - name: MINIO_SKIP_CLIENT + value: "yes"