From 1bdacd68231650e91a0c647b56efc4dd85d94c46 Mon Sep 17 00:00:00 2001 From: titver968 Date: Thu, 4 Dec 2025 11:50:45 +0100 Subject: [PATCH] admin-s3 back to json --- argocd/apps/seaweedfs/admin-s3-secrets.yaml | 57 ++++++++++++--------- 1 file changed, 34 insertions(+), 23 deletions(-) diff --git a/argocd/apps/seaweedfs/admin-s3-secrets.yaml b/argocd/apps/seaweedfs/admin-s3-secrets.yaml index c6e7ee6..b0834b1 100644 --- a/argocd/apps/seaweedfs/admin-s3-secrets.yaml +++ b/argocd/apps/seaweedfs/admin-s3-secrets.yaml @@ -10,26 +10,37 @@ metadata: stringData: seaweedfs_s3_config: | - [[identity]] - name = "tatort" - actions = ["Read", "Write", "Admin"] - - [[identity.credentials]] - accessKey = "wjpKrmaqXra99rX3D61H" - secretKey = "fTPi0u0FR6Lv9Y9IKydWv6WM0EA5XrsK008HCt9u" - - [[identity]] - name = "plane" - actions = ["Read", "Write", "Admin"] - - [[identity.credentials]] - accessKey = "a0ccb47cc0994bf51ecd" - secretKey = "0d54ee2f943f2a56b8cafc3afe9cb1e2f9fecac2" - - [[identity]] - name = "n8n" - actions = ["Read", "Write", "Admin"] - - [[identity.credentials]] - accessKey = "WPpTwIoSMgrPChsS3rdS" - secretKey = "C59o3EAhsUKBWj1oiPtiYRq3GhLMFeYDeiMxJ4SW" \ No newline at end of file + { + "identities": [ + { + "name": "tatort", + "credentials": [ + { + "accessKey": "wjpKrmaqXra99rX3D61H", + "secretKey": "fTPi0u0FR6Lv9Y9IKydWv6WM0EA5XrsK008HCt9u" + } + ], + "actions": ["Read", "Write", "Admin"] + }, + { + "name": "plane", + "credentials": [ + { + "accessKey": "a0ccb47cc0994bf51ecd", + "secretKey": "0d54ee2f943f2a56b8cafc3afe9cb1e2f9fecac2" + } + ], + "actions": ["Read", "Write", "Admin"] + }, + { + "name": "n8n", + "credentials": [ + { + "accessKey": "WPpTwIoSMgrPChsS3rdS", + "secretKey": "C59o3EAhsUKBWj1oiPtiYRq3GhLMFeYDeiMxJ4SW" + } + ], + "actions": ["Read", "Write", "Admin"] + } + ] + }