Documentation ¶
Index ¶
- func OverrideDefaultName(fs *pflag.FlagSet)
- type Logger
- func (l *Logger) ColorEnabled() bool
- func (l *Logger) Error(message string)
- func (l *Logger) Errorf(format string, args ...interface{})
- func (l *Logger) SetVerbosity(verbosity log.Level)
- func (l *Logger) SetWriter(w io.Writer)
- func (l *Logger) V(level log.Level) log.InfoLogger
- func (l *Logger) Warn(message string)
- func (l *Logger) Warnf(format string, args ...interface{})
- type Spinner
- type Status
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func OverrideDefaultName ¶ added in v0.8.0
OverrideDefaultName conditionally allows overriding the default cluster name by setting the KIND_CLUSTER_NAME environment variable only if --name wasn't set explicitly
Types ¶
type Logger ¶
type Logger struct {
// contains filtered or unexported fields
}
Logger is the kind cli's log.Logger implementation
func (*Logger) ColorEnabled ¶
ColorEnabled returns true if the caller is OK to write colored output
func (*Logger) SetVerbosity ¶
SetVerbosity sets the loggers verbosity
func (*Logger) V ¶
func (l *Logger) V(level log.Level) log.InfoLogger
V is part of the log.Logger interface
type Spinner ¶
type Spinner struct {
// contains filtered or unexported fields
}
Spinner is a simple and efficient CLI loading spinner used by kind It is simplistic and assumes that the line length will not change.
func NewSpinner ¶
NewSpinner initializes and returns a new Spinner that will write to w NOTE: w should be os.Stderr or similar, and it should be a Terminal
type Status ¶
type Status struct {
// contains filtered or unexported fields
}
Status is used to track ongoing status in a CLI, with a nice loading spinner when attached to a terminal
func StatusForLogger ¶
StatusForLogger returns a new status object for the logger l, if l is the kind cli logger and the writer is a Spinner, that spinner will be used for the status