mirror of
https://github.com/ahmetb/kubectx.git
synced 2025-06-11 16:37:27 +00:00
19 lines
603 B
Go
19 lines
603 B
Go
package env
|
|
|
|
const (
|
|
// EnvFZFIgnore describes the environment variable to set to disable
|
|
// interactive context selection when fzf is installed.
|
|
EnvFZFIgnore = "KUBECTX_IGNORE_FZF"
|
|
|
|
// EnvForceColor describes the environment variable to disable color usage
|
|
// when printing current context in a list.
|
|
EnvNoColor = `NO_COLOR`
|
|
|
|
// EnvForceColor describes the "internal" environment variable to force
|
|
// color usage to show current context in a list.
|
|
EnvForceColor = `_KUBECTX_FORCE_COLOR`
|
|
|
|
// EnvDebug describes the internal environment variable for more verbose logging.
|
|
EnvDebug = `DEBUG`
|
|
)
|