From 732853074adab5a16a5cf18abde1a026200ee25a Mon Sep 17 00:00:00 2001 From: Juergen Kunz Date: Wed, 29 Apr 2026 02:01:17 +0000 Subject: [PATCH] fix: add cloudly registry storage requirements --- apps/cloudly/versions/1.0.0/config.json | 39 ++++++++++++++++++++++++- 1 file changed, 38 insertions(+), 1 deletion(-) diff --git a/apps/cloudly/versions/1.0.0/config.json b/apps/cloudly/versions/1.0.0/config.json index d9ca6ae..97c773d 100644 --- a/apps/cloudly/versions/1.0.0/config.json +++ b/apps/cloudly/versions/1.0.0/config.json @@ -55,10 +55,47 @@ "value": "${MONGODB_PASSWORD}", "description": "MongoDB password provisioned by Onebox.", "required": true + }, + { + "key": "S3_ENDPOINT", + "value": "onebox-minio", + "description": "S3 endpoint host for the MinIO service provisioned by Onebox.", + "required": true + }, + { + "key": "S3_PORT", + "value": "9000", + "description": "S3 endpoint port for the MinIO service provisioned by Onebox.", + "required": true + }, + { + "key": "S3_USESSL", + "value": "false", + "description": "Use plain HTTP for internal MinIO traffic on the Onebox network.", + "required": true + }, + { + "key": "S3_BUCKET", + "value": "${S3_BUCKET}", + "description": "S3 bucket provisioned by Onebox for Cloudly's registry.", + "required": true + }, + { + "key": "S3_ACCESSKEY", + "value": "${S3_ACCESS_KEY}", + "description": "S3 access key provisioned by Onebox.", + "required": true + }, + { + "key": "S3_SECRETKEY", + "value": "${S3_SECRET_KEY}", + "description": "S3 secret key provisioned by Onebox.", + "required": true } ], "platformRequirements": { - "mongodb": true + "mongodb": true, + "s3": true }, "minOneboxVersion": "1.24.2" }