ServiceSpecV1.LoadBalancerSourceRanges Property

Definition

Specifies a list of IP address ranges that are allowed to access the Kubernetes Service when the Service type is "LoadBalancer".

[YamlDotNet.Serialization.YamlMember(Alias="loadBalancerSourceRanges")]
public System.Collections.Generic.List<string> LoadBalancerSourceRanges { get; }
[<YamlDotNet.Serialization.YamlMember(Alias="loadBalancerSourceRanges")>]
member this.LoadBalancerSourceRanges : System.Collections.Generic.List<string>
Public ReadOnly Property LoadBalancerSourceRanges As List(Of String)

Property Value

Attributes
YamlDotNet.Serialization.YamlMemberAttribute

Remarks

The LoadBalancerSourceRanges property defines a list of CIDR (Classless Inter-Domain Routing) ranges that restrict access to the Service's load balancer. If not set, access is not restricted based on IP ranges and is determined by the cloud provider or default behavior.

Applies to