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