Documentation
¶
Index ¶
- type Cache
- type Collector
- type ConfigMap
- type Deployment
- type HorizontalPodAutoscaler
- type Namespace
- type Node
- type PersistentVolume
- type PersistentVolumeClaim
- type Pod
- type PodDisruptionBudget
- type Sanitizer
- func NewConfigMap(c *Cache) Sanitizer
- func NewDeployment(c *Cache) Sanitizer
- func NewHorizontalPodAutoscaler(c *Cache) Sanitizer
- func NewNamespace(c *Cache) Sanitizer
- func NewNode(c *Cache) Sanitizer
- func NewPersistentVolume(c *Cache) Sanitizer
- func NewPersistentVolumeClaim(c *Cache) Sanitizer
- func NewPod(c *Cache) Sanitizer
- func NewPodDisruptionBudget(c *Cache) Sanitizer
- func NewSecret(c *Cache) Sanitizer
- func NewService(c *Cache) Sanitizer
- func NewServiceAccount(c *Cache) Sanitizer
- func NewStatefulSet(c *Cache) Sanitizer
- type Secret
- type Service
- type ServiceAccouunt
- type StatefulSet
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Cache ¶ added in v0.3.5
type Cache struct {
// contains filtered or unexported fields
}
Cache caches commonly used resources.
type Deployment ¶
type Deployment struct { *issues.Collector *cache.Deployment *cache.PodsMetrics *cache.Pod *config.Config // contains filtered or unexported fields }
Deployment represents a Deployment sanitizer.
type HorizontalPodAutoscaler ¶
type HorizontalPodAutoscaler struct { *issues.Collector *cache.HorizontalPodAutoscaler *cache.Pod *cache.PodsMetrics *cache.Deployment *cache.StatefulSet *cache.NodesMetrics *config.Config }
HorizontalPodAutoscaler represents a HorizontalPodAutoscaler sanitizer.
type Namespace ¶
Namespace represents a Namespace sanitizer.
func (*Namespace) ReferencedNamespaces ¶
ReferencedNamespaces fetch all namespaces referenced by pods.
type PersistentVolume ¶
PersistentVolume represents a PersistentVolume sanitizer.
type PersistentVolumeClaim ¶
PersistentVolumeClaim represents a PersistentVolumeClaim sanitizer.
type Pod ¶
type Pod struct { *issues.Collector *cache.Pod *cache.PodsMetrics *config.Config *cache.PodDisruptionBudget }
Pod represents a Pod sanitizer.
type PodDisruptionBudget ¶ added in v0.3.10
PodDisruptionBudget represents a pdb sanitizer.
type Sanitizer ¶
Sanitizer represents a resource sanitizer.
func NewConfigMap ¶
NewConfigMap return a new ConfigMap sanitizer.
func NewDeployment ¶
NewDeployment return a new Deployment sanitizer.
func NewHorizontalPodAutoscaler ¶
NewHorizontalPodAutoscaler return a new HorizontalPodAutoscaler sanitizer.
func NewNamespace ¶
NewNamespace return a new Namespace sanitizer.
func NewPersistentVolume ¶
NewPersistentVolume return a new PersistentVolume sanitizer.
func NewPersistentVolumeClaim ¶
NewPersistentVolumeClaim return a new PersistentVolumeClaim sanitizer.
func NewPodDisruptionBudget ¶ added in v0.3.10
NewPodDisruptionBudget return a new PodDisruptionBudget sanitizer.
func NewServiceAccount ¶
NewServiceAccount return a new ServiceAccouunt sanitizer.
func NewStatefulSet ¶
NewStatefulSet return a new StatefulSet sanitizer.
type ServiceAccouunt ¶
type ServiceAccouunt struct { *issues.Collector *cache.ServiceAccount *cache.Pod *cache.ClusterRoleBinding *cache.RoleBinding }
ServiceAccouunt represents a ServiceAccouunt sanitizer.
type StatefulSet ¶
type StatefulSet struct { *issues.Collector *cache.Pod *cache.StatefulSet *cache.PodsMetrics *config.Config }
StatefulSet represents a StatefulSet sanitizer.