From 83954c5e599f0410ecd17f7444b18d6d338497ce Mon Sep 17 00:00:00 2001 From: Abinand P Date: Mon, 30 Sep 2024 18:55:08 +0530 Subject: [PATCH] Modifed the cli outputs --- cyctl/cmd/reconcile.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cyctl/cmd/reconcile.go b/cyctl/cmd/reconcile.go index 9d19f2b8..d52cca65 100644 --- a/cyctl/cmd/reconcile.go +++ b/cyctl/cmd/reconcile.go @@ -32,19 +32,19 @@ func reconcileModule(clientset *client.CyclopsV1Alpha1Client, moduleName string) fmt.Println("failed to update module: ", err) return } - fmt.Printf("successfully reconciled %v", moduleName) + fmt.Printf("successfully triggered reconcilation for module: %v", moduleName) } var ( - reconcileExample = `# Reconcile the Module + reconcileExample = `# Reconcile a Module cyctl reconcile ` ) var reconcileCMD = &cobra.Command{ Use: "reconcile", - Short: "Will reconcile the Module and update the current TimeStamp", - Long: "Will reconcile the Module and update the current TimeStamp", + Short: "Trigger module reconciliation", + Long: "Trigger module reconciliation", Example: reconcileExample, Args: cobra.ExactArgs(1), Run: func(cmd *cobra.Command, args []string) {