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 <niryadav@redhat.com>
This commit is contained in:
Niraj Yadav 2024-12-09 17:52:36 +05:30 committed by mergify[bot]
parent e96404b297
commit 477d2ad517

View File

@ -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")