Documentation
¶
Index ¶
- Constants
- func CompareNamespaceFromFile(cmd *cobra.Command, namespace string) error
- func DataToObjects(m meta.RESTMapper, t runtime.ObjectTyper, data []byte) (result []runtime.Object, errors []error)
- func DefaultClientConfig(flags *pflag.FlagSet) clientcmd.ClientConfig
- func FirstNonEmptyString(args ...string) string
- func GetExplicitKubeNamespace(cmd *cobra.Command) (string, bool)
- func GetFilesFromDir(directory string, fileType string) []string
- func GetFlagBool(cmd *cobra.Command, flag string) bool
- func GetFlagBoolPtr(cmd *cobra.Command, flag string) *bool
- func GetFlagDuration(cmd *cobra.Command, flag string) time.Duration
- func GetFlagInt(cmd *cobra.Command, flag string) int
- func GetFlagString(cmd *cobra.Command, flag string) string
- func GetKubeNamespace(cmd *cobra.Command) string
- func NewCmdNamespace(out io.Writer) *cobra.Command
- func ReadConfigData(location string) ([]byte, error)
- func ReadConfigDataFromLocation(location string) ([]byte, error)
- func ResourceFromArgs(cmd *cobra.Command, args []string, mapper meta.RESTMapper) (mapping *meta.RESTMapping, namespace, name string)
- func ResourceFromArgsOrFile(cmd *cobra.Command, args []string, filename string, typer runtime.ObjectTyper, ...) (mapping *meta.RESTMapping, namespace, name string)
- func ResourceFromFile(cmd *cobra.Command, filename string, typer runtime.ObjectTyper, ...) (mapping *meta.RESTMapping, namespace, name string, data []byte)
- func ResourceOrTypeFromArgs(cmd *cobra.Command, args []string, mapper meta.RESTMapper) (mapping *meta.RESTMapping, namespace, name string)
- func ResourcesFromArgsOrFile(cmd *cobra.Command, args []string, filename, selector string, ...) resource.Visitor
- func SplitResourceArgument(arg string) []string
- type Factory
- func (f *Factory) BindFlags(flags *pflag.FlagSet)
- func (f *Factory) NewCmdCreate(out io.Writer) *cobra.Command
- func (f *Factory) NewCmdCreateAll(out io.Writer) *cobra.Command
- func (f *Factory) NewCmdDelete(out io.Writer) *cobra.Command
- func (f *Factory) NewCmdDescribe(out io.Writer) *cobra.Command
- func (f *Factory) NewCmdGet(out io.Writer) *cobra.Command
- func (f *Factory) NewCmdLog(out io.Writer) *cobra.Command
- func (f *Factory) NewCmdProxy(out io.Writer) *cobra.Command
- func (f *Factory) NewCmdRollingUpdate(out io.Writer) *cobra.Command
- func (f *Factory) NewCmdUpdate(out io.Writer) *cobra.Command
- func (f *Factory) NewCmdVersion(out io.Writer) *cobra.Command
- func (f *Factory) NewKubectlCommand(out io.Writer) *cobra.Command
Constants ¶
const (
FlagMatchBinaryVersion = "match-server-version"
)
Variables ¶
This section is empty.
Functions ¶
func CompareNamespaceFromFile ¶
CompareNamespaceFromFile returns an error if the namespace the user has provided on the CLI or via the default namespace file does not match the namespace of an input file. This prevents a user from unintentionally updating the wrong namespace.
func DataToObjects ¶
func DataToObjects(m meta.RESTMapper, t runtime.ObjectTyper, data []byte) (result []runtime.Object, errors []error)
DataToObjects converts the raw JSON data into API objects
func DefaultClientConfig ¶
func DefaultClientConfig(flags *pflag.FlagSet) clientcmd.ClientConfig
DefaultClientConfig creates a clientcmd.ClientConfig with the following hierarchy:
- Use the kubeconfig builder. The number of merges and overrides here gets a little crazy. Stay with me.
- Merge together the kubeconfig itself. This is done with the following hierarchy and merge rules:
- CommandLineLocation - this parsed from the command line, so it must be late bound
- EnvVarLocation
- CurrentDirectoryLocation
- HomeDirectoryLocation Empty filenames are ignored. Files with non-deserializable content produced errors. The first file to set a particular value or map key wins and the value or map key is never changed. This means that the first file to set CurrentContext will have its context preserved. It also means that if two files specify a "red-user", only values from the first file's red-user are used. Even non-conflicting entries from the second file's "red-user" are discarded.
- Determine the context to use based on the first hit in this chain
- command line argument - again, parsed from the command line, so it must be late bound
- CurrentContext from the merged kubeconfig file
- Empty is allowed at this stage
- Determine the cluster info and auth info to use. At this point, we may or may not have a context. They are built based on the first hit in this chain. (run it twice, once for auth, once for cluster)
- command line argument
- If context is present, then use the context value
- Empty is allowed
- Determine the actual cluster info to use. At this point, we may or may not have a cluster info. Build each piece of the cluster info based on the chain:
- command line argument
- If cluster info is present and a value for the attribute is present, use it.
- If you don't have a server location, bail.
- Auth info is build using the same rules as cluster info, EXCEPT that you can only have one authentication technique per auth info. The following conditions result in an error:
- If there are two conflicting techniques specified from the command line, fail.
- If the command line does not specify one, and the auth info has conflicting techniques, fail.
- If the command line specifies one and the auth info specifies another, honor the command line technique.
- Use default values and potentially prompt for auth information
func FirstNonEmptyString ¶
Returns the first non-empty string out of the ones provided. If all strings are empty, returns an empty string.
func GetExplicitKubeNamespace ¶
GetExplicitKubeNamespace returns the value of the namespace a user explicitly provided on the command line, or false if no such namespace was specified.
func GetFilesFromDir ¶
Return a list of file names of a certain type within a given directory. TODO: replace with resource.Builder
func GetFlagBoolPtr ¶
Returns nil if the flag wasn't set.
func GetFlagInt ¶
Assumes the flag has a default value.
func GetKubeNamespace ¶
GetKubeNamespace returns the value of the namespace a user provided on the command line or use the default namespace.
func ReadConfigData ¶
ReadConfigData reads the bytes from the specified filesytem or network location or from stdin if location == "-". TODO: replace with resource.Builder
func ReadConfigDataFromLocation ¶
TODO: replace with resource.Builder
func ResourceFromArgs ¶
func ResourceFromArgs(cmd *cobra.Command, args []string, mapper meta.RESTMapper) (mapping *meta.RESTMapping, namespace, name string)
ResourceFromArgs expects two arguments with a given type, and extracts the fields necessary to uniquely locate a resource. Displays a usageError if that contract is not satisfied, or a generic error if any other problems occur.
func ResourceFromArgsOrFile ¶
func ResourceFromArgsOrFile(cmd *cobra.Command, args []string, filename string, typer runtime.ObjectTyper, mapper meta.RESTMapper, schema validation.Schema) (mapping *meta.RESTMapping, namespace, name string)
ResourceFromArgsOrFile expects two arguments or a valid file with a given type, and extracts the fields necessary to uniquely locate a resource. Displays a usageError if that contract is not satisfied, or a generic error if any other problems occur.
func ResourceFromFile ¶
func ResourceFromFile(cmd *cobra.Command, filename string, typer runtime.ObjectTyper, mapper meta.RESTMapper, schema validation.Schema) (mapping *meta.RESTMapping, namespace, name string, data []byte)
ResourceFromFile retrieves the name and namespace from a valid file. If the file does not resolve to a known type an error is returned. The returned mapping can be used to determine the correct REST endpoint to modify this resource with.
func ResourceOrTypeFromArgs ¶
func ResourceOrTypeFromArgs(cmd *cobra.Command, args []string, mapper meta.RESTMapper) (mapping *meta.RESTMapping, namespace, name string)
ResourceFromArgs expects two arguments with a given type, and extracts the fields necessary to uniquely locate a resource. Displays a usageError if that contract is not satisfied, or a generic error if any other problems occur.
func ResourcesFromArgsOrFile ¶
func ResourcesFromArgsOrFile( cmd *cobra.Command, args []string, filename, selector string, typer runtime.ObjectTyper, mapper meta.RESTMapper, clientBuilder func(cmd *cobra.Command, mapping *meta.RESTMapping) (kubectl.RESTClient, error), schema validation.Schema, ) resource.Visitor
ResourcesFromArgsOrFile computes a list of Resources by extracting info from filename or args. It will handle label selectors provided.
func SplitResourceArgument ¶
Types ¶
type Factory ¶
type Factory struct { Mapper meta.RESTMapper Typer runtime.ObjectTyper // Returns a client for accessing Kubernetes resources or an error. Client func(cmd *cobra.Command) (*client.Client, error) // Returns a client.Config for accessing the Kubernetes server. ClientConfig func(cmd *cobra.Command) (*client.Config, error) // Returns a RESTClient for working with the specified RESTMapping or an error. This is intended // for working with arbitrary resources and is not guaranteed to point to a Kubernetes APIServer. RESTClient func(cmd *cobra.Command, mapping *meta.RESTMapping) (kubectl.RESTClient, error) // Returns a Describer for displaying the specified RESTMapping type or an error. Describer func(cmd *cobra.Command, mapping *meta.RESTMapping) (kubectl.Describer, error) // Returns a Printer for formatting objects of the given type or an error. Printer func(cmd *cobra.Command, mapping *meta.RESTMapping, noHeaders bool) (kubectl.ResourcePrinter, error) // Returns a schema that can validate objects stored on disk. Validator func(*cobra.Command) (validation.Schema, error) // contains filtered or unexported fields }
Factory provides abstractions that allow the Kubectl command to be extended across multiple types of resources and different API sets.
func NewFactory ¶
func NewFactory() *Factory
NewFactory creates a factory with the default Kubernetes resources defined