Merge pull request #1708 from zgfh/change-kubecnfig-username

update UserName of kubeconfig with clusterNmae perfix
This commit is contained in:
karmada-bot 2022-05-03 22:12:24 +08:00 committed by GitHub
commit 7b7ae06392
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -14,9 +14,9 @@ const (
// FrontProxyClientCertAndKeyName front-proxy-client certificate key name
FrontProxyClientCertAndKeyName = "front-proxy-client"
// ClusterName karmada cluster name
ClusterName = "karmada"
ClusterName = "karmada-apiserver"
// UserName karmada cluster user name
UserName = "admin"
UserName = "karmada-admin"
// KarmadaKubeConfigName karmada kubeconfig name
KarmadaKubeConfigName = "karmada-apiserver.config"
)