Skip to content

Commit

Permalink
Merge pull request #2266 from konstructio/fix-akamai
Browse files Browse the repository at this point in the history
fix: akamai
  • Loading branch information
jokestax authored Aug 27, 2024
2 parents 49665b7 + 83f0835 commit 11ddd34
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cmd/akamai/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ var (
nodeTypeFlag string
nodeCountFlag string
installCatalogApps string
installKubefirstProFlag bool

// RootCredentials
copyArgoCDPasswordToClipboardFlag bool
Expand All @@ -55,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()
Expand Down Expand Up @@ -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
}
Expand Down

0 comments on commit 11ddd34

Please sign in to comment.