From e4a45a556c76798f2f82be9455dca37b5ad810e9 Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Mon, 16 Dec 2024 16:54:07 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B(backend)=20fix=20bucket=20access?= =?UTF-8?q?=20in=20the=20tilt=20stack?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit S3 username was desynchronized with the helmfile. Leading to error, when patching object or saving any update to the Minio bucket. @rouja fixed it. --- src/helm/env.d/dev/values.impress.yaml.gotmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helm/env.d/dev/values.impress.yaml.gotmpl b/src/helm/env.d/dev/values.impress.yaml.gotmpl index 7533f5a7..3b3ba93b 100644 --- a/src/helm/env.d/dev/values.impress.yaml.gotmpl +++ b/src/helm/env.d/dev/values.impress.yaml.gotmpl @@ -47,7 +47,7 @@ backend: POSTGRES_PASSWORD: pass REDIS_URL: redis://default:pass@redis-master:6379/1 AWS_S3_ENDPOINT_URL: http://minio.impress.svc.cluster.local:9000 - AWS_S3_ACCESS_KEY_ID: impress + AWS_S3_ACCESS_KEY_ID: root AWS_S3_SECRET_ACCESS_KEY: password AWS_STORAGE_BUCKET_NAME: impress-media-storage STORAGES_STATICFILES_BACKEND: django.contrib.staticfiles.storage.StaticFilesStorage