Documentation
¶
Index ¶
- func ToPerc(v1, v2 int64) int64
- type ConfigMap
- type ConsumptionMetrics
- type Container
- type Deployment
- type Error
- type Fetcher
- type Filter
- func (f *Filter) GetEndpoints(svcFQN string) (*v1.Endpoints, error)
- func (f *Filter) GetPod(sel map[string]string) (*v1.Pod, error)
- func (f *Filter) ListAllClusterRoleBindings() (map[string]rbacv1.ClusterRoleBinding, error)
- func (f *Filter) ListAllConfigMaps() (map[string]v1.ConfigMap, error)
- func (f *Filter) ListAllDeployments() (map[string]appsv1.Deployment, error)
- func (f *Filter) ListAllEndpoints() (map[string]v1.Endpoints, error)
- func (f *Filter) ListAllHorizontalPodAutoscalers() (map[string]autoscalingv1.HorizontalPodAutoscaler, error)
- func (f *Filter) ListAllNamespaces() (map[string]v1.Namespace, error)
- func (f *Filter) ListAllPersistentVolumeClaims() (map[string]v1.PersistentVolumeClaim, error)
- func (f *Filter) ListAllPods() (map[string]v1.Pod, error)
- func (f *Filter) ListAllRoleBindings() (map[string]rbacv1.RoleBinding, error)
- func (f *Filter) ListAllSecrets() (map[string]v1.Secret, error)
- func (f *Filter) ListAllServiceAccounts() (map[string]v1.ServiceAccount, error)
- func (f *Filter) ListAllServices() (map[string]v1.Service, error)
- func (f *Filter) ListAllStatefulSets() (map[string]appsv1.StatefulSet, error)
- func (f *Filter) ListConfigMaps() (map[string]v1.ConfigMap, error)
- func (f *Filter) ListDeployments() (map[string]appsv1.Deployment, error)
- func (f *Filter) ListEndpoints() (map[string]v1.Endpoints, error)
- func (f *Filter) ListHorizontalPodAutoscalers() (map[string]autoscalingv1.HorizontalPodAutoscaler, error)
- func (f *Filter) ListNamespaces() (map[string]v1.Namespace, error)
- func (f *Filter) ListNodes() ([]v1.Node, error)
- func (*Filter) ListNodesMetrics(nodes []v1.Node, metrics []mv1beta1.NodeMetrics, nmx k8s.NodesMetrics)
- func (f *Filter) ListPersistentVolumeClaims() (map[string]v1.PersistentVolumeClaim, error)
- func (f *Filter) ListPersistentVolumes() (map[string]v1.PersistentVolume, error)
- func (f *Filter) ListPods() (map[string]v1.Pod, error)
- func (f *Filter) ListPodsByLabels(sel string) (map[string]v1.Pod, error)
- func (*Filter) ListPodsMetrics(pods []mv1beta1.PodMetrics, nmx k8s.PodsMetrics)
- func (f *Filter) ListRoleBindings() (map[string]rbacv1.RoleBinding, error)
- func (f *Filter) ListSecrets() (map[string]v1.Secret, error)
- func (f *Filter) ListServiceAccounts() (map[string]v1.ServiceAccount, error)
- func (f *Filter) ListServices() (map[string]v1.Service, error)
- func (f *Filter) ListStatefulSets() (map[string]appsv1.StatefulSet, error)
- func (f *Filter) PodsNamespaces(nss []string)
- type HorizontalPodAutoscaler
- type Issue
- type Issues
- type Level
- type Linter
- type Lister
- type Loader
- type Namespace
- type Node
- type PersistentVolume
- type PersistentVolumeClaim
- type Pod
- type PodMetric
- type Reference
- type References
- type Secret
- type Service
- type ServiceAccount
- type Spinach
- type StatefulSet
- type TypedReferences
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type ConfigMap ¶ added in v0.3.0
type ConfigMap struct {
*Linter
}
ConfigMap represents a ConfigMap linter.
func NewConfigMap ¶ added in v0.3.0
NewConfigMap returns a new ConfigMap linter.
type ConsumptionMetrics ¶ added in v0.3.0
type ConsumptionMetrics struct { CurrentCPU resource.Quantity CurrentMEM resource.Quantity RequestedCPU resource.Quantity RequestedMEM resource.Quantity RequestedStorage resource.Quantity }
ConsumptionMetrics tracks managed pods resource utilization.
func (*ConsumptionMetrics) ReqCPURatio ¶ added in v0.3.0
func (d *ConsumptionMetrics) ReqCPURatio() int64
ReqCPURatio returns current cpu usage over requested percentage.
func (*ConsumptionMetrics) ReqMEMRatio ¶ added in v0.3.0
func (d *ConsumptionMetrics) ReqMEMRatio() int64
ReqMEMRatio returns current memory usage over requested percentage.
type Deployment ¶ added in v0.3.0
type Deployment struct {
*Linter
}
Deployment represents a Deployment linter.
func NewDeployment ¶ added in v0.3.0
func NewDeployment(l Loader, log *zerolog.Logger) *Deployment
NewDeployment returns a new Deployment linter.
type Error ¶
type Error struct { Level Level `json:"level" yaml:"level"` Message string `json:"message" yaml:"message"` Subs Issues `json:"containers,omitempty" yaml:"containers,omitempty"` }
Error tracks a linter issue.
func (*Error) Description ¶
Description returns the lint Message.
func (*Error) HasSubIssues ¶ added in v0.3.0
HasSubIssues checks if error contains sub issues.
func (*Error) SetSeverity ¶ added in v0.3.0
SetSeverity sets the severity level.
type Fetcher ¶ added in v0.2.0
type Fetcher interface { ActiveCluster() string ActiveNamespace() string ClusterHasMetrics() (bool, error) FetchNodesMetrics() ([]mv1beta1.NodeMetrics, error) FetchPodsMetrics(ns string) ([]mv1beta1.PodMetrics, error) FetchNodes() (*v1.NodeList, error) FetchNamespaces() (*v1.NamespaceList, error) FetchPods() (*v1.PodList, error) FetchPodsByLabels(string) (*v1.PodList, error) FetchConfigMaps() (*v1.ConfigMapList, error) FetchSecrets() (*v1.SecretList, error) FetchServiceAccounts() (*v1.ServiceAccountList, error) FetchEndpoints() (*v1.EndpointsList, error) FetchServices() (*v1.ServiceList, error) FetchClusterRoleBindings() (*rbacv1.ClusterRoleBindingList, error) FetchRoleBindings() (*rbacv1.RoleBindingList, error) FetchPersistentVolumes() (*v1.PersistentVolumeList, error) FetchPersistentVolumeClaims() (*v1.PersistentVolumeClaimList, error) FetchHorizontalPodAutoscalers() (*autoscalingv1.HorizontalPodAutoscalerList, error) FetchDeployments() (*appsv1.DeploymentList, error) FetchStatefulSets() (*appsv1.StatefulSetList, error) }
Fetcher fetches Kubernetes resources from the apiserver.
type Filter ¶ added in v0.2.0
Filter represents a Kubernetes resources filter based on configuration.
func (*Filter) GetEndpoints ¶ added in v0.2.0
GetEndpoints returns a endpoint instance if present or an error if not.
func (*Filter) ListAllClusterRoleBindings ¶ added in v0.2.0
func (f *Filter) ListAllClusterRoleBindings() (map[string]rbacv1.ClusterRoleBinding, error)
ListAllClusterRoleBindings returns a ClusterRoleBindings.
func (*Filter) ListAllConfigMaps ¶ added in v0.2.0
ListAllConfigMaps fetch all configmaps on the cluster.
func (*Filter) ListAllDeployments ¶ added in v0.3.0
func (f *Filter) ListAllDeployments() (map[string]appsv1.Deployment, error)
ListAllDeployments returns all Deployments on cluster.
func (*Filter) ListAllEndpoints ¶ added in v0.2.0
ListAllEndpoints returns all the endpoints on a cluster.
func (*Filter) ListAllHorizontalPodAutoscalers ¶ added in v0.3.0
func (f *Filter) ListAllHorizontalPodAutoscalers() (map[string]autoscalingv1.HorizontalPodAutoscaler, error)
ListAllHorizontalPodAutoscalers returns all HorizontalPodAutoscaler.
func (*Filter) ListAllNamespaces ¶ added in v0.2.0
ListAllNamespaces fetch all namespaces on this cluster.
func (*Filter) ListAllPersistentVolumeClaims ¶ added in v0.3.0
func (f *Filter) ListAllPersistentVolumeClaims() (map[string]v1.PersistentVolumeClaim, error)
ListAllPersistentVolumeClaims returns all PersistentVolumeClaims.
func (*Filter) ListAllPods ¶ added in v0.2.0
ListAllPods fetch all pods on the cluster.
func (*Filter) ListAllRoleBindings ¶ added in v0.2.0
func (f *Filter) ListAllRoleBindings() (map[string]rbacv1.RoleBinding, error)
ListAllRoleBindings returns all RoleBindings.
func (*Filter) ListAllSecrets ¶ added in v0.2.0
ListAllSecrets fetch all secrets on the cluster.
func (*Filter) ListAllServiceAccounts ¶ added in v0.2.0
func (f *Filter) ListAllServiceAccounts() (map[string]v1.ServiceAccount, error)
ListAllServiceAccounts fetch all ServiceAccount on the cluster.
func (*Filter) ListAllServices ¶ added in v0.2.0
ListAllServices lists services in the cluster.
func (*Filter) ListAllStatefulSets ¶ added in v0.3.0
func (f *Filter) ListAllStatefulSets() (map[string]appsv1.StatefulSet, error)
ListAllStatefulSets returns all StatefulSets on cluster.
func (*Filter) ListConfigMaps ¶ added in v0.2.0
ListConfigMaps list all included ConfigMaps.
func (*Filter) ListDeployments ¶ added in v0.3.0
func (f *Filter) ListDeployments() (map[string]appsv1.Deployment, error)
ListDeployments lists all available Deployments in allowed namespace.
func (*Filter) ListEndpoints ¶ added in v0.2.0
ListEndpoints returns a collection of endpoints in allowed namespaces.
func (*Filter) ListHorizontalPodAutoscalers ¶ added in v0.3.0
func (f *Filter) ListHorizontalPodAutoscalers() (map[string]autoscalingv1.HorizontalPodAutoscaler, error)
ListHorizontalPodAutoscalers lists all available PVCs on the cluster.
func (*Filter) ListNamespaces ¶ added in v0.2.0
ListNamespaces lists all available namespaces.
func (*Filter) ListNodesMetrics ¶ added in v0.2.0
func (*Filter) ListNodesMetrics(nodes []v1.Node, metrics []mv1beta1.NodeMetrics, nmx k8s.NodesMetrics)
ListNodesMetrics retrieves metrics for a given set of nodes.
func (*Filter) ListPersistentVolumeClaims ¶ added in v0.3.0
func (f *Filter) ListPersistentVolumeClaims() (map[string]v1.PersistentVolumeClaim, error)
ListPersistentVolumeClaims lists all available PVCs on the cluster.
func (*Filter) ListPersistentVolumes ¶ added in v0.3.0
func (f *Filter) ListPersistentVolumes() (map[string]v1.PersistentVolume, error)
ListPersistentVolumes returns all PersistentVolumes.
func (*Filter) ListPodsByLabels ¶ added in v0.3.0
ListPodsByLabels retrieves all pods matching a label selector in the allowed namespaces.
func (*Filter) ListPodsMetrics ¶ added in v0.2.0
func (*Filter) ListPodsMetrics(pods []mv1beta1.PodMetrics, nmx k8s.PodsMetrics)
ListPodsMetrics retrieves metrics for all pods in a given namespace.
func (*Filter) ListRoleBindings ¶ added in v0.2.0
func (f *Filter) ListRoleBindings() (map[string]rbacv1.RoleBinding, error)
ListRoleBindings lists all available RBs in the allowed namespaces.
func (*Filter) ListSecrets ¶ added in v0.2.0
ListSecrets list included Secrets.
func (*Filter) ListServiceAccounts ¶ added in v0.2.0
func (f *Filter) ListServiceAccounts() (map[string]v1.ServiceAccount, error)
ListServiceAccounts list included ServiceAccounts.
func (*Filter) ListServices ¶ added in v0.2.0
ListServices lists services in tolerated namespaces.
func (*Filter) ListStatefulSets ¶ added in v0.3.0
func (f *Filter) ListStatefulSets() (map[string]appsv1.StatefulSet, error)
ListStatefulSets lists all available StatefulSets in allowed namespace.
func (*Filter) PodsNamespaces ¶ added in v0.2.0
PodsNamespaces fetch a list of all namespaces used by pods.
type HorizontalPodAutoscaler ¶ added in v0.3.0
type HorizontalPodAutoscaler struct {
*Linter
}
HorizontalPodAutoscaler represents a HorizontalPodAutoscaler linter.
func NewHorizontalPodAutoscaler ¶ added in v0.3.0
func NewHorizontalPodAutoscaler(l Loader, log *zerolog.Logger) *HorizontalPodAutoscaler
NewHorizontalPodAutoscaler returns a new ServiceAccount linter.
type Issue ¶
type Issue interface { Severity() Level SetSeverity(Level) Description() string HasSubIssues() bool SubIssues() Issues }
Issue indicates a potential linter issue.
type Issues ¶
Issues a collection of linter issues.
func (Issues) MaxSeverity ¶ added in v0.3.0
MaxSeverity scans the issues and reports the highest severity.
type Linter ¶
type Linter struct { Loader // contains filtered or unexported fields }
Linter describes a lint resource.
func (*Linter) MaxSeverity ¶
MaxSeverity return the highest severity level.
type Lister ¶ added in v0.2.0
type Lister interface { ListNodesMetrics([]v1.Node, []mv1beta1.NodeMetrics, k8s.NodesMetrics) ListPodsMetrics([]mv1beta1.PodMetrics, k8s.PodsMetrics) ListServices() (map[string]v1.Service, error) ListNodes() ([]v1.Node, error) GetEndpoints(fqn string) (*v1.Endpoints, error) PodsNamespaces(used []string) GetPod(map[string]string) (*v1.Pod, error) ListPods() (map[string]v1.Pod, error) ListPodsByLabels(string) (map[string]v1.Pod, error) ListAllPods() (map[string]v1.Pod, error) ListNamespaces() (map[string]v1.Namespace, error) ListRoleBindings() (map[string]rbacv1.RoleBinding, error) ListAllRoleBindings() (map[string]rbacv1.RoleBinding, error) ListAllClusterRoleBindings() (map[string]rbacv1.ClusterRoleBinding, error) ListConfigMaps() (map[string]v1.ConfigMap, error) ListSecrets() (map[string]v1.Secret, error) ListServiceAccounts() (map[string]v1.ServiceAccount, error) ListPersistentVolumes() (map[string]v1.PersistentVolume, error) ListPersistentVolumeClaims() (map[string]v1.PersistentVolumeClaim, error) ListAllPersistentVolumeClaims() (map[string]v1.PersistentVolumeClaim, error) ListHorizontalPodAutoscalers() (map[string]autoscalingv1.HorizontalPodAutoscaler, error) ListAllHorizontalPodAutoscalers() (map[string]autoscalingv1.HorizontalPodAutoscaler, error) ListDeployments() (map[string]appsv1.Deployment, error) ListAllDeployments() (map[string]appsv1.Deployment, error) ListStatefulSets() (map[string]appsv1.StatefulSet, error) ListAllStatefulSets() (map[string]appsv1.StatefulSet, error) }
Lister list Kubernetes resource based on configuration scopes.
type Namespace ¶
type Namespace struct {
*Linter
}
Namespace represents a Namespace linter.
func NewNamespace ¶
NewNamespace returns a new namespace linter.
type PersistentVolume ¶ added in v0.3.0
type PersistentVolume struct {
*Linter
}
PersistentVolume represents a PersistentVolume linter.
func NewPersistentVolume ¶ added in v0.3.0
func NewPersistentVolume(l Loader, log *zerolog.Logger) *PersistentVolume
NewPersistentVolume returns a new PersistentVolume linter.
type PersistentVolumeClaim ¶ added in v0.3.0
type PersistentVolumeClaim struct {
*Linter
}
PersistentVolumeClaim represents a PersistentVolumeClaim linter.
func NewPersistentVolumeClaim ¶ added in v0.3.0
func NewPersistentVolumeClaim(l Loader, log *zerolog.Logger) *PersistentVolumeClaim
NewPersistentVolumeClaim returns a new PersistentVolumeClaim linter.
type Reference ¶ added in v0.2.0
type Reference struct {
// contains filtered or unexported fields
}
Reference tracks a configuration reference.
type References ¶ added in v0.2.0
type References map[string]TypedReferences
References tracks configuration references.
type Secret ¶ added in v0.2.0
type Secret struct {
*Linter
}
Secret represents a Secret linter.
type Service ¶
type Service struct {
*Linter
}
Service represents a service linter.
func NewService ¶
NewService returns a new service linter.
type ServiceAccount ¶ added in v0.3.0
type ServiceAccount struct {
*Linter
}
ServiceAccount represents a ServiceAccount linter.
func NewServiceAccount ¶ added in v0.3.0
func NewServiceAccount(l Loader, log *zerolog.Logger) *ServiceAccount
NewServiceAccount returns a new ServiceAccount linter.
type Spinach ¶ added in v0.2.0
type Spinach interface { PodCPULimit() float64 PodMEMLimit() float64 NodeCPULimit() float64 NodeMEMLimit() float64 RestartsLimit() int CPUResourceLimits() config.Allocations MEMResourceLimits() config.Allocations Sections() []string LinterLevel() int ExcludedNS(ns string) bool ExcludedNode(n string) bool }
Spinach represents a Popeye configuration object.
type StatefulSet ¶ added in v0.3.0
type StatefulSet struct {
*Linter
}
StatefulSet represents a StatefulSet linter.
func NewStatefulSet ¶ added in v0.3.0
func NewStatefulSet(l Loader, log *zerolog.Logger) *StatefulSet
NewStatefulSet returns a new StatefulSet linter.
type TypedReferences ¶ added in v0.2.0
TypedReferences tracks configuration type references.