Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Cmd = &cobra.Command{ Use: "addon ID", Aliases: []string{"addons", "add-on", "add-ons"}, Short: "Edit add-on installation parameters on cluster", Long: "Edit the parameters on installed Red Hat managed add-ons on a cluster", Example: ` # Edit the parameters of the Red Hat OpenShift logging operator add-on installation rosa edit addon --cluster=mycluster cluster-logging-operator`, Run: run, DisableFlagParsing: true, Args: func(cmd *cobra.Command, argv []string) error { err := arguments.ParseUnknownFlags(cmd, argv) if err != nil { return err } if len(cmd.Flags().Args()) != 1 { return fmt.Errorf("Expected exactly one command line parameter containing the id of the add-on") } return nil }, }
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.