diff --git a/cmd/akamai/command.go b/cmd/akamai/command.go index 6e394d94..57999d57 100644 --- a/cmd/akamai/command.go +++ b/cmd/akamai/command.go @@ -50,7 +50,7 @@ func Create() *cobra.Command { Use: "create", Short: "create the kubefirst platform running on akamai kubernetes", TraverseChildren: true, - RunE: func(cmd *cobra.Command, args []string) error { + RunE: func(cmd *cobra.Command, _ []string) error { cliFlags, err := utilities.GetFlags(cmd, "akamai") if err != nil { progress.Error(err.Error()) diff --git a/cmd/aws/command.go b/cmd/aws/command.go index 568834f1..81fa6c6d 100644 --- a/cmd/aws/command.go +++ b/cmd/aws/command.go @@ -80,7 +80,7 @@ func Create() *cobra.Command { Use: "create", Short: "create the kubefirst platform running in aws", TraverseChildren: true, - RunE: func(cmd *cobra.Command, args []string) error { + RunE: func(cmd *cobra.Command, _ []string) error { cliFlags, err := utilities.GetFlags(cmd, "aws") if err != nil { progress.Error(err.Error()) diff --git a/cmd/azure/command.go b/cmd/azure/command.go index afad2050..67b75050 100644 --- a/cmd/azure/command.go +++ b/cmd/azure/command.go @@ -55,7 +55,7 @@ func Create() *cobra.Command { Use: "create", Short: "create the kubefirst platform running on Azure kubernetes", TraverseChildren: true, - RunE: func(cmd *cobra.Command, args []string) error { + RunE: func(cmd *cobra.Command, _ []string) error { cliFlags, err := utilities.GetFlags(cmd, "azure") if err != nil { progress.Error(err.Error()) diff --git a/cmd/civo/command.go b/cmd/civo/command.go index f3930681..fcca1a27 100644 --- a/cmd/civo/command.go +++ b/cmd/civo/command.go @@ -61,7 +61,7 @@ func Create() *cobra.Command { Use: "create", Short: "Create the Kubefirst platform running on Civo Kubernetes", TraverseChildren: true, - RunE: func(cmd *cobra.Command, args []string) error { + RunE: func(cmd *cobra.Command, _ []string) error { cliFlags, err := utilities.GetFlags(cmd, "civo") if err != nil { diff --git a/cmd/digitalocean/command.go b/cmd/digitalocean/command.go index c9848e52..fbba97cc 100644 --- a/cmd/digitalocean/command.go +++ b/cmd/digitalocean/command.go @@ -53,7 +53,7 @@ func Create() *cobra.Command { Use: "create", Short: "create the Kubefirst platform running on DigitalOcean Kubernetes", TraverseChildren: true, - RunE: func(cmd *cobra.Command, args []string) error { + RunE: func(cmd *cobra.Command, _ []string) error { cliFlags, err := utilities.GetFlags(cmd, "digitalocean") if err != nil { progress.Error(err.Error()) diff --git a/cmd/google/command.go b/cmd/google/command.go index b1c222b8..54497587 100644 --- a/cmd/google/command.go +++ b/cmd/google/command.go @@ -54,7 +54,7 @@ func Create() *cobra.Command { Use: "create", Short: "create the kubefirst platform running on GCP Kubernetes", TraverseChildren: true, - RunE: func(cmd *cobra.Command, args []string) error { + RunE: func(cmd *cobra.Command, _ []string) error { cliFlags, err := utilities.GetFlags(cmd, "google") if err != nil { progress.Error(err.Error()) diff --git a/cmd/k3s/command.go b/cmd/k3s/command.go index a90a1175..c6aec723 100644 --- a/cmd/k3s/command.go +++ b/cmd/k3s/command.go @@ -44,7 +44,7 @@ func Create() *cobra.Command { Use: "create", Short: "create the kubefirst platform running on premise", TraverseChildren: true, - RunE: func(cmd *cobra.Command, args []string) error { + RunE: func(cmd *cobra.Command, _ []string) error { cliFlags, err := utilities.GetFlags(cmd, "k3s") if err != nil { return fmt.Errorf("failed to get flags: %w", err) diff --git a/cmd/vultr/command.go b/cmd/vultr/command.go index e01e5fc4..bbb16348 100644 --- a/cmd/vultr/command.go +++ b/cmd/vultr/command.go @@ -53,7 +53,7 @@ func Create() *cobra.Command { Use: "create", Short: "Create the Kubefirst platform running on Vultr Kubernetes", TraverseChildren: true, - RunE: func(cmd *cobra.Command, args []string) error { + RunE: func(cmd *cobra.Command, _ []string) error { cliFlags, err := utilities.GetFlags(cmd, "vultr") if err != nil { progress.Error(err.Error())