diff --git a/cmd/gateway_utils.go b/cmd/gateway_utils.go
index 3e5a25e..7e3e160 100644
--- a/cmd/gateway_utils.go
+++ b/cmd/gateway_utils.go
@@ -36,7 +36,7 @@ func isIdentifiedByNameAndVCluster(kind string) bool {
 }
 
 func isIdentifiedByName(kind string) bool {
-	return strings.Contains(strings.ToLower(kind), "vcluster") ||
+	return strings.Contains(strings.ToLower(kind), "virtualcluster") ||
 		strings.Contains(strings.ToLower(kind), "group")
 }