Documentation
¶
Index ¶
- Variables
- func ApplyCmd() *cobra.Command
- func AttachCmd() *cobra.Command
- func BundleCmd() *cobra.Command
- func CordonCmd() *cobra.Command
- func CreateCmd() *cobra.Command
- func DeleteCmd() *cobra.Command
- func DescribeCmd() *cobra.Command
- func DetachCmd() *cobra.Command
- func DisablePortalCmd() *cobra.Command
- func EnablePortalCmd() *cobra.Command
- func GetBoolIfConfigSet(key string) *bool
- func GetBoolIfFlagSet(fs *pflag.FlagSet, flagName string) (*bool, error)
- func GetCmd() *cobra.Command
- func InstallCmd() *cobra.Command
- func InstallPortalCmd() *cobra.Command
- func NfsCmd() *cobra.Command
- func PreflightCmd() *cobra.Command
- func UncordonCmd() *cobra.Command
- func UninstallCmd() *cobra.Command
- func UninstallPortalCmd() *cobra.Command
- func UpdateCmd() *cobra.Command
- func UpgradeCmd() *cobra.Command
- func VersionCmd() *cobra.Command
Constants ¶
This section is empty.
Variables ¶
View Source
var CompletionCmd = &cobra.Command{ Use: "completion [bash|zsh|fish|powershell]", Short: "Generate completion script", Long: "To load completions", DisableFlagsInUseLine: true, ValidArgs: []string{"bash", "zsh", "fish", "powershell"}, Args: cobra.MatchAll(cobra.ExactArgs(1), cobra.OnlyValidArgs), Run: func(cmd *cobra.Command, args []string) { switch args[0] { case "bash": cmd.Root().GenBashCompletion(os.Stdout) case "zsh": cmd.Root().GenZshCompletion(os.Stdout) case "fish": cmd.Root().GenFishCompletion(os.Stdout, true) case "powershell": cmd.Root().GenPowerShellCompletionWithDesc(os.Stdout) } }, }
Functions ¶
func DescribeCmd ¶
func DisablePortalCmd ¶
func EnablePortalCmd ¶
func GetBoolIfConfigSet ¶
func InstallCmd ¶
func InstallPortalCmd ¶
func PreflightCmd ¶
func UncordonCmd ¶
func UninstallCmd ¶
func UninstallPortalCmd ¶
func UpgradeCmd ¶
func VersionCmd ¶
Types ¶
This section is empty.
Source Files
¶
Click to show internal directories.
Click to hide internal directories.