From d5e8db60beb3eac64e2da5a78d7afa9417abd06d Mon Sep 17 00:00:00 2001 From: pb Date: Mon, 30 Jun 2025 12:36:21 +0200 Subject: [PATCH] changed the returned json for /minio/serviceaccount --- controllers/minio.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controllers/minio.go b/controllers/minio.go index 604bd3f..7cbb15d 100644 --- a/controllers/minio.go +++ b/controllers/minio.go @@ -96,7 +96,7 @@ func (m *MinioController) CreateServiceAccount() { return } - m.Data["json"] = map[string]string{"access":access,"secret":secret} + m.Data["json"] = map[string]string{"success": "created secret " + executionsId + "-secret-sa in namespace ns-" + executionsId} m.ServeJSON() }