Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ExternalIPs (0.1 sec)

  1. pkg/proxy/iptables/number_generated_rules_test.go

    			expectedNatRules:    325,
    		},
    
    		{
    			name: "0 Services 0 EndpointsPerService - LoadBalancer",
    			svcFunc: func(svc *v1.Service) {
    				svc.Spec.Type = v1.ServiceTypeLoadBalancer
    				svc.Spec.ExternalIPs = []string{"1.2.3.4"}
    				svc.Spec.LoadBalancerSourceRanges = []string{" 1.2.3.4/28"}
    				svc.Status.LoadBalancer.Ingress = []v1.LoadBalancerIngress{{
    					IP: "1.2.3.4",
    				}}
    			},
    			services:            0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/controller.go

    	}
    }
    
    func (c *Controller) addOrUpdateService(pre, curr *v1.Service, currConv *model.Service, event model.Event, updateEDSCache bool) {
    	needsFullPush := false
    	// First, process nodePort gateway service, whose externalIPs specified
    	// and loadbalancer gateway service
    	if currConv.Attributes.ClusterExternalAddresses.Len() > 0 {
    		needsFullPush = c.extractGatewaysFromService(currConv)
    	} else if isNodePortGatewayService(curr) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
Back to top