From 357a690c59e781e500b2347cef13dc8b5119ff02 Mon Sep 17 00:00:00 2001 From: mrrishi Date: Tue, 27 Aug 2024 18:33:44 +0530 Subject: [PATCH] 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 4a17c39a..bd216580 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 }