Documentation
¶
Index ¶
- type Cache
- type Cluster
- type Collector
- type ConfigMap
- type DaemonSet
- type Deployment
- type HorizontalPodAutoscaler
- type Ingress
- type Namespace
- type NetworkPolicy
- type Node
- type PersistentVolume
- type PersistentVolumeClaim
- type Pod
- type PodDisruptionBudget
- type PodSecurityPolicy
- type ReplicaSet
- type Sanitizer
- func NewCluster(c *Cache, codes *issues.Codes) Sanitizer
- func NewConfigMap(c *Cache, codes *issues.Codes) Sanitizer
- func NewDaemonSet(c *Cache, codes *issues.Codes) Sanitizer
- func NewDeployment(c *Cache, codes *issues.Codes) Sanitizer
- func NewHorizontalPodAutoscaler(c *Cache, codes *issues.Codes) Sanitizer
- func NewIngress(c *Cache, codes *issues.Codes) Sanitizer
- func NewNamespace(c *Cache, codes *issues.Codes) Sanitizer
- func NewNetworkPolicy(c *Cache, codes *issues.Codes) Sanitizer
- func NewNode(c *Cache, codes *issues.Codes) Sanitizer
- func NewPersistentVolume(c *Cache, codes *issues.Codes) Sanitizer
- func NewPersistentVolumeClaim(c *Cache, codes *issues.Codes) Sanitizer
- func NewPod(c *Cache, codes *issues.Codes) Sanitizer
- func NewPodDisruptionBudget(c *Cache, codes *issues.Codes) Sanitizer
- func NewPodSecurityPolicy(c *Cache, codes *issues.Codes) Sanitizer
- func NewReplicaSet(c *Cache, codes *issues.Codes) Sanitizer
- func NewSecret(c *Cache, codes *issues.Codes) Sanitizer
- func NewService(c *Cache, codes *issues.Codes) Sanitizer
- func NewServiceAccount(c *Cache, codes *issues.Codes) Sanitizer
- func NewStatefulSet(c *Cache, codes *issues.Codes) Sanitizer
- type Secret
- type Service
- type ServiceAccount
- 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 Cluster ¶ added in v0.4.0
type Cluster struct { *issues.Collector *cache.Cluster *config.Config // contains filtered or unexported fields }
Cluster represents a Cluster sanitizer.
type DaemonSet ¶ added in v0.4.0
type DaemonSet struct { *issues.Collector *cache.DaemonSet *cache.PodsMetrics *cache.Pod *config.Config // contains filtered or unexported fields }
DaemonSet represents a DaemonSet sanitizer.
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 Ingress ¶ added in v0.4.0
type Ingress struct { *issues.Collector *cache.Ingress *config.Config // contains filtered or unexported fields }
Ingress represents a Ingress sanitizer.
type Namespace ¶
Namespace represents a Namespace sanitizer.
func (*Namespace) ReferencedNamespaces ¶
ReferencedNamespaces fetch all namespaces referenced by pods.
type NetworkPolicy ¶ added in v0.4.0
type NetworkPolicy struct { *issues.Collector *cache.NetworkPolicy *cache.Namespace *cache.Pod *config.Config // contains filtered or unexported fields }
NetworkPolicy represents a NetworkPolicy sanitizer.
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 PodSecurityPolicy ¶ added in v0.4.0
type PodSecurityPolicy struct { *issues.Collector *cache.PodSecurityPolicy *config.Config // contains filtered or unexported fields }
PodSecurityPolicy represents a PodSecurityPolicy sanitizer.
type ReplicaSet ¶ added in v0.4.0
type ReplicaSet struct { *issues.Collector *cache.ReplicaSet *cache.Pod *config.Config // contains filtered or unexported fields }
ReplicaSet represents a ReplicaSet sanitizer.
type Sanitizer ¶
Sanitizer represents a resource sanitizer.
func NewCluster ¶ added in v0.4.0
NewCluster return a new Cluster sanitizer.
func NewConfigMap ¶
NewConfigMap return a new ConfigMap sanitizer.
func NewDaemonSet ¶ added in v0.4.0
NewDaemonSet return a new DaemonSet sanitizer.
func NewDeployment ¶
NewDeployment return a new Deployment sanitizer.
func NewHorizontalPodAutoscaler ¶
NewHorizontalPodAutoscaler return a new HorizontalPodAutoscaler sanitizer.
func NewIngress ¶ added in v0.4.0
NewIngress return a new Ingress sanitizer.
func NewNamespace ¶
NewNamespace return a new Namespace sanitizer.
func NewNetworkPolicy ¶ added in v0.4.0
NewNetworkPolicy return a new NetworkPolicy 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 NewPodSecurityPolicy ¶ added in v0.4.0
NewPodSecurityPolicy return a new PodSecurityPolicy sanitizer.
func NewReplicaSet ¶ added in v0.4.0
NewReplicaSet return a new ReplicaSet sanitizer.
func NewService ¶
NewService return a new Service sanitizer.
func NewServiceAccount ¶
NewServiceAccount return a new ServiceAccount sanitizer.
type ServiceAccount ¶ added in v0.4.0
type ServiceAccount struct { *issues.Collector *cache.ServiceAccount *cache.Pod *cache.ClusterRoleBinding *cache.RoleBinding *cache.Secret }
ServiceAccount represents a ServiceAccount sanitizer.
type StatefulSet ¶
type StatefulSet struct { *issues.Collector *cache.Pod *cache.StatefulSet *cache.PodsMetrics *config.Config }
StatefulSet represents a StatefulSet sanitizer.