From 5bb27f26662e29ee0b7d1d8d6b4df297c1204ac1 Mon Sep 17 00:00:00 2001 From: Fabian Kramm Date: Thu, 12 Sep 2024 16:02:09 +0200 Subject: [PATCH] fix: wrong namespace for vcluster --- cmd/vclusterctl/cmd/platform/reset.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/cmd/vclusterctl/cmd/platform/reset.go b/cmd/vclusterctl/cmd/platform/reset.go index 7a7ce72fe3..8ed632dbee 100644 --- a/cmd/vclusterctl/cmd/platform/reset.go +++ b/cmd/vclusterctl/cmd/platform/reset.go @@ -22,13 +22,13 @@ import ( type PasswordCmd struct { *flags.GlobalFlags - - User string - Password string - Create bool - Force bool - Log log.Logger + + Namespace string + User string + Password string + Create bool + Force bool } func NewResetCmd(globalFlags *flags.GlobalFlags) *cobra.Command {