Documentation ¶
Overview ¶
Package cli describes the operating environment for the Helm CLI.
Helm's environment encapsulates all of the service dependencies Helm has. These dependencies are expressed as interfaces so that alternate implementations (mocks, etc.) can be easily generated.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type EnvSettings ¶
type EnvSettings struct { // Home is the local path to the Helm home directory. Home helmpath.Home // Namespace is the namespace scope. Namespace string // KubeConfig is the path to the kubeconfig file. KubeConfig string // KubeContext is the name of the kubeconfig context. KubeContext string // Debug indicates whether or not Helm is running in Debug mode. Debug bool }
EnvSettings describes all of the environment settings.
func (*EnvSettings) AddFlags ¶
func (s *EnvSettings) AddFlags(fs *pflag.FlagSet)
AddFlags binds flags to the given flagset.
func (*EnvSettings) Init ¶
func (s *EnvSettings) Init(fs *pflag.FlagSet)
Init sets values from the environment.
func (EnvSettings) PluginDirs ¶
func (s EnvSettings) PluginDirs() string
PluginDirs is the path to the plugin directories.
Click to show internal directories.
Click to hide internal directories.