# Functions
DescribeInstanceGroup gets info about the specified instancegroup Exported so it can be used by the e2e tests, which don't want to instantiate a full cloudprovider.
Create a new CrossRequestRetryDelay.
No description provided by the author
ResizeInstanceGroup sets the size of the specificed instancegroup Exported so it can be used by the e2e tests, which don't want to instantiate a full cloudprovider.
# Constants
DefaultMaxEBSVolumes is the limit for volumes attached to an instance.
DefaultVolumeType specifies which storage to use for newly created Volumes TODO: Remove when user/admin can configure volume types and thus we don't need hardcoded defaults.
MaxReadThenCreateRetries sets the maximum number of attempts we will make when we read to see if something exists and then try to create it if we didn't find it.
ProviderName is the name of this cloud provider.
No description provided by the author
ServiceAnnotationLoadBalancerBEProtocol is the annotation used on the service to specify the protocol spoken by the backend (pod) behind a secure listener.
ServiceAnnotationLoadBalancerCertificate is the annotation used on the service to request a secure listener.
ServiceAnnotationLoadBalancerInternal is the annotation used on the service to indicate that we want an internal ELB.
ServiceAnnotationLoadBalancerProxyProtocol is the annotation used on the service to enable the proxy protocol on an ELB.
ServiceAnnotationLoadBalancerSSLPorts is the annotation used on the service to specify a comma-separated list of ports that will use SSL/HTTPS listeners.
TagNameKubernetesCluster is the tag name we use to differentiate multiple logically independent clusters running in the same AZ.
TagNameKubernetesService is the tag name we use to differentiate multiple services.
TagNameSubnetInternalELB is the tag name used on a subnet to designate that it should be used for internal ELBs.
TagNameSubnetPublicELB is the tag name used on a subnet to designate that it should be used for internet ELBs.
# Structs
Backoff manages a backoff that varies based on the recently observed failures.
Cloud is an implementation of Interface, LoadBalancer and Instances for Amazon Web Services.
CloudConfig wraps the settings for the AWS cloud provider.
CrossRequestRetryDelay inserts delays before AWS calls, when we are observing RequestLimitExceeded errors Note that we share a CrossRequestRetryDelay across multiple AWS requests; this is a process-wide back-off, whereas the aws-sdk-go implements a per-request exponential backoff/retry.
VolumeOptions specifies capacity and tags for a volume.
# Interfaces
ASG is a simple pass-through of the Autoscaling client interface, which allows for testing.
EC2 is an abstraction over AWS', to allow mocking/other implementations Note that the DescribeX functions return a list, so callers don't need to deal with paging TODO: Should we rename this to AWS (EBS & ELB are not technically part of EC2).
EC2Metadata is an abstraction over the AWS metadata service.
ELB is a simple pass-through of AWS' ELB client interface, which allows for testing.
InstanceGroupInfo is returned by InstanceGroups.Describe, and exposes information about the group.
InstanceGroups is an interface for managing cloud-managed instance groups / autoscaling instance groups TODO: Allow other clouds to implement this.
Services is an abstraction over AWS, to allow mocking/other implementations.
Volumes is an interface for managing cloud-provisioned volumes TODO: Allow other clouds to implement this.
# Type aliases
No description provided by the author