From 477d2ad5179dc3016a69d706a3969c934264905f Mon Sep 17 00:00:00 2001 From: Niraj Yadav Date: Mon, 9 Dec 2024 17:52:36 +0530 Subject: [PATCH] e2e: Note to update to userID and userKey Once the version we use for upgrade testing does not depend on adminID and adminKey we should update the tests to use just the userID and userKey. Signed-off-by: Niraj Yadav --- e2e/cephfs_helper.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/e2e/cephfs_helper.go b/e2e/cephfs_helper.go index 6deb976d1..1fa61cb46 100644 --- a/e2e/cephfs_helper.go +++ b/e2e/cephfs_helper.go @@ -127,6 +127,9 @@ func createCephfsSecret(f *framework.Framework, secretName, userName, userKey st if secretName != "" { sc.Name = secretName } + // TODO: Update the secrets to use userID and userKey once + // the version used for upgrade testing does not depend on + // adminID and adminKey. sc.StringData["adminID"] = userName sc.StringData["adminKey"] = userKey delete(sc.StringData, "userID")