From 357a690c59e781e500b2347cef13dc8b5119ff02 Mon Sep 17 00:00:00 2001 From: mrrishi Date: Tue, 27 Aug 2024 18:33:44 +0530 Subject: [PATCH 1/2] fix: akamai pro feature flag --- cmd/akamai/command.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/akamai/command.go b/cmd/akamai/command.go index 4a17c39ac..bd2165802 100644 --- a/cmd/akamai/command.go +++ b/cmd/akamai/command.go @@ -35,6 +35,7 @@ var ( nodeTypeFlag string nodeCountFlag string installCatalogApps string + installKubefirstProFlag bool // RootCredentials copyArgoCDPasswordToClipboardFlag bool @@ -100,6 +101,7 @@ func Create() *cobra.Command { createCmd.Flags().StringVar(&gitopsTemplateURLFlag, "gitops-template-url", "https://github.com/kubefirst/gitops-template.git", "the fully qualified url to the gitops-template repository to clone") createCmd.Flags().StringVar(&installCatalogApps, "install-catalog-apps", "", "comma separated values to install after provision") createCmd.Flags().BoolVar(&useTelemetryFlag, "use-telemetry", true, "whether to emit telemetry") + createCmd.Flags().BoolVar(&installKubefirstProFlag, "install-kubefirst-pro", true, "whether or not to install kubefirst pro") return createCmd } From 83f083570d7cc29e3bd670087893a57cb3a25c4e Mon Sep 17 00:00:00 2001 From: mrrishi Date: Tue, 27 Aug 2024 18:36:34 +0530 Subject: [PATCH 2/2] fix:description --- cmd/akamai/command.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/akamai/command.go b/cmd/akamai/command.go index bd2165802..7b57e73d6 100644 --- a/cmd/akamai/command.go +++ b/cmd/akamai/command.go @@ -56,7 +56,7 @@ func NewCommand() *cobra.Command { Long: "kubefirst akamai", Run: func(cmd *cobra.Command, args []string) { fmt.Println("To learn more about akamai in kubefirst, run:") - fmt.Println(" kubefirst akamai --help") + fmt.Println(" kubefirst beta akamai --help") if progress.Progress != nil { progress.Progress.Quit()