Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Client ¶
type Client interface { Config ClusterHasMetrics() bool FetchNodesMetrics() ([]mv1beta1.NodeMetrics, error) FetchPodsMetrics(ns string) ([]mv1beta1.PodMetrics, error) ListServices() ([]v1.Service, error) ListNodes() ([]v1.Node, error) ListEndpoints() (map[string]v1.Endpoints, error) GetEndpoints(fqn string) (*v1.Endpoints, error) GetPod(map[string]string) (*v1.Pod, error) ListPods() (map[string]v1.Pod, error) ListNS() ([]v1.Namespace, error) InUseNamespaces(used []string) }
Client represents a Kubernetes Client.
type Config ¶
type Config interface { PodCPULimit() float64 PodMEMLimit() float64 NodeCPULimit() float64 NodeMEMLimit() float64 RestartsLimit() int ActiveNamespace() string }
Config represents a Popeye configuration.
type Error ¶
type Error struct {
// contains filtered or unexported fields
}
Error tracks a linter issue.
func (Error) Description ¶
Description returns the lint description.
type Linter ¶
type Linter struct {
// contains filtered or unexported fields
}
Linter describes a lint resource.
func (*Linter) MaxSeverity ¶
MaxSeverity scans the lint messages and return the highest severity.
type Namespace ¶
type Namespace struct {
*Linter
}
Namespace represents a Namespace linter.
func NewNamespace ¶
NewNamespace returns a new namespace linter.
Click to show internal directories.
Click to hide internal directories.