Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for serviceMap (0.24 sec)

  1. pkg/proxy/winkernel/proxier_test.go

    	pa = networkInfo.findRemoteSubnetProviderAddress(epIpAddressRemote)
    
    	if pa != providerAddress {
    		t.Errorf("%v does not match %v", pa, providerAddress)
    	}
    
    	pa = networkInfo.findRemoteSubnetProviderAddress(serviceVip)
    
    	if len(pa) != 0 {
    		t.Errorf("Provider address is not empty as expected")
    	}
    }
    
    func makeNSN(namespace, name string) types.NamespacedName {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 28 14:30:51 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  2. pkg/registry/core/service/ipallocator/controller/repairip.go

    // 2. Service_Y [ClusterIP_Y]  <------>  IPAddress_Y [Ref:GatewayA]    !ok, wrong reference
    // 3. Service_Z [ClusterIP_Z]  <------>  							   !ok, missing IPAddress
    // 4. Service_A [ClusterIP_A]  <------>  IPAddress_A [Ref:Service_B]   !ok, duplicate IPAddress
    //    Service_B [ClusterIP_A]  <------> 								only one service can verify the relation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  3. pkg/registry/core/service/storage/alloc.go

    				}
    			} else {
    				allocatedIP, err = allocator.AllocateNext()
    			}
    			if err != nil {
    				return allocated, errors.NewInternalError(fmt.Errorf("failed to allocate a serviceIP: %v", err))
    			}
    			allocated[family] = allocatedIP.String()
    		} else {
    			parsedIP := netutils.ParseIPSloppy(ip)
    			if parsedIP == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 37.3K bytes
    - Viewed (0)
  4. pkg/controller/endpoint/endpoints_controller_test.go

    				},
    			},
    			expectedEndpointFamily: ipv4,
    		},
    		// in reality this is a misconfigured cluster
    		// i.e user is not using dual stack and have PodIP == v4 and ServiceIP==v6
    		// previously controller could assign wrong ip to endpoint address
    		// with gate removed. this is no longer the case. this is *not* behavior change
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top