Documentation ¶
Index ¶
Constants ¶
View Source
const (
// Name is the identifier of the resource.
Name = "cleanuploadbalancers"
)
Variables ¶
This section is empty.
Functions ¶
func IsInvalidConfig ¶
IsInvalidConfig asserts invalidConfigError.
Types ¶
type Clients ¶
type Clients struct { ELB ELBClient ELBv2 ELBClientv2 }
type Config ¶
type Config struct { // Dependencies. Logger micrologger.Logger }
Config represents the configuration used to create a new loadbalancer resource.
type ELBClient ¶
type ELBClient interface { DeleteLoadBalancer(*elb.DeleteLoadBalancerInput) (*elb.DeleteLoadBalancerOutput, error) DescribeLoadBalancers(*elb.DescribeLoadBalancersInput) (*elb.DescribeLoadBalancersOutput, error) DescribeTags(*elb.DescribeTagsInput) (*elb.DescribeTagsOutput, error) }
ELBClient describes the methods required to be implemented by an ELB AWS client. The ELB API provides support for classic ELBs.
type ELBClientv2 ¶
type ELBClientv2 interface { DeleteLoadBalancer(*elbv2.DeleteLoadBalancerInput) (*elbv2.DeleteLoadBalancerOutput, error) DescribeLoadBalancers(*elbv2.DescribeLoadBalancersInput) (*elbv2.DescribeLoadBalancersOutput, error) DescribeTags(*elbv2.DescribeTagsInput) (*elbv2.DescribeTagsOutput, error) }
ELBClient describes the methods required to be implemented by an ELB AWS client. The ELB API provides support for classic ELBs.
type LoadBalancerState ¶
type LoadBalancerState struct {
LoadBalancerNames []string
}
type LoadBalancerStateV2 ¶
type Resource ¶
type Resource struct {
// contains filtered or unexported fields
}
Resource implements the loadbalancer resource.
func (*Resource) EnsureCreated ¶
EnsureCreated is a no-op, because the loadbalancer resource is only interested in delete events.
func (*Resource) EnsureDeleted ¶
EnsureDeleted ensures that any ELBs from Kubernetes LoadBalancer services are deleted. This is needed because the use the VPC public subnet.
Source Files ¶
Click to show internal directories.
Click to hide internal directories.