From c6465ad9e5ec3ca1faa5886f46c8bd092d62aa19 Mon Sep 17 00:00:00 2001 From: Jan Eitzinger Date: Wed, 14 Jan 2026 15:28:34 +0100 Subject: [PATCH] Add s3 configuration options --- pkg/archive/archive.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkg/archive/archive.go b/pkg/archive/archive.go index f9ce4314..c3032faa 100644 --- a/pkg/archive/archive.go +++ b/pkg/archive/archive.go @@ -31,13 +31,15 @@ // } // } // -// For S3 backend: +// For S3 backend (endpoint, region, and usePathStyle are optional): // // { // "archive": { // "kind": "s3", +// "endpoint": "http://192.168.178.10", // "bucket": "my-job-archive", // "region": "us-east-1", +// "usePathStyle": true, // "accessKey": "...", // "secretKey": "..." // }