Documentation
¶
Index ¶
- type AllocationLimits
- type Allocations
- type Config
- func (c *Config) CPUResourceLimits() Allocations
- func (c *Config) ExcludedNS(n string) bool
- func (c *Config) ExcludedNode(n string) bool
- func (c *Config) ExcludedService(s string) bool
- func (c *Config) LinterLevel() int
- func (c *Config) MEMResourceLimits() Allocations
- func (c *Config) NodeCPULimit() float64
- func (c *Config) NodeMEMLimit() float64
- func (c *Config) PodCPULimit() float64
- func (c *Config) PodMEMLimit() float64
- func (c *Config) RestartsLimit() int
- func (c *Config) Sections() []string
- type Excludes
- type Flags
- type Level
- type Limits
- type Namespace
- type Node
- type Pod
- type Popeye
- type Service
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AllocationLimits ¶ added in v0.3.0
type AllocationLimits struct { CPU Allocations `yaml:"cpu"` MEM Allocations `yaml:"memory"` }
AllocationLimits tracks limit thresholds cpu and memory thresholds.
type Allocations ¶ added in v0.3.0
Allocations track under/over allocation limits.
type Config ¶
Config tracks Popeye configuration options.
func (*Config) CPUResourceLimits ¶ added in v0.3.0
func (c *Config) CPUResourceLimits() Allocations
CPUResourceLimits returns memory over/under allocation thresholds.
func (*Config) ExcludedNS ¶
ExcludedNS checks if a namespace should be excluded from the scan.
func (*Config) ExcludedNode ¶
ExcludedNode returns excluded nodes if any.
func (*Config) ExcludedService ¶
ExcludedService returns excluded services if any.
func (*Config) LinterLevel ¶ added in v0.2.0
LinterLevel returns the current lint level.
func (*Config) MEMResourceLimits ¶ added in v0.3.0
func (c *Config) MEMResourceLimits() Allocations
MEMResourceLimits returns memory over/under allocation thresholds.
func (*Config) NodeCPULimit ¶
NodeCPULimit returns the node cpu threshold if set otherwise the default.
func (*Config) NodeMEMLimit ¶
NodeMEMLimit returns the pod mem threshold if set otherwise the default.
func (*Config) PodCPULimit ¶
PodCPULimit returns the pod cpu threshold if set otherwise the default.
func (*Config) PodMEMLimit ¶
PodMEMLimit returns the pod mem threshold if set otherwise the default.
func (*Config) RestartsLimit ¶
RestartsLimit returns pod restarts limit.
type Flags ¶ added in v0.3.4
type Flags struct { *genericclioptions.ConfigFlags LintLevel *string Output *string ClearScreen *bool AllNamespaces *bool Spinach *string Sections *[]string }
Flags represents Popeye CLI flags.
func (*Flags) OutputFormat ¶ added in v0.3.4
OutputFormat returns the report output format.
type Level ¶
type Level int
Level tracks lint check level.
func ToIssueLevel ¶ added in v0.3.4
ToIssueLevel convert a string to a issue level.
type Namespace ¶
type Namespace struct {
Excludes `yaml:"exclude"`
}
Namespace tracks namespace configurations.
type Pod ¶
type Pod struct { Restarts int `yaml:"restarts"` Limits Limits `yaml:"limits"` Exclude Excludes `yaml:"exclude"` }
Pod tracks pod configurations.