package config
import "k8s.io/kubernetes/pkg/kubectl/cmd/config"
Example (View)¶
Code:
{
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
}
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 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 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 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 io.Writer, ConfigAccess clientcmd.ConfigAccess) *cobra.Command
- func RunCurrentContext(out io.Writer, args []string, options *CurrentContextOptions) error
- type CurrentContextOptions
- type GetContextsOptions
- func (o *GetContextsOptions) Complete(cmd *cobra.Command, args []string, out io.Writer) error
- func (o GetContextsOptions) RunGetContexts() error
- type ViewOptions
Examples ¶
Functions ¶
func NewCmdConfig ¶
NewCmdConfig creates a command object for the "config" action, and adds all child commands to it.
func NewCmdConfigCurrentContext ¶
func NewCmdConfigDeleteCluster ¶
func NewCmdConfigDeleteContext ¶
func NewCmdConfigGetClusters ¶
NewCmdConfigGetClusters creates a command object for the "get-clusters" action, which lists all clusters defined in the kubeconfig.
func NewCmdConfigGetContexts ¶
NewCmdConfigGetContexts creates a command object for the "get-contexts" action, which retrieves one or more contexts from a kubeconfig.
func NewCmdConfigSet ¶
func NewCmdConfigSetAuthInfo ¶
func NewCmdConfigSetCluster ¶
func NewCmdConfigSetContext ¶
func NewCmdConfigUnset ¶
func NewCmdConfigUseContext ¶
func NewCmdConfigView ¶
func RunCurrentContext ¶
func RunCurrentContext(out io.Writer, args []string, options *CurrentContextOptions) error
Types ¶
type CurrentContextOptions ¶
type CurrentContextOptions struct { ConfigAccess clientcmd.ConfigAccess }
type GetContextsOptions ¶
type GetContextsOptions struct {
// contains filtered or unexported fields
}
GetContextsOptions contains the assignable options from the args.
func (*GetContextsOptions) Complete ¶
Complete assigns GetContextsOptions from the args.
func (GetContextsOptions) RunGetContexts ¶
func (o GetContextsOptions) RunGetContexts() error
RunGetContexts implements all the necessary functionality for context retrieval.
type ViewOptions ¶
type ViewOptions struct { ConfigAccess clientcmd.ConfigAccess Merge flag.Tristate Flatten bool Minify bool RawByteData bool }
func (*ViewOptions) Complete ¶
func (o *ViewOptions) Complete() bool
func (ViewOptions) Run ¶
func (o ViewOptions) Run(out io.Writer, printer kubectl.ResourcePrinter) error
func (ViewOptions) Validate ¶
func (o ViewOptions) Validate() error
Source Files ¶
config.go create_authinfo.go create_cluster.go create_context.go current_context.go delete_cluster.go delete_context.go get_clusters.go get_contexts.go navigation_step_parser.go set.go unset.go use_context.go view.go
- Version
- v1.4.5
- Published
- Oct 29, 2016
- Platform
- js/wasm
- Imports
- 22 packages
- Last checked
- 31 seconds ago –
Tools for package owners.