scrub

package
v0.4.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 5, 2019 License: Apache-2.0 Imports: 7 Imported by: 0

Documentation

Index

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.

func NewCache added in v0.3.5

func NewCache(c *k8s.Client, cfg *config.Config) *Cache

NewCache returns a new resource cache

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.

func (*Cluster) Sanitize added in v0.4.0

func (d *Cluster) Sanitize(ctx context.Context) error

Sanitize all available Clusters.

type Collector

type Collector interface {
	MaxSeverity(res string) issues.Level
	Outcome() issues.Outcome
}

Collector collects sanitization issues.

type ConfigMap

type ConfigMap struct {
	*issues.Collector
	*cache.Pod
	*cache.ConfigMap
}

ConfigMap represents a configMap sanitizer.

func (*ConfigMap) Sanitize

func (c *ConfigMap) Sanitize(ctx context.Context) error

Sanitize all available ConfigMaps.

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.

func (*DaemonSet) Sanitize added in v0.4.0

func (d *DaemonSet) Sanitize(ctx context.Context) error

Sanitize all available DaemonSets.

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.

func (*Deployment) Sanitize

func (d *Deployment) Sanitize(ctx context.Context) error

Sanitize all available Deployments.

type HorizontalPodAutoscaler

HorizontalPodAutoscaler represents a HorizontalPodAutoscaler sanitizer.

func (*HorizontalPodAutoscaler) Sanitize

func (h *HorizontalPodAutoscaler) Sanitize(ctx context.Context) error

Sanitize all available HorizontalPodAutoscalers.

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.

func (*Ingress) Sanitize added in v0.4.0

func (i *Ingress) Sanitize(ctx context.Context) error

Sanitize all available Ingresss.

type Namespace

type Namespace struct {
	*issues.Collector
	*cache.Namespace
	*cache.Pod
}

Namespace represents a Namespace sanitizer.

func (*Namespace) ReferencedNamespaces

func (n *Namespace) ReferencedNamespaces(res map[string]struct{})

ReferencedNamespaces fetch all namespaces referenced by pods.

func (*Namespace) Sanitize

func (n *Namespace) Sanitize(ctx context.Context) error

Sanitize all available Namespaces.

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.

func (*NetworkPolicy) Sanitize added in v0.4.0

func (n *NetworkPolicy) Sanitize(ctx context.Context) error

Sanitize all available NetworkPolicys.

type Node

Node represents a Node sanitizer.

func (*Node) Sanitize

func (n *Node) Sanitize(ctx context.Context) error

Sanitize all available Nodes.

type PersistentVolume

type PersistentVolume struct {
	*issues.Collector
	*cache.PersistentVolume
	*cache.Pod
}

PersistentVolume represents a PersistentVolume sanitizer.

func (*PersistentVolume) Sanitize

func (s *PersistentVolume) Sanitize(ctx context.Context) error

Sanitize all available PersistentVolumes.

type PersistentVolumeClaim

type PersistentVolumeClaim struct {
	*issues.Collector
	*cache.PersistentVolumeClaim
	*cache.Pod
}

PersistentVolumeClaim represents a PersistentVolumeClaim sanitizer.

func (*PersistentVolumeClaim) Sanitize

func (s *PersistentVolumeClaim) Sanitize(ctx context.Context) error

Sanitize all available PersistentVolumeClaims.

type Pod

Pod represents a Pod sanitizer.

func (*Pod) Sanitize

func (p *Pod) Sanitize(ctx context.Context) error

Sanitize all available Pods.

type PodDisruptionBudget added in v0.3.10

type PodDisruptionBudget struct {
	*issues.Collector
	*cache.Pod
	*cache.PodDisruptionBudget
}

PodDisruptionBudget represents a pdb sanitizer.

func (*PodDisruptionBudget) Sanitize added in v0.3.10

func (c *PodDisruptionBudget) Sanitize(ctx context.Context) error

Sanitize all available PodDisruptionBudgets.

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.

func (*PodSecurityPolicy) Sanitize added in v0.4.0

func (p *PodSecurityPolicy) Sanitize(ctx context.Context) error

Sanitize all available PodSecurityPolicys.

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.

func (*ReplicaSet) Sanitize added in v0.4.0

func (d *ReplicaSet) Sanitize(ctx context.Context) error

Sanitize all available ReplicaSets.

type Sanitizer

type Sanitizer interface {
	Collector
	Sanitize(context.Context) error
}

Sanitizer represents a resource sanitizer.

func NewCluster added in v0.4.0

func NewCluster(c *Cache, codes *issues.Codes) Sanitizer

NewCluster return a new Cluster sanitizer.

func NewConfigMap

func NewConfigMap(c *Cache, codes *issues.Codes) Sanitizer

NewConfigMap return a new ConfigMap sanitizer.

func NewDaemonSet added in v0.4.0

func NewDaemonSet(c *Cache, codes *issues.Codes) Sanitizer

NewDaemonSet return a new DaemonSet sanitizer.

func NewDeployment

func NewDeployment(c *Cache, codes *issues.Codes) Sanitizer

NewDeployment return a new Deployment sanitizer.

func NewHorizontalPodAutoscaler

func NewHorizontalPodAutoscaler(c *Cache, codes *issues.Codes) Sanitizer

NewHorizontalPodAutoscaler return a new HorizontalPodAutoscaler sanitizer.

func NewIngress added in v0.4.0

func NewIngress(c *Cache, codes *issues.Codes) Sanitizer

NewIngress return a new Ingress sanitizer.

func NewNamespace

func NewNamespace(c *Cache, codes *issues.Codes) Sanitizer

NewNamespace return a new Namespace sanitizer.

func NewNetworkPolicy added in v0.4.0

func NewNetworkPolicy(c *Cache, codes *issues.Codes) Sanitizer

NewNetworkPolicy return a new NetworkPolicy sanitizer.

func NewNode

func NewNode(c *Cache, codes *issues.Codes) Sanitizer

NewNode return a new Node sanitizer.

func NewPersistentVolume

func NewPersistentVolume(c *Cache, codes *issues.Codes) Sanitizer

NewPersistentVolume return a new PersistentVolume sanitizer.

func NewPersistentVolumeClaim

func NewPersistentVolumeClaim(c *Cache, codes *issues.Codes) Sanitizer

NewPersistentVolumeClaim return a new PersistentVolumeClaim sanitizer.

func NewPod

func NewPod(c *Cache, codes *issues.Codes) Sanitizer

NewPod return a new Pod sanitizer.

func NewPodDisruptionBudget added in v0.3.10

func NewPodDisruptionBudget(c *Cache, codes *issues.Codes) Sanitizer

NewPodDisruptionBudget return a new PodDisruptionBudget sanitizer.

func NewPodSecurityPolicy added in v0.4.0

func NewPodSecurityPolicy(c *Cache, codes *issues.Codes) Sanitizer

NewPodSecurityPolicy return a new PodSecurityPolicy sanitizer.

func NewReplicaSet added in v0.4.0

func NewReplicaSet(c *Cache, codes *issues.Codes) Sanitizer

NewReplicaSet return a new ReplicaSet sanitizer.

func NewSecret

func NewSecret(c *Cache, codes *issues.Codes) Sanitizer

NewSecret return a new Secret sanitizer.

func NewService

func NewService(c *Cache, codes *issues.Codes) Sanitizer

NewService return a new Service sanitizer.

func NewServiceAccount

func NewServiceAccount(c *Cache, codes *issues.Codes) Sanitizer

NewServiceAccount return a new ServiceAccount sanitizer.

func NewStatefulSet

func NewStatefulSet(c *Cache, codes *issues.Codes) Sanitizer

NewStatefulSet return a new StatefulSet sanitizer.

type Secret

type Secret struct {
	*issues.Collector
	*cache.Secret
	*cache.Pod
	*cache.ServiceAccount
}

Secret represents a Secret sanitizer.

func (*Secret) Sanitize

func (c *Secret) Sanitize(ctx context.Context) error

Sanitize all available Secrets.

type Service

type Service struct {
	*issues.Collector
	*cache.Service
	*cache.Pod
	*cache.Endpoints
}

Service represents a Service sanitizer.

func (*Service) Sanitize

func (s *Service) Sanitize(ctx context.Context) error

Sanitize all available Services.

type ServiceAccount added in v0.4.0

ServiceAccount represents a ServiceAccount sanitizer.

func (*ServiceAccount) Sanitize added in v0.4.0

func (s *ServiceAccount) Sanitize(ctx context.Context) error

Sanitize all available ServiceAccounts.

type StatefulSet

StatefulSet represents a StatefulSet sanitizer.

func (*StatefulSet) Sanitize

func (c *StatefulSet) Sanitize(ctx context.Context) error

Sanitize all available StatefulSets.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL
JackTT - Gopher 🇻🇳