Documentation ¶
Overview ¶
Example (View) ¶
expectedConfig := newRedFederalCowHammerConfig() test := configCommandTest{ args: []string{"view"}, startingConfig: newRedFederalCowHammerConfig(), expectedConfig: expectedConfig, } output := test.run(nil) fmt.Printf("%v", output)
Output: apiVersion: v1 clusters: - cluster: server: http://cow.org:8080 name: cow-cluster contexts: - context: cluster: cow-cluster user: red-user name: federal-context current-context: federal-context kind: Config preferences: {} users: - name: red-user user: token: red-token
Index ¶
- func NewCmdConfig(pathOptions *clientcmd.PathOptions, out, errOut io.Writer) *cobra.Command
- func NewCmdConfigCurrentContext(out io.Writer, configAccess clientcmd.ConfigAccess) *cobra.Command
- func NewCmdConfigDeleteCluster(out io.Writer, configAccess clientcmd.ConfigAccess) *cobra.Command
- func NewCmdConfigDeleteContext(out, errOut io.Writer, configAccess clientcmd.ConfigAccess) *cobra.Command
- func NewCmdConfigGetClusters(out io.Writer, configAccess clientcmd.ConfigAccess) *cobra.Command
- func NewCmdConfigGetContexts(out io.Writer, configAccess clientcmd.ConfigAccess) *cobra.Command
- func NewCmdConfigRenameContext(out io.Writer, configAccess clientcmd.ConfigAccess) *cobra.Command
- func NewCmdConfigSet(out io.Writer, configAccess clientcmd.ConfigAccess) *cobra.Command
- func NewCmdConfigSetAuthInfo(out io.Writer, configAccess clientcmd.ConfigAccess) *cobra.Command
- func NewCmdConfigSetCluster(out io.Writer, configAccess clientcmd.ConfigAccess) *cobra.Command
- func NewCmdConfigSetContext(out io.Writer, configAccess clientcmd.ConfigAccess) *cobra.Command
- func NewCmdConfigUnset(out io.Writer, configAccess clientcmd.ConfigAccess) *cobra.Command
- func NewCmdConfigUseContext(out io.Writer, configAccess clientcmd.ConfigAccess) *cobra.Command
- func NewCmdConfigView(out, errOut io.Writer, ConfigAccess clientcmd.ConfigAccess) *cobra.Command
- func RunCurrentContext(out io.Writer, options *CurrentContextOptions) error
- type CurrentContextOptions
- type GetContextsOptions
- type RenameContextOptions
- type ViewOptions
Examples ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewCmdConfig ¶
NewCmdConfig creates a command object for the "config" action, and adds all child commands to it.
func NewCmdConfigCurrentContext ¶ added in v1.2.0
func NewCmdConfigDeleteCluster ¶ added in v1.4.0
func NewCmdConfigDeleteContext ¶ added in v1.4.0
func NewCmdConfigGetClusters ¶ added in v1.4.0
NewCmdConfigGetClusters creates a command object for the "get-clusters" action, which lists all clusters defined in the kubeconfig.
func NewCmdConfigGetContexts ¶ added in v1.4.0
NewCmdConfigGetContexts creates a command object for the "get-contexts" action, which retrieves one or more contexts from a kubeconfig.
func NewCmdConfigRenameContext ¶ added in v1.7.0
NewCmdConfigRenameContext creates a command object for the "rename-context" action
func NewCmdConfigSet ¶
func NewCmdConfigSetAuthInfo ¶
func NewCmdConfigSetCluster ¶
func NewCmdConfigSetContext ¶
func NewCmdConfigUnset ¶
func NewCmdConfigUseContext ¶
func NewCmdConfigView ¶
func RunCurrentContext ¶ added in v1.2.0
func RunCurrentContext(out io.Writer, options *CurrentContextOptions) error
Types ¶
type CurrentContextOptions ¶ added in v1.2.0
type CurrentContextOptions struct {
ConfigAccess clientcmd.ConfigAccess
}
type GetContextsOptions ¶ added in v1.4.0
type GetContextsOptions struct {
// contains filtered or unexported fields
}
GetContextsOptions contains the assignable options from the args.
func (*GetContextsOptions) Complete ¶ added in v1.4.0
Complete assigns GetContextsOptions from the args.
func (GetContextsOptions) RunGetContexts ¶ added in v1.4.0
func (o GetContextsOptions) RunGetContexts() error
RunGetContexts implements all the necessary functionality for context retrieval.
type RenameContextOptions ¶ added in v1.7.0
type RenameContextOptions struct {
// contains filtered or unexported fields
}
RenameContextOptions contains the options for running the rename-context cli command.
func (*RenameContextOptions) Complete ¶ added in v1.7.0
Complete assigns RenameContextOptions from the args.
func (RenameContextOptions) RunRenameContext ¶ added in v1.7.0
func (o RenameContextOptions) RunRenameContext(out io.Writer) error
func (RenameContextOptions) Validate ¶ added in v1.7.0
func (o RenameContextOptions) Validate() error
type ViewOptions ¶ added in v0.16.0
type ViewOptions struct { ConfigAccess clientcmd.ConfigAccess Merge flag.Tristate Flatten bool Minify bool RawByteData bool }
func (*ViewOptions) Complete ¶ added in v0.16.0
func (o *ViewOptions) Complete() bool
func (ViewOptions) Run ¶ added in v0.16.0
func (o ViewOptions) Run(out io.Writer, printer printers.ResourcePrinter) error
func (ViewOptions) Validate ¶ added in v0.16.0
func (o ViewOptions) Validate() error