Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for OtherIPFamily (0.12 sec)

  1. pkg/proxy/util/utils_test.go

    			expectIncorrect: nil,
    		},
    	}
    
    	for _, testcase := range testCases {
    		t.Run(testcase.desc, func(t *testing.T) {
    			ipFamily := v1.IPv4Protocol
    			otherIPFamily := v1.IPv6Protocol
    
    			if testcase.wantIPv6 {
    				ipFamily = v1.IPv6Protocol
    				otherIPFamily = v1.IPv4Protocol
    			}
    
    			ipMap := MapIPsByIPFamily(testcase.ipString)
    
    			var ipStr []string
    			for _, ip := range ipMap[ipFamily] {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. pkg/proxy/util/utils.go

    	switch ipFamily {
    	case netutils.IPv4:
    		return v1.IPv4Protocol
    	case netutils.IPv6:
    		return v1.IPv6Protocol
    	}
    
    	return v1.IPFamilyUnknown
    }
    
    // OtherIPFamily returns the other ip family
    func OtherIPFamily(ipFamily v1.IPFamily) v1.IPFamily {
    	if ipFamily == v1.IPv6Protocol {
    		return v1.IPv4Protocol
    	}
    
    	return v1.IPv6Protocol
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. pkg/proxy/serviceport.go

    	ipFamilyMap := proxyutil.MapIPsByIPFamily(service.Spec.ExternalIPs)
    	info.externalIPs = ipFamilyMap[ipFamily]
    
    	// Log the IPs not matching the ipFamily
    	if ips, ok := ipFamilyMap[proxyutil.OtherIPFamily(ipFamily)]; ok && len(ips) > 0 {
    		klog.V(4).InfoS("Service change tracker ignored the following external IPs for given service as they don't match IP Family",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 09 08:17:56 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. cmd/kube-proxy/app/server.go

    	} else if len(cidrsByFamily[s.PrimaryIPFamily]) == 0 {
    		errors = append(errors, fmt.Errorf("cluster appears to be %s-primary but nodePortAddresses contains only %s addresses; NodePort connections will be accepted on all local %s IPs", s.PrimaryIPFamily, proxyutil.OtherIPFamily(s.PrimaryIPFamily), s.PrimaryIPFamily))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
Back to top