From 16b3b152a74bfbb87263850cf0aa4f95402e8681 Mon Sep 17 00:00:00 2001 From: Marco Date: Mon, 22 Jan 2024 14:54:56 -0600 Subject: [PATCH] OCM-5632 | feat: add constants for cluster admin into common library Signed-off-by: marcolan018 --- pkg/utils/consts.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkg/utils/consts.go b/pkg/utils/consts.go index 00230ee..da048eb 100644 --- a/pkg/utils/consts.go +++ b/pkg/utils/consts.go @@ -2,4 +2,7 @@ package utils const ( MaxByteSize = 64 + + ClusterAdminUsername = "cluster-admin" + ClusterAdminGroup = "cluster-admins" )