config

package
v0.0.0-...-5b2b967 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 8, 2020 License: Apache-2.0, Apache-2.0 Imports: 15 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// DefaultC default concurrency.
	DefaultC = 1
	// DefaultN default number of requests.
	DefaultN = 200
	// DefaultMethod default http verb.
	DefaultMethod = "GET"
)
View Source
const (
	// DefaultRefreshRate represents the refresh interval.
	DefaultRefreshRate = 2 // secs

	// DefaultLogLevel represents the default log level.
	DefaultLogLevel = "info"

	// DefaultCommand represents the default command to run.
	DefaultCommand = ""
)
View Source
const (
	// DefaultDirMod default unix perms for k9s directory.
	DefaultDirMod os.FileMode = 0755
	// DefaultFileMod default unix perms for k9s files.
	DefaultFileMod os.FileMode = 0600
)
View Source
const (
	// DefaultLoggerTailCount tracks default log tail size.
	DefaultLoggerTailCount = 100
	// MaxLogThreshold sets the max value for log size.
	MaxLogThreshold = 5000
	// DefaultSinceSeconds tracks default log age.
	DefaultSinceSeconds = -1 // all logs
)
View Source
const DefaultPFAddress = "localhost"

DefaultPFAddress specifies the default PortForward host address.

View Source
const K9sConfig = "K9SCONFIG"

K9sConfig represents K9s configuration dir env var.

View Source
const (
	// MaxFavoritesNS number # favorite namespaces to keep in the configuration.
	MaxFavoritesNS = 9
)

Variables

View Source
var (
	// DefaultK9sHome represent K9s home directory.
	DefaultK9sHome = filepath.Join(mustK9sHome(), ".k9s")
	// K9sConfigFile represents K9s config file location.
	K9sConfigFile = filepath.Join(K9sHome(), "config.yml")
	// K9sLogs represents K9s log.
	K9sLogs = filepath.Join(os.TempDir(), fmt.Sprintf("k9s-%s.log", MustK9sUser()))
	// K9sDumpDir represents a directory where K9s screen dumps will be persisted.
	K9sDumpDir = filepath.Join(os.TempDir(), fmt.Sprintf("k9s-screens-%s", MustK9sUser()))
)
View Source
var K9sAlias = filepath.Join(K9sHome(), "alias.yml")

K9sAlias manages K9s aliases.

View Source
var (
	// K9sBench the name of the benchmarks config file.
	K9sBench = "bench"
)
View Source
var K9sHotKeys = filepath.Join(K9sHome(), "hotkey.yml")

K9sHotKeys manages K9s hotKeys.

View Source
var K9sPlugins = filepath.Join(K9sHome(), "plugin.yml")

K9sPlugins manages K9s plugins.

View Source
var K9sStylesFile = filepath.Join(K9sHome(), "skin.yml")

K9sStylesFile represents K9s skins file location.

View Source
var K9sViewConfigFile = filepath.Join(K9sHome(), "views.yml")

K9sViewConfigFile represents the location for the views configuration.

Functions

func EnsureFullPath

func EnsureFullPath(path string, mod os.FileMode)

EnsureFullPath ensures a directory exist from the given path.

func EnsurePath

func EnsurePath(path string, mod os.FileMode)

EnsurePath ensures a directory exist from the given path.

func InList

func InList(ll []string, n string) bool

InList check if string is in a collection of strings.

func InNSList

func InNSList(nn []interface{}, ns string) bool

InNSList check if ns is in an ns collection.

func K9sHome

func K9sHome() string

K9sHome returns k9s configs home directory.

func MustK9sUser

func MustK9sUser() string

MustK9sUser establishes current user identity or fail.

Types

type Alias

type Alias map[string]string

Alias tracks shortname to GVR mappings.

type Aliases

type Aliases struct {
	Alias Alias `yaml:"alias"`
	// contains filtered or unexported fields
}

Aliases represents a collection of aliases.

func NewAliases

func NewAliases() *Aliases

NewAliases return a new alias.

func (*Aliases) Clear

func (a *Aliases) Clear()

Clear remove all aliases.

func (*Aliases) Define

func (a *Aliases) Define(gvr string, aliases ...string)

Define declares a new alias.

func (*Aliases) Get

func (a *Aliases) Get(k string) (string, bool)

Get retrieves an alias.

func (*Aliases) Keys

func (a *Aliases) Keys() []string

Keys returns all aliases keys.

func (*Aliases) Load

func (a *Aliases) Load() error

Load K9s aliases.

func (*Aliases) LoadFileAliases

func (a *Aliases) LoadFileAliases(path string) error

LoadFileAliases loads alias from a given file.

func (*Aliases) Save

func (a *Aliases) Save() error

Save alias to disk.

func (*Aliases) SaveAliases

func (a *Aliases) SaveAliases(path string) error

SaveAliases saves aliases to a given file.

func (*Aliases) ShortNames

func (a *Aliases) ShortNames() ShortNames

ShortNames return all shortnames.

type Auth

type Auth struct {
	User     string `yaml:"user"`
	Password string `yaml:"password"`
}

Auth basic auth creds

type Bench

type Bench struct {
	Benchmarks *Benchmarks `yaml:"benchmarks"`
}

Bench tracks K9s styling options.

func NewBench

func NewBench(path string) (*Bench, error)

NewBench creates a new default config.

func (*Bench) Reload

func (s *Bench) Reload(path string) error

Reload update the configuration from disk.

type BenchConfig

type BenchConfig struct {
	Name string
	C    int  `yaml:"concurrency"`
	N    int  `yaml:"requests"`
	Auth Auth `yaml:"auth"`
	HTTP HTTP `yaml:"http"`
}

BenchConfig represents a service benchmark.

func DefaultBenchSpec

func DefaultBenchSpec() BenchConfig

DefaultBenchSpec returns a default bench spec.

type Benchmark

type Benchmark struct {
	C int `yaml:"concurrency"`
	N int `yaml:"requests"`
}

Benchmark represents a generic benchmark.

func (Benchmark) Empty

func (b Benchmark) Empty() bool

Empty checks if the benchmark is set

type Benchmarks

type Benchmarks struct {
	Defaults   Benchmark              `yaml:"defaults"`
	Services   map[string]BenchConfig `yam':"services"`
	Containers map[string]BenchConfig `yam':"containers"`
}

Benchmarks tracks K9s benchmarks configuration.

type Body

type Body struct {
	FgColor   Color `yaml:"fgColor"`
	BgColor   Color `yaml:"bgColor"`
	LogoColor Color `yaml:"logoColor"`
}

Body tracks body styles.

type Border

type Border struct {
	FgColor    Color `yaml:"fgColor"`
	FocusColor Color `yaml:"focusColor"`
}

Border tracks border styles.

type Charts

type Charts struct {
	BgColor            Color             `yaml:"bgColor"`
	DialBgColor        Color             `yaml:"dialBgColor"`
	ChartBgColor       Color             `yaml:"chartBgColor"`
	DefaultDialColors  Colors            `yaml:"defaultDialColors"`
	DefaultChartColors Colors            `yaml:"defaultChartColors"`
	ResourceColors     map[string]Colors `yaml:"resourceColors"`
}

Charts tracks charts styles.

type Cluster

type Cluster struct {
	Namespace          *Namespace    `yaml:"namespace"`
	View               *View         `yaml:"view"`
	FeatureGates       *FeatureGates `yaml:"featureGates"`
	ShellPod           *ShellPod     `yaml:"shellPod"`
	PortForwardAddress string        `yaml:"portForwardAddress"`
}

Cluster tracks K9s cluster configuration.

func NewCluster

func NewCluster() *Cluster

NewCluster creates a new cluster configuration.

func (*Cluster) Validate

func (c *Cluster) Validate(conn client.Connection, ks KubeSettings)

Validate a cluster config.

type Color

type Color string

Color represents a color.

const (
	// DefaultColor represents  a default color.
	DefaultColor Color = "default"

	// TransparentColor represents the terminal bg color.
	TransparentColor Color = "-"
)

func NewColor

func NewColor(c string) Color

NewColor returns a new color.

func (Color) Color

func (c Color) Color() tcell.Color

Color returns a view color.

func (Color) String

func (c Color) String() string

String returns color as string.

type Colors

type Colors []Color

Colors tracks multiple colors.

func (Colors) Colors

func (c Colors) Colors() []tcell.Color

Colors converts series string colors to colors.

type Config

type Config struct {
	K9s *K9s `yaml:"k9s"`
	// contains filtered or unexported fields
}

Config tracks K9s configuration options.

func NewConfig

func NewConfig(ks KubeSettings) *Config

NewConfig creates a new default config.

func (*Config) ActiveNamespace

func (c *Config) ActiveNamespace() string

ActiveNamespace returns the active namespace in the current cluster.

func (*Config) ActiveView

func (c *Config) ActiveView() string

ActiveView returns the active view in the current cluster.

func (*Config) CurrentCluster

func (c *Config) CurrentCluster() *Cluster

CurrentCluster fetch the configuration activeCluster.

func (*Config) DemoMode

func (c *Config) DemoMode() bool

DemoMode returns true if demo mode is active, false otherwise.

func (*Config) Dump

func (c *Config) Dump(msg string)

Dump debug...

func (*Config) FavNamespaces

func (c *Config) FavNamespaces() []string

FavNamespaces returns fav namespaces in the current cluster.

func (*Config) GetConnection

func (c *Config) GetConnection() client.Connection

GetConnection return an api server connection.

func (*Config) Load

func (c *Config) Load(path string) error

Load K9s configuration from file

func (*Config) Refine

func (c *Config) Refine(flags *genericclioptions.ConfigFlags) error

Refine the configuration based on cli args.

func (*Config) Reset

func (c *Config) Reset()

Reset the context to the new current context/cluster. if it does not exist.

func (*Config) Save

func (c *Config) Save() error

Save configuration to disk.

func (*Config) SaveFile

func (c *Config) SaveFile(path string) error

SaveFile K9s configuration to disk.

func (*Config) SetActiveNamespace

func (c *Config) SetActiveNamespace(ns string) error

SetActiveNamespace set the active namespace in the current cluster.

func (*Config) SetActiveView

func (c *Config) SetActiveView(view string)

SetActiveView set the currently cluster active view

func (*Config) SetConnection

func (c *Config) SetConnection(conn client.Connection)

SetConnection set an api server connection.

func (*Config) SetDemoMode

func (c *Config) SetDemoMode(b bool)

SetDemoMode sets the demo mode.

func (*Config) Validate

func (c *Config) Validate()

Validate the configuration.

func (*Config) ValidateFavorites

func (c *Config) ValidateFavorites()

ValidateFavorites ensure favorite ns are legit.

type Crumb

type Crumb struct {
	FgColor     Color `yaml:"fgColor"`
	BgColor     Color `yaml:"bgColor"`
	ActiveColor Color `yaml:"activeColor"`
}

Crumb tracks crumbs styles.

type CustomView

type CustomView struct {
	K9s ViewSettings `yaml:"k9s"`
	// contains filtered or unexported fields
}

CustomView represents a collection of view customization.

func NewCustomView

func NewCustomView() *CustomView

NewCustomView returns a views configuration.

func (*CustomView) AddListener

func (v *CustomView) AddListener(gvr string, l ViewConfigListener)

AddListener registers a new listener.

func (*CustomView) Load

func (v *CustomView) Load(path string) error

Load loads view configurations.

func (*CustomView) RemoveListener

func (v *CustomView) RemoveListener(gvr string)

RemoveListener unregister a listener.

func (*CustomView) Reset

func (v *CustomView) Reset()

Reset clears out configurations.

type Dialog

type Dialog struct {
	FgColor            Color `yaml:"fgColor"`
	BgColor            Color `yaml:"bgColor"`
	ButtonFgColor      Color `yaml:"buttonFgColor"`
	ButtonBgColor      Color `yaml:"buttonBgColor"`
	ButtonFocusFgColor Color `yaml:"buttonFocusFgColor"`
	ButtonFocusBgColor Color `yaml:"buttonFocusBgColor"`
	LabelFgColor       Color `yaml:"labelFgColor"`
	FieldFgColor       Color `yaml:"fieldFgColor"`
}

Dialog tracks dialog styles.

type FeatureGates

type FeatureGates struct {
	NodeShell bool `yaml:"nodeShell"`
}

FeatureGates represents K9s opt-in features.

func NewFeatureGates

func NewFeatureGates() *FeatureGates

NewFeatureGates returns a new feature gate.

type Flags

type Flags struct {
	RefreshRate   *int
	LogLevel      *string
	Headless      *bool
	Command       *string
	AllNamespaces *bool
	ReadOnly      *bool
}

Flags represents K9s configuration flags.

func NewFlags

func NewFlags() *Flags

NewFlags returns new configuration flags.

type Frame

type Frame struct {
	Title  Title  `yaml:"title"`
	Border Border `yaml:"border"`
	Menu   Menu   `yaml:"menu"`
	Crumb  Crumb  `yaml:"crumbs"`
	Status Status `yaml:"status"`
}

Frame tracks frame styles.

type HTTP

type HTTP struct {
	Method  string      `yaml:"method"`
	Host    string      `yaml:"host"`
	Path    string      `yaml:"path"`
	HTTP2   bool        `yaml:"http2"`
	Body    string      `yaml:"body"`
	Headers http.Header `yaml:"headers"`
}

HTTP represents an http request.

type HotKey

type HotKey struct {
	ShortCut    string `yaml:"shortCut"`
	Description string `yaml:"description"`
	Command     string `yaml:"command"`
}

HotKey describes a K9s hotkey.

type HotKeys

type HotKeys struct {
	HotKey map[string]HotKey `yaml:"hotKey"`
}

HotKeys represents a collection of plugins.

func NewHotKeys

func NewHotKeys() HotKeys

NewHotKeys returns a new plugin.

func (HotKeys) Load

func (h HotKeys) Load() error

Load K9s plugins.

func (HotKeys) LoadHotKeys

func (h HotKeys) LoadHotKeys(path string) error

LoadHotKeys loads plugins from a given file.

type Info

type Info struct {
	SectionColor Color `yaml:"sectionColor"`
	FgColor      Color `yaml:"fgColor"`
}

Info tracks info styles.

type K9s

type K9s struct {
	RefreshRate    int                 `yaml:"refreshRate"`
	Headless       bool                `yaml:"headless"`
	ReadOnly       bool                `yaml:"readOnly"`
	NoIcons        bool                `yaml:"noIcons"`
	Logger         *Logger             `yaml:"logger"`
	CurrentContext string              `yaml:"currentContext"`
	CurrentCluster string              `yaml:"currentCluster"`
	Clusters       map[string]*Cluster `yaml:"clusters,omitempty"`
	Thresholds     Threshold           `yaml:"thresholds"`
	// contains filtered or unexported fields
}

K9s tracks K9s configuration options.

func NewK9s

func NewK9s() *K9s

NewK9s create a new K9s configuration.

func (*K9s) ActiveCluster

func (k *K9s) ActiveCluster() *Cluster

ActiveCluster returns the currently active cluster.

func (*K9s) GetHeadless

func (k *K9s) GetHeadless() bool

GetHeadless returns headless setting.

func (*K9s) GetReadOnly

func (k *K9s) GetReadOnly() bool

GetReadOnly returns the readonly setting.

func (*K9s) GetRefreshRate

func (k *K9s) GetRefreshRate() int

GetRefreshRate returns the current refresh rate.

func (*K9s) OverrideCommand

func (k *K9s) OverrideCommand(cmd string)

OverrideCommand set the command manually.

func (*K9s) OverrideHeadless

func (k *K9s) OverrideHeadless(b bool)

OverrideHeadless set the headlessness manually.

func (*K9s) OverrideReadOnly

func (k *K9s) OverrideReadOnly(b bool)

OverrideReadOnly set the readonly mode manually.

func (*K9s) OverrideRefreshRate

func (k *K9s) OverrideRefreshRate(r int)

OverrideRefreshRate set the refresh rate manually.

func (*K9s) Validate

func (k *K9s) Validate(c client.Connection, ks KubeSettings)

Validate the current configuration.

type KubeSettings

type KubeSettings interface {
	// CurrentContextName returns the name of the current context.
	CurrentContextName() (string, error)

	// CurrentClusterName returns the name of the current cluster.
	CurrentClusterName() (string, error)

	// CurrentNamespace returns the name of the current namespace.
	CurrentNamespaceName() (string, error)

	// ClusterNames() returns all available cluster names.
	ClusterNames() ([]string, error)

	// NamespaceNames returns all available namespace names.
	NamespaceNames(nn []v1.Namespace) []string
}

KubeSettings exposes kubeconfig context information.

type Limits

type Limits map[v1.ResourceName]string

Limits represents resource limits.

type Log

type Log struct {
	FgColor   Color        `yaml:"fgColor"`
	BgColor   Color        `yaml:"bgColor"`
	Indicator LogIndicator `yaml:"indicator"`
}

Log tracks Log styles.

type LogIndicator

type LogIndicator struct {
	FgColor Color `yaml:"fgColor"`
	BgColor Color `yaml:"bgColor"`
}

LogIndicator tracks log view indicator.

type Logger

type Logger struct {
	TailCount      int64 `yaml:"tail"`
	BufferSize     int   `yaml:"buffer"`
	SinceSeconds   int64 `yaml:"sinceSeconds"`
	FullScreenLogs bool  `yaml:"fullScreenLogs"`
	TextWrap       bool  `yaml:"textWrap"`
	ShowTime       bool  `yaml:"showTime"`
}

Logger tracks logger options

func NewLogger

func NewLogger() *Logger

NewLogger returns a new instance.

func (*Logger) Validate

func (l *Logger) Validate(_ client.Connection, _ KubeSettings)

Validate checks thresholds and make sure we're cool. If not use defaults.

type Menu struct {
	FgColor     Color `yaml:"fgColor"`
	KeyColor    Color `yaml:"keyColor"`
	NumKeyColor Color `yaml:"numKeyColor"`
}

Menu tracks menu styles.

type Namespace

type Namespace struct {
	Active    string   `yaml:"active"`
	Favorites []string `yaml:"favorites"`
}

Namespace tracks active and favorites namespaces.

func NewNamespace

func NewNamespace() *Namespace

NewNamespace create a new namespace configuration.

func (*Namespace) SetActive

func (n *Namespace) SetActive(ns string, ks KubeSettings) error

SetActive set the active namespace.

func (*Namespace) Validate

func (n *Namespace) Validate(c client.Connection, ks KubeSettings)

Validate a namespace is setup correctly

type Plugin

type Plugin struct {
	Scopes      []string `yaml:"scopes"`
	Args        []string `yaml:"args"`
	ShortCut    string   `yaml:"shortCut"`
	Description string   `yaml:"description"`
	Command     string   `yaml:"command"`
	Confirm     bool     `yaml:"confirm"`
	Background  bool     `yaml:"background"`
}

Plugin describes a K9s plugin

type Plugins

type Plugins struct {
	Plugin map[string]Plugin `yaml:"plugin"`
}

Plugins represents a collection of plugins.

func NewPlugins

func NewPlugins() Plugins

NewPlugins returns a new plugin.

func (Plugins) Load

func (p Plugins) Load() error

Load K9s plugins.

func (Plugins) LoadPlugins

func (p Plugins) LoadPlugins(path string) error

LoadPlugins loads plugins from a given file.

type Severity

type Severity struct {
	Critical int `yaml:"critical"`
	Warn     int `yaml:"warn"`
}

Severity tracks a resource severity levels.

func NewSeverity

func NewSeverity() *Severity

NewSeverity returns a new instance.

func (*Severity) Validate

func (s *Severity) Validate()

Validate checks all thresholds and make sure we're cool. If not use defaults.

type SeverityLevel

type SeverityLevel int

SeverityLevel tracks severity levels.

const (
	// SeverityLow tracks low severity.
	SeverityLow SeverityLevel = iota

	// SeverityMedium tracks medium severity level.
	SeverityMedium

	// SeverityHigh tracks high severity level.
	SeverityHigh
)

type ShellPod

type ShellPod struct {
	Image     string `json:"Image"`
	Namespace string `json:"namespace"`
	Limits    Limits `json:"resources,omitempty"`
}

ShellPod represents k9s shell configuration.

func NewShellPod

func NewShellPod() *ShellPod

NewShellPod returns a new instance.

func (*ShellPod) Validate

func (s *ShellPod) Validate(client.Connection, KubeSettings)

Validate validates the configuration.

type ShortNames

type ShortNames map[string][]string

ShortNames represents a collection of shortnames for aliases.

type Status

type Status struct {
	NewColor       Color `yaml:"newColor"`
	ModifyColor    Color `yaml:"modifyColor"`
	AddColor       Color `yaml:"addColor"`
	PendingColor   Color `yaml:"pendingColor"`
	ErrorColor     Color `yaml:"errorColor"`
	HighlightColor Color `yaml:"highlightColor"`
	KillColor      Color `yaml:"killColor"`
	CompletedColor Color `yaml:"completedColor"`
}

Status tracks resource status styles.

type Style

type Style struct {
	Body   Body   `yaml:"body"`
	Frame  Frame  `yaml:"frame"`
	Info   Info   `yaml:"info"`
	Views  Views  `yaml:"views"`
	Dialog Dialog `yaml:"dialog"`
}

Style tracks K9s styles.

type StyleListener

type StyleListener interface {
	// StylesChanged notifies listener the skin changed.
	StylesChanged(*Styles)
}

StyleListener represents a skin's listener.

type Styles

type Styles struct {
	K9s Style `yaml:"k9s"`
	// contains filtered or unexported fields
}

Styles tracks K9s styling options.

func NewStyles

func NewStyles() *Styles

NewStyles creates a new default config.

func (*Styles) AddListener

func (s *Styles) AddListener(l StyleListener)

AddListener registers a new listener.

func (*Styles) BgColor

func (s *Styles) BgColor() tcell.Color

BgColor returns the background color.

func (*Styles) Body

func (s *Styles) Body() Body

Body returns body styles.

func (*Styles) Charts

func (s *Styles) Charts() Charts

Charts returns charts styles.

func (*Styles) Crumb

func (s *Styles) Crumb() Crumb

Crumb returns crumb styles.

func (*Styles) DefaultSkin

func (s *Styles) DefaultSkin()

DefaultSkin loads the default skin

func (*Styles) Dialog

func (s *Styles) Dialog() Dialog

Dialog returns dialog styles.

func (*Styles) FgColor

func (s *Styles) FgColor() tcell.Color

FgColor returns the foreground color.

func (*Styles) Frame

func (s *Styles) Frame() Frame

Frame returns frame styles.

func (*Styles) Load

func (s *Styles) Load(path string) error

Load K9s configuration from file

func (*Styles) RemoveListener

func (s *Styles) RemoveListener(l StyleListener)

RemoveListener unregister a listener.

func (*Styles) Reset

func (s *Styles) Reset()

Reset resets styles.

func (*Styles) Table

func (s *Styles) Table() Table

Table returns table styles.

func (*Styles) Title

func (s *Styles) Title() Title

Title returns title styles.

func (*Styles) Update

func (s *Styles) Update()

Update apply terminal colors based on styles.

func (*Styles) Views

func (s *Styles) Views() Views

Views returns views styles.

func (*Styles) Xray

func (s *Styles) Xray() Xray

Xray returns xray styles.

type Table

type Table struct {
	FgColor       Color       `yaml:"fgColor"`
	BgColor       Color       `yaml:"bgColor"`
	CursorFgColor Color       `yaml:"cursorFgColor"`
	CursorBgColor Color       `yaml:"cursorBgColor"`
	MarkColor     Color       `yaml:"markColor"`
	Header        TableHeader `yaml:"header"`
}

Table tracks table styles.

type TableHeader

type TableHeader struct {
	FgColor     Color `yaml:"fgColor"`
	BgColor     Color `yaml:"bgColor"`
	SorterColor Color `yaml:"sorterColor"`
}

TableHeader tracks table header styles.

type Threshold

type Threshold map[string]*Severity

Threshold tracks threshold to alert user when excided.

func NewThreshold

func NewThreshold() Threshold

NewThreshold returns a new threshold.

func (Threshold) LevelFor

func (t Threshold) LevelFor(k string, v int) SeverityLevel

LevelFor returns a defcon level for the current state.

func (*Threshold) SeverityColor

func (t *Threshold) SeverityColor(k string, v int) string

SeverityColor returns an defcon level associated level.

func (Threshold) Validate

func (t Threshold) Validate(c client.Connection, ks KubeSettings)

Validate a namespace is setup correctly

type Title

type Title struct {
	FgColor        Color `yaml:"fgColor"`
	BgColor        Color `yaml:"bgColor"`
	HighlightColor Color `yaml:"highlightColor"`
	CounterColor   Color `yaml:"counterColor"`
	FilterColor    Color `yaml:"filterColor"`
}

Title tracks title styles.

type View

type View struct {
	Active string `yaml:"active"`
}

View tracks view configuration options.

func NewView

func NewView() *View

NewView creates a new view configuration.

func (*View) Validate

func (v *View) Validate()

Validate a view configuration.

type ViewConfigListener

type ViewConfigListener interface {
	// ConfigChanged notifies listener the view configuration changed.
	ViewSettingsChanged(ViewSetting)
}

ViewConfigListener represents a view config listener.

type ViewSetting

type ViewSetting struct {
	Columns []string `yaml:"columns"`
}

ViewSetting represents a view configuration.

type ViewSettings

type ViewSettings struct {
	Views map[string]ViewSetting `yaml:"views"`
}

ViewSettings represent a collection of view configurations.

func NewViewSettings

func NewViewSettings() ViewSettings

NewViewSettings returns a new configuration.

type Views

type Views struct {
	Table  Table  `yaml:"table"`
	Xray   Xray   `yaml:"xray"`
	Charts Charts `yaml:"charts"`
	Yaml   Yaml   `yaml:"yaml"`
	Log    Log    `yaml:"logs"`
}

Views tracks individual view styles.

type Xray

type Xray struct {
	FgColor         Color `yaml:"fgColor"`
	BgColor         Color `yaml:"bgColor"`
	CursorColor     Color `yaml:"cursorColor"`
	CursorTextColor Color `yaml:"cursorTextColor"`
	GraphicColor    Color `yaml:"graphicColor"`
}

Xray tracks xray styles.

type Yaml

type Yaml struct {
	KeyColor   Color `yaml:"keyColor"`
	ValueColor Color `yaml:"valueColor"`
	ColonColor Color `yaml:"colonColor"`
}

Yaml tracks yaml styles.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL