Documentation ¶
Overview ¶
Package utils contains shared data structures and functions.
Index ¶
- Constants
- Variables
- func AddIPToLBStatus(status *api_v1.LoadBalancerStatus, ips ...string) *api_v1.LoadBalancerStatus
- func BetaToAlphaHealthCheck(hc *computebeta.HealthCheck) (*computealpha.HealthCheck, error)
- func DeepCopyComputeHealthCheck(src *compute.HealthCheck) *compute.HealthCheck
- func EqualMapping(a, b *GCEURLMap) bool
- func EqualResourceIDs(a, b string) bool
- func EqualResourcePaths(a, b string) bool
- func EqualStringSets(x, y []string) bool
- func GetBasePath(cloud *gce.Cloud) string
- func GetErrorType(err error) string
- func GetNetworkTier(service *api_v1.Service) (cloud.NetworkTier, bool)
- func GetNodePrimaryIP(inputNode *api_v1.Node) string
- func GetPortRanges(ports []int) (ranges []string)
- func GetPorts(svcPorts []api_v1.ServicePort) []string
- func GetProtocol(svcPorts []api_v1.ServicePort) api_v1.Protocol
- func GetReadyNodeNames(lister listers.NodeLister) ([]string, error)
- func GetServiceNodePort(service *api_v1.Service) int64
- func GetServicePortRanges(svcPorts []api_v1.ServicePort) []string
- func HasL4NetLBFinalizerV2(svc *api_v1.Service) bool
- func HasVIP(ing *networkingv1.Ingress) bool
- func IGLinks(igs []*compute.InstanceGroup) (igLinks []string)
- func IPv4ServiceSourceRanges(service *v1.Service) ([]string, error)
- func IPv6ServiceSourceRanges(service *v1.Service) ([]string, error)
- func IgnoreHTTPNotFound(err error) error
- func IsForbiddenError(err error) bool
- func IsGCEIngress(ing *networkingv1.Ingress) bool
- func IsGCEL7ILBIngress(ing *networkingv1.Ingress) bool
- func IsGCEMultiClusterIngress(ing *networkingv1.Ingress) bool
- func IsGLBCIngress(ing *networkingv1.Ingress) bool
- func IsHTTPErrorCode(err error, code int) bool
- func IsIPConfigurationError(err error) bool
- func IsInUsedByError(err error) bool
- func IsInvalidLoadBalancerSourceRangesAnnotationError(err error) bool
- func IsInvalidLoadBalancerSourceRangesSpecError(err error) bool
- func IsLegacyL4ILBService(svc *api_v1.Service) bool
- func IsLoadBalancerServiceType(service *api_v1.Service) bool
- func IsNetworkTierError(err error) bool
- func IsNetworkTierMismatchGCEError(err error) bool
- func IsNotFoundError(err error) bool
- func IsSubnetworkMissingIPv6GCEError(err error) bool
- func IsSubsettingL4ILBService(svc *api_v1.Service) bool
- func IsUserError(err error) bool
- func JoinErrs(errs []error) error
- func KeyName(url string) (string, error)
- func LegacyForwardingRuleName(svc *api_v1.Service) string
- func ListWithPredicate(nodeLister listers.NodeLister, predicate NodeConditionPredicate) ([]*api_v1.Node, error)
- func MakeL4IPv6ForwardingRuleDescription(service *api_v1.Service) (string, error)
- func MakeL4LBFirewallDescription(svcName, ip string, version meta.Version, shared bool) (string, error)
- func MakeL4LBServiceDescription(svcName, ip string, version meta.Version, shared bool, lbType L4LBType) (string, error)
- func MinMaxPortRangeAndProtocol(svcPorts []api_v1.ServicePort) (portRange, protocol string)
- func NeedsCleanup(ing *networkingv1.Ingress) bool
- func NeedsIPv4(service *v1.Service) bool
- func NeedsIPv6(service *v1.Service) bool
- func NewInt64Pointer(i int64) *int64
- func NewNamespaceIndexer() cache.Indexers
- func NewStringPointer(s string) *string
- func NodeIsReady(node *api_v1.Node) bool
- func NumEndpoints(ep *api_v1.Endpoints) (result int)
- func PrettyJson(data interface{}) (string, error)
- func RelativeResourceName(url string) (string, error)
- func ResourcePath(url string) (string, error)
- func ServiceKeyFunc(namespace, name string) string
- func SplitAnnotation(annotation string) []string
- func ToBetaHealthCheck(hc *computealpha.HealthCheck) (*computebeta.HealthCheck, error)
- func ToNamespacedName(s string) (r types.NamespacedName, err error)
- func ToV1HealthCheck(hc *computealpha.HealthCheck) (*compute.HealthCheck, error)
- func TranslateAffinityType(affinityType string) string
- func TraverseIngressBackends(ing *networkingv1.Ingress, process func(id ServicePortID) bool)
- func V1ToAlphaHealthCheck(hc *compute.HealthCheck) (*computealpha.HealthCheck, error)
- func VerifyDescription(expectDesc NegDescription, descString, negName, zone string) (bool, error)
- type Description
- type FrontendGCAlgorithm
- type GCEURLMap
- func (g *GCEURLMap) AllServicePorts() (svcPorts []ServicePort)
- func (g *GCEURLMap) HostExists(hostname string) bool
- func (g *GCEURLMap) PathExists(hostname, path string) (ServicePort, bool)
- func (g *GCEURLMap) PutPathRulesForHost(hostname string, pathRules []PathRule)
- func (g *GCEURLMap) String() string
- type HostRule
- type IPConfigurationError
- type InvalidLoadBalancerSourceRangesAnnotationError
- type InvalidLoadBalancerSourceRangesSpecError
- type L4LBResourceDescription
- type L4LBType
- type NegDescription
- type NetworkTierError
- type NodeConditionPredicate
- type PathRule
- type PeriodicTaskQueue
- type PeriodicTaskQueueWithMultipleWorkers
- func (t *PeriodicTaskQueueWithMultipleWorkers) Enqueue(objs ...interface{})
- func (t *PeriodicTaskQueueWithMultipleWorkers) Len() int
- func (t *PeriodicTaskQueueWithMultipleWorkers) NumRequeues(obj interface{}) int
- func (t *PeriodicTaskQueueWithMultipleWorkers) Run()
- func (t *PeriodicTaskQueueWithMultipleWorkers) Shutdown()
- type ServicePort
- type ServicePortID
- type TaskQueue
- type TimeTracker
Constants ¶
const ( // Add used to record additions in a sync pool. Add = iota // Remove used to record removals from a sync pool. Remove // Sync used to record syncs of a sync pool. Sync // Get used to record Get from a sync pool. Get // Create used to record creations in a sync pool. Create // Update used to record updates in a sync pool. Update // Delete used to record deletions from a sync pool. Delete // AddInstances used to record a call to AddInstances. AddInstances // RemoveInstances used to record a call to RemoveInstances. RemoveInstances // LabelNodeRoleMaster specifies that a node is a master // This is a duplicate definition of the constant in: // kubernetes/kubernetes/pkg/controller/service/service_controller.go LabelNodeRoleMaster = "node-role.kubernetes.io/master" // LabelNodeRoleExcludeBalancer specifies that a node should be excluded from load-balancing // This is a duplicate definition of the constant in kubernetes core: // https://github.com/kubernetes/kubernetes/blob/ea0764452222146c47ec826977f49d7001b0ea8c/staging/src/k8s.io/api/core/v1/well_known_labels.go#L67 LabelNodeRoleExcludeBalancer = "node.kubernetes.io/exclude-from-external-load-balancers" // ToBeDeletedTaint is the taint that the autoscaler adds when a node is scheduled to be deleted // https://github.com/kubernetes/autoscaler/blob/cluster-autoscaler-0.5.2/cluster-autoscaler/utils/deletetaint/delete.go#L33 ToBeDeletedTaint = "ToBeDeletedByClusterAutoscaler" // GKECurrentOperationLabel is added by the GKE control plane, to nodes that are about to be drained as a result of an upgrade/resize operation. // The operation value is "drain". GKECurrentOperationLabel = "operation.gke.io/type" // NodeDrain is the string used to indicate the Node Draining operation. NodeDrain = "drain" L4ILBServiceDescKey = "networking.gke.io/service-name" // LabelAlphaNodeRoleExcludeBalancer specifies that the node should be // exclude from load balancers created by a cloud provider. This label is deprecated and will // be removed in 1.18. LabelAlphaNodeRoleExcludeBalancer = "alpha.service-controller.kubernetes.io/exclude-balancer" )
Variables ¶
var ( // AllNodesPredicate selects all nodes. AllNodesPredicate = func(node *api_v1.Node) bool { return true } // CandidateNodesPredicate selects all nodes that are in ready state and devoid of any exclude labels. // This is a duplicate definition of the function in: // https://github.com/kubernetes/kubernetes/blob/3723713c550f649b6ba84964edef9da6cc334f9d/staging/src/k8s.io/cloud-provider/controllers/service/controller.go#L668 CandidateNodesPredicate = func(node *api_v1.Node) bool { return nodePredicateInternal(node, false, false) } // CandidateNodesPredicateIncludeUnreadyExcludeUpgradingNodes selects all nodes except ones that are upgrading and/or have any exclude labels. This function tolerates unready nodes. // TODO(prameshj) - Once the kubernetes/kubernetes Predicate function includes Unready nodes and the GKE nodepool code sets exclude labels on upgrade, this can be replaced with CandidateNodesPredicate. CandidateNodesPredicateIncludeUnreadyExcludeUpgradingNodes = func(node *api_v1.Node) bool { return nodePredicateInternal(node, true, true) } )
var (
KeyFunc = cache.DeletionHandlingMetaNamespaceKeyFunc
)
Functions ¶
func AddIPToLBStatus ¶ added in v1.21.0
func AddIPToLBStatus(status *api_v1.LoadBalancerStatus, ips ...string) *api_v1.LoadBalancerStatus
func BetaToAlphaHealthCheck ¶ added in v1.10.0
func BetaToAlphaHealthCheck(hc *computebeta.HealthCheck) (*computealpha.HealthCheck, error)
BetaToAlphaHealthCheck converts beta health check to alpha health check. There should be no information lost after conversion.
func DeepCopyComputeHealthCheck ¶ added in v1.23.0
func DeepCopyComputeHealthCheck(src *compute.HealthCheck) *compute.HealthCheck
func EqualMapping ¶ added in v1.2.2
EqualMapping returns true if both maps point to the same ServicePortIDs. ServicePort settings are *not* included in this comparison.
func EqualResourceIDs ¶ added in v1.2.2
EqualResourceIDs returns true if a and b have equal ResourceIDs which entail the project, location, resource type, and resource name.
func EqualResourcePaths ¶ added in v1.2.2
EqualResourcePaths returns true if a and b have equal ResourcePaths. Resource paths entail the location, resource type, and resource name.
func EqualStringSets ¶ added in v1.9.0
EqualStringSets returns true if 2 given string slices contain the same elements, in any order.
func GetBasePath ¶ added in v1.13.0
GetBasePath returns the compute API endpoint with the `projects/<project-id>` element compute API v0.36 changed basepath and dropped the `projects/` suffix, therefore suffix must be added back when generating compute resource urls.
func GetErrorType ¶ added in v1.11.2
func GetNetworkTier ¶ added in v1.15.0
func GetNetworkTier(service *api_v1.Service) (cloud.NetworkTier, bool)
GetNetworkTier returns Network Tier from service and stays if this is a service annotation. If the annotation is not present then default Network Tier is returned.
func GetNodePrimaryIP ¶ added in v1.9.0
GetNodePrimaryIP returns a primary internal IP address of the node.
func GetPortRanges ¶ added in v1.9.0
GetPortRanges returns a list of port ranges, given a list of ports.
func GetPorts ¶ added in v1.20.0
func GetPorts(svcPorts []api_v1.ServicePort) []string
func GetProtocol ¶ added in v1.20.0
func GetProtocol(svcPorts []api_v1.ServicePort) api_v1.Protocol
func GetReadyNodeNames ¶ added in v1.3.0
func GetReadyNodeNames(lister listers.NodeLister) ([]string, error)
GetReadyNodeNames returns names of schedulable, ready nodes from the node lister It also filters out masters and nodes excluded from load-balancing TODO(rramkumar): Add a test for this.
func GetServiceNodePort ¶ added in v1.19.1
GetServiceNodePort safely gets service's first node port, even if they are empty, which can happen for headless services
func GetServicePortRanges ¶ added in v1.20.0
func GetServicePortRanges(svcPorts []api_v1.ServicePort) []string
func HasL4NetLBFinalizerV2 ¶ added in v1.16.0
HasL4NetLBFinalizerV2 returns true if the given Service has NetLBFinalizerV2
func HasVIP ¶ added in v1.8.0
func HasVIP(ing *networkingv1.Ingress) bool
HasVIP returns true if given ingress has a vip.
func IGLinks ¶ added in v1.2.2
func IGLinks(igs []*compute.InstanceGroup) (igLinks []string)
IGLinks returns a list of links extracted from the passed in list of compute.InstanceGroup's.
func IPv4ServiceSourceRanges ¶ added in v1.21.0
func IPv6ServiceSourceRanges ¶ added in v1.21.0
func IgnoreHTTPNotFound ¶
IgnoreHTTPNotFound returns the passed err if it's not a GoogleAPI error with a NotFound status code.
func IsForbiddenError ¶
IsForbiddenError returns true if the operation was forbidden
func IsGCEIngress ¶ added in v1.3.0
func IsGCEIngress(ing *networkingv1.Ingress) bool
IsGCEIngress returns true if the Ingress matches the class managed by this controller.
func IsGCEL7ILBIngress ¶ added in v1.7.0
func IsGCEL7ILBIngress(ing *networkingv1.Ingress) bool
IsGCEL7ILBIngress returns true if the given Ingress has ingress.class annotation set to "gce-l7-ilb"
func IsGCEMultiClusterIngress ¶ added in v1.3.0
func IsGCEMultiClusterIngress(ing *networkingv1.Ingress) bool
IsGCEMultiClusterIngress returns true if the given Ingress has ingress.class annotation set to "gce-multi-cluster".
func IsGLBCIngress ¶ added in v1.3.2
func IsGLBCIngress(ing *networkingv1.Ingress) bool
IsGLBCIngress returns true if the given Ingress should be processed by GLBC
func IsHTTPErrorCode ¶
IsHTTPErrorCode checks if the given error matches the given HTTP Error code. For this to work the error must be a googleapi Error.
func IsIPConfigurationError ¶ added in v1.20.3
IsIPConfigurationError checks if wrapped error is an IP configuration error.
func IsInUsedByError ¶
IsInUsedByError returns true if the resource is being used by another GCP resource
func IsInvalidLoadBalancerSourceRangesAnnotationError ¶ added in v1.21.0
IsInvalidLoadBalancerSourceRangesAnnotationError checks if wrapped error is an InvalidLoadBalancerSourceRangesAnnotationError error.
func IsInvalidLoadBalancerSourceRangesSpecError ¶ added in v1.21.0
IsInvalidLoadBalancerSourceRangesSpecError checks if wrapped error is an InvalidLoadBalancerSourceRangesSpecError error.
func IsLegacyL4ILBService ¶ added in v1.9.0
IsLegacyL4ILBService returns true if the given LoadBalancer service is managed by service controller.
func IsLoadBalancerServiceType ¶ added in v1.19.1
IsLoadBalancerServiceType checks if kubernetes service is type of LoadBalancer.
func IsNetworkTierError ¶ added in v1.17.0
IsNetworkTierError checks if wrapped error is a Network Tier Mismatch error
func IsNetworkTierMismatchGCEError ¶ added in v1.17.0
IsNetworkTierMismatchGCEError checks if error is a GCE network tier mismatch for external IP
func IsNotFoundError ¶
IsNotFoundError returns true if the resource does not exist
func IsSubnetworkMissingIPv6GCEError ¶ added in v1.21.0
func IsSubsettingL4ILBService ¶ added in v1.11.7
IsSubsettingL4ILBService returns true if the given LoadBalancer service is managed by NEG and L4 controller.
func IsUserError ¶ added in v1.17.0
IsUserError checks if given error is cause by User. Right now User Error might be caused by Network Tier misconfiguration or specifying non-existent or already used IP address.
func JoinErrs ¶ added in v1.4.0
JoinErrs returns an aggregated error based on the passed in list of errors.
func KeyName ¶ added in v1.2.2
KeyName returns the name portion from a full or partial GCP resource URL. Example:
Input: https://googleapis.com/v1/compute/projects/my-project/global/backendServices/my-backend Output: my-backend
func LegacyForwardingRuleName ¶ added in v1.11.7
func ListWithPredicate ¶ added in v1.10.0
func ListWithPredicate(nodeLister listers.NodeLister, predicate NodeConditionPredicate) ([]*api_v1.Node, error)
ListWithPredicate gets nodes that matches predicate function.
func MakeL4IPv6ForwardingRuleDescription ¶ added in v1.21.0
func MakeL4LBFirewallDescription ¶ added in v1.17.0
func MakeL4LBServiceDescription ¶ added in v1.15.0
func MinMaxPortRangeAndProtocol ¶ added in v1.15.0
func MinMaxPortRangeAndProtocol(svcPorts []api_v1.ServicePort) (portRange, protocol string)
func NeedsCleanup ¶ added in v1.7.0
func NeedsCleanup(ing *networkingv1.Ingress) bool
NeedsCleanup returns true if the ingress needs to have its associated resources deleted.
func NewInt64Pointer ¶ added in v1.9.9
NewInt64Pointer returns a pointer to the provided int64 literal
func NewNamespaceIndexer ¶ added in v1.3.0
NewNamespaceIndexer returns a new Indexer for use by SharedIndexInformers
func NewStringPointer ¶ added in v1.9.0
NewStringPointer returns a pointer to the provided string literal
func NodeIsReady ¶
NodeIsReady returns true if a node contains at least one condition of type "Ready"
func NumEndpoints ¶ added in v1.9.0
NumEndpoints returns the count of endpoints in the given endpoints object.
func PrettyJson ¶ added in v1.2.2
PrettyJson marshals an object in a human-friendly format.
func RelativeResourceName ¶ added in v1.2.2
RelativeResourceName returns the project, location, resource, and name from a full/partial GCP resource URL. This removes the endpoint prefix and version. Example:
Input: https://googleapis.com/v1/compute/projects/my-project/global/backendServices/my-backend Output: projects/my-project/global/backendServices/my-backend
func ResourcePath ¶ added in v1.2.2
ResourcePath returns the location, resource and name portion from a full or partial GCP resource URL. This removes the endpoint prefix, version, and project. Example:
Input: https://googleapis.com/v1/compute/projects/my-project/global/backendServices/my-backend Output: global/backendServices/my-backend
func ServiceKeyFunc ¶ added in v1.4.0
func SplitAnnotation ¶ added in v1.4.0
SplitAnnotation splits annotation by separator and trims whitespace from each resulting token
func ToBetaHealthCheck ¶ added in v1.10.0
func ToBetaHealthCheck(hc *computealpha.HealthCheck) (*computebeta.HealthCheck, error)
ToBetaHealthCheck converts alpha health check to beta health check.
func ToNamespacedName ¶ added in v1.2.2
func ToNamespacedName(s string) (r types.NamespacedName, err error)
ToNamespacedName returns a types.NamespacedName struct parsed from namespace/name.
func ToV1HealthCheck ¶ added in v1.10.0
func ToV1HealthCheck(hc *computealpha.HealthCheck) (*compute.HealthCheck, error)
ToV1HealthCheck converts alpha health check to v1 health check. WARNING: alpha health check has a additional PORT_SPECIFICATION field. This field will be omitted after conversion.
func TranslateAffinityType ¶ added in v1.9.0
TranslateAffinityType converts the k8s affinity type to the GCE affinity type.
func TraverseIngressBackends ¶ added in v1.3.2
func TraverseIngressBackends(ing *networkingv1.Ingress, process func(id ServicePortID) bool)
TraverseIngressBackends traverse thru all backends specified in the input ingress and call process If process return true, then return and stop traversing the backends
func V1ToAlphaHealthCheck ¶ added in v1.10.0
func V1ToAlphaHealthCheck(hc *compute.HealthCheck) (*computealpha.HealthCheck, error)
V1ToAlphaHealthCheck converts v1 health check to alpha health check. There should be no information lost after conversion.
func VerifyDescription ¶ added in v1.10.8
func VerifyDescription(expectDesc NegDescription, descString, negName, zone string) (bool, error)
VerifyDescription returns whether the provided descString fields match Neg Description expectDesc. If an empty string or malformed description is provided, VerifyDescription will return true. When returning false, a detailed error will also be returned
Types ¶
type Description ¶ added in v1.2.2
type Description struct { ServiceName string `json:"kubernetes.io/service-name"` ServicePort string `json:"kubernetes.io/service-port"` XFeatures []string `json:"x-features,omitempty"` }
Description stores the description for a BackendService.
func DescriptionFromString ¶ added in v1.2.2
func DescriptionFromString(descString string) *Description
DescriptionFromString gets a Description from string,
func (Description) String ¶ added in v1.2.2
func (desc Description) String() string
String returns the string representation of a Description.
type FrontendGCAlgorithm ¶ added in v1.8.0
type FrontendGCAlgorithm int
FrontendGCAlgorithm species GC algorithm used for ingress frontend resources.
const ( // NoCleanUpNeeded specifies that frontend resources need not be deleted. NoCleanUpNeeded FrontendGCAlgorithm = iota // CleanupV1FrontendResources specifies that frontend resources for ingresses // that use v1 naming scheme need to be deleted. CleanupV1FrontendResources // CleanupV2FrontendResources specifies that frontend resources for ingresses // that use v2 naming scheme need to be deleted. CleanupV2FrontendResources // CleanupV2FrontendResourcesScopeChange specifies that frontend resources for ingresses // that use v2 naming scheme and have changed their LB scope (e.g. ILB -> ELB or vice versa) // need to be deleted CleanupV2FrontendResourcesScopeChange )
type GCEURLMap ¶
type GCEURLMap struct { DefaultBackend *ServicePort // HostRules is an ordered list of hostnames, path rule tuples. HostRules []HostRule // contains filtered or unexported fields }
GCEURLMap is a simplified representation of a UrlMap somewhere in the middle of a compute.UrlMap and rules in an Ingress spec. This representation maintains three invariants/rules:
- All hostnames are unique
- All paths for a specific host are unique.
- Adding paths for a hostname replaces existing for that host.
func NewGCEURLMap ¶ added in v1.2.2
func NewGCEURLMap() *GCEURLMap
NewGCEURLMap returns an empty GCEURLMap
func (*GCEURLMap) AllServicePorts ¶ added in v1.2.2
func (g *GCEURLMap) AllServicePorts() (svcPorts []ServicePort)
AllServicePorts return a list of all ServicePorts contained in the GCEURLMap.
func (*GCEURLMap) HostExists ¶ added in v1.2.2
HostExists returns true if the given hostname is specified in the GCEURLMap.
func (*GCEURLMap) PathExists ¶ added in v1.2.2
func (g *GCEURLMap) PathExists(hostname, path string) (ServicePort, bool)
PathExists returns true if the given path exists for the given hostname. It will also return the backend associated with that path.
func (*GCEURLMap) PutPathRulesForHost ¶ added in v1.2.2
PutPathRulesForHost adds path rules for a single hostname. This function ensures the invariants of the GCEURLMap are maintained. It will log if an invariant violation was found and reconciled. TODO(rramkumar): Surface an error instead of logging.
type IPConfigurationError ¶ added in v1.20.3
type IPConfigurationError struct {
// contains filtered or unexported fields
}
IPConfigurationError is a struct to define error caused by User misconfiguration the Load Balancer IP.
func NewIPConfigurationError ¶ added in v1.20.3
func NewIPConfigurationError(ip, reason string) *IPConfigurationError
func (*IPConfigurationError) Error ¶ added in v1.20.3
func (e *IPConfigurationError) Error() string
type InvalidLoadBalancerSourceRangesAnnotationError ¶ added in v1.21.0
type InvalidLoadBalancerSourceRangesAnnotationError struct { LoadBalancerSourceRangesAnnotation string ParseErr error }
InvalidLoadBalancerSourceRangesAnnotationError is a struct to define error caused by User misconfiguration of the Service.Annotations["service.beta.kubernetes.io/load-balancer-source-ranges"] field.
func NewInvalidLoadBalancerSourceRangesAnnotationError ¶ added in v1.21.0
func NewInvalidLoadBalancerSourceRangesAnnotationError(serviceLoadBalancerSourceRangesAnnotation string, err error) *InvalidLoadBalancerSourceRangesAnnotationError
func (*InvalidLoadBalancerSourceRangesAnnotationError) Error ¶ added in v1.21.0
func (e *InvalidLoadBalancerSourceRangesAnnotationError) Error() string
type InvalidLoadBalancerSourceRangesSpecError ¶ added in v1.21.0
type InvalidLoadBalancerSourceRangesSpecError struct { LoadBalancerSourceRangesSpec []string ParseErr error }
InvalidLoadBalancerSourceRangesSpecError is a struct to define error caused by User misconfiguration of the Service.Spec.LoadBalancerSourceRanges field.
func NewInvalidSpecLoadBalancerSourceRangesError ¶ added in v1.21.0
func NewInvalidSpecLoadBalancerSourceRangesError(specLoadBalancerSourceRanges []string, err error) *InvalidLoadBalancerSourceRangesSpecError
func (*InvalidLoadBalancerSourceRangesSpecError) Error ¶ added in v1.21.0
func (e *InvalidLoadBalancerSourceRangesSpecError) Error() string
type L4LBResourceDescription ¶ added in v1.15.0
type L4LBResourceDescription struct { // ServiceName indicates the name of the service the resource is for. ServiceName string `json:"networking.gke.io/service-name"` // APIVersion stores the version og the compute API used to create this resource. APIVersion meta.Version `json:"networking.gke.io/api-version,omitempty"` ServiceIP string `json:"networking.gke.io/service-ip,omitempty"` ResourceDescription string `json:"networking.gke.io/resource-description,omitempty"` }
L4LBResourceDescription stores the description fields for L4 ILB or NetLB resources. This is useful to identify which resources correspond to which L4 LB service.
func (*L4LBResourceDescription) Marshal ¶ added in v1.15.0
func (d *L4LBResourceDescription) Marshal() (string, error)
Marshal returns the description as a JSON-encoded string.
func (*L4LBResourceDescription) Unmarshal ¶ added in v1.15.0
func (d *L4LBResourceDescription) Unmarshal(desc string) error
Unmarshal converts the JSON-encoded description string into the struct.
type L4LBType ¶ added in v1.15.0
type L4LBType int
L4LBType indicates if L4 LoadBalancer is Internal or External
type NegDescription ¶ added in v1.10.0
type NegDescription struct { ClusterUID string `json:"cluster-uid,omitempty"` Namespace string `json:"namespace,omitempty"` ServiceName string `json:"service-name,omitempty"` Port string `json:"port,omitempty"` }
Description stores the description for a BackendService.
func NegDescriptionFromString ¶ added in v1.10.0
func NegDescriptionFromString(descString string) (*NegDescription, error)
DescriptionFromString gets a Description from string,
func (NegDescription) String ¶ added in v1.10.0
func (desc NegDescription) String() string
String returns the string representation of a Description.
type NetworkTierError ¶ added in v1.17.0
type NetworkTierError struct {
// contains filtered or unexported fields
}
NetworkTierError is a struct to define error caused by User misconfiguration of Network Tier.
func NewNetworkTierErr ¶ added in v1.17.0
func NewNetworkTierErr(resourceInErr, desired, received string) *NetworkTierError
func (*NetworkTierError) Error ¶ added in v1.17.0
func (e *NetworkTierError) Error() string
Error function prints out Network Tier error.
type NodeConditionPredicate ¶ added in v1.10.0
NodeConditionPredicate is a function that indicates whether the given node's conditions meet some set of criteria defined by the function.
type PathRule ¶ added in v1.2.2
type PathRule struct { Path string Backend ServicePort }
PathRule encapsulates the information for a single path -> backend mapping.
type PeriodicTaskQueue ¶
type PeriodicTaskQueue struct {
// contains filtered or unexported fields
}
PeriodicTaskQueue invokes the given sync function for every work item inserted. If the sync() function results in an error, the item is put on the work queue after a rate-limit.
func NewPeriodicTaskQueue ¶
func NewPeriodicTaskQueue(name, resource string, syncFn func(string) error) *PeriodicTaskQueue
NewPeriodicTaskQueue creates a new task queue with the default rate limiter.
func NewPeriodicTaskQueueWithLimiter ¶ added in v1.4.0
func NewPeriodicTaskQueueWithLimiter(name, resource string, syncFn func(string) error, rl workqueue.RateLimiter) *PeriodicTaskQueue
NewPeriodicTaskQueueWithLimiter creates a new task queue with the given sync function and rate limiter. The sync function is called for every element inserted into the queue.
func (*PeriodicTaskQueue) Enqueue ¶
func (t *PeriodicTaskQueue) Enqueue(objs ...interface{})
Enqueue adds one or more keys to the work queue.
func (*PeriodicTaskQueue) Len ¶ added in v1.11.0
func (t *PeriodicTaskQueue) Len() int
Len returns the length of the queue.
func (*PeriodicTaskQueue) NumRequeues ¶ added in v1.11.0
func (t *PeriodicTaskQueue) NumRequeues(obj interface{}) int
NumRequeues returns the number of times the given item was requeued.
func (*PeriodicTaskQueue) Run ¶
func (t *PeriodicTaskQueue) Run()
Run runs the task queue. This will block until the Shutdown() has been called.
func (*PeriodicTaskQueue) Shutdown ¶
func (t *PeriodicTaskQueue) Shutdown()
Shutdown shuts down the work queue and waits for the worker to ACK
type PeriodicTaskQueueWithMultipleWorkers ¶ added in v1.11.0
type PeriodicTaskQueueWithMultipleWorkers struct {
// contains filtered or unexported fields
}
PeriodicTaskQueueWithMultipleWorkers invokes the given sync function for every work item inserted, while running n parallel worker routines. If the sync() function results in an error, the item is put on the work queue after a rate-limit.
func NewPeriodicTaskQueueWithMultipleWorkers ¶ added in v1.11.0
func NewPeriodicTaskQueueWithMultipleWorkers(name, resource string, numWorkers int, syncFn func(string) error) *PeriodicTaskQueueWithMultipleWorkers
NewPeriodicTaskQueueWithMultipleWorkers creates a new task queue with the default rate limiter and the given number of worker goroutines.
func (*PeriodicTaskQueueWithMultipleWorkers) Enqueue ¶ added in v1.11.0
func (t *PeriodicTaskQueueWithMultipleWorkers) Enqueue(objs ...interface{})
Enqueue adds one or more keys to the work queue.
func (*PeriodicTaskQueueWithMultipleWorkers) Len ¶ added in v1.11.0
func (t *PeriodicTaskQueueWithMultipleWorkers) Len() int
Len returns the length of the queue.
func (*PeriodicTaskQueueWithMultipleWorkers) NumRequeues ¶ added in v1.11.0
func (t *PeriodicTaskQueueWithMultipleWorkers) NumRequeues(obj interface{}) int
NumRequeues returns the number of times the given item was requeued.
func (*PeriodicTaskQueueWithMultipleWorkers) Run ¶ added in v1.11.0
func (t *PeriodicTaskQueueWithMultipleWorkers) Run()
Run spawns off n parallel worker routines and returns immediately.
func (*PeriodicTaskQueueWithMultipleWorkers) Shutdown ¶ added in v1.11.0
func (t *PeriodicTaskQueueWithMultipleWorkers) Shutdown()
Shutdown shuts down the work queue and waits for all the workers to ACK
type ServicePort ¶ added in v1.2.2
type ServicePort struct { // Ingress backend-specified service name and port ID ServicePortID NodePort int64 // Numerical port of the Service, retrieved from the Service Port int32 // Name of the port of the Service, retrieved from the Service PortName string Protocol annotations.AppProtocol TargetPort intstr.IntOrString NEGEnabled bool VMIPNEGEnabled bool L4RBSEnabled bool L7ILBEnabled bool BackendConfig *backendconfigv1.BackendConfig BackendNamer namer.BackendNamer // Traffic policy fields that apply if non-nil. MaxRatePerEndpoint *float64 CapacityScaler *float64 }
ServicePort maintains configuration for a single backend.
func (*ServicePort) BackendName ¶ added in v1.2.2
func (sp *ServicePort) BackendName() string
BackendName returns the name of the backend which would be used for this ServicePort.
func (*ServicePort) GetDescription ¶ added in v1.2.2
func (sp *ServicePort) GetDescription() Description
GetDescription returns a Description for this ServicePort.
func (*ServicePort) IGName ¶ added in v1.8.0
func (sp *ServicePort) IGName() string
IGName returns the name of the instance group which would be used for this ServicePort.
type ServicePortID ¶ added in v1.2.2
type ServicePortID struct { Service types.NamespacedName Port v1.ServiceBackendPort }
ServicePortID contains the Service and Port fields.
func BackendToServicePortID ¶ added in v1.2.2
func BackendToServicePortID(be v1.IngressBackend, namespace string) (ServicePortID, error)
BackendToServicePortID creates a ServicePortID from a given IngressBackend and namespace.
func (ServicePortID) String ¶ added in v1.2.3
func (id ServicePortID) String() string
type TaskQueue ¶
type TaskQueue interface { Run() Enqueue(objs ...interface{}) Shutdown() Len() int NumRequeues(obj interface{}) int }
TaskQueue is a rate limited operation queue.
type TimeTracker ¶ added in v1.2.2
type TimeTracker struct {
// contains filtered or unexported fields
}
func NewTimeTracker ¶ added in v1.2.2
func NewTimeTracker() TimeTracker
func (*TimeTracker) Get ¶ added in v1.2.2
func (t *TimeTracker) Get() time.Time
Get returns previous recorded time
func (*TimeTracker) Set ¶ added in v1.2.2
func (t *TimeTracker) Set(timestamp time.Time)
Set records input timestamp
func (*TimeTracker) Track ¶ added in v1.2.2
func (t *TimeTracker) Track() time.Time
Track records the current time and returns it