Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for hnsID (0.04 sec)

  1. pkg/proxy/winkernel/hns_test.go

    	endpoint, err := hns.createEndpoint(endpoint, Network.Name)
    	if err != nil {
    		t.Error(err)
    	}
    	Endpoint, err := hcn.GetEndpointByID(endpoint.hnsID)
    	if err != nil {
    		t.Error(err)
    	}
    	if !strings.EqualFold(endpoint.hnsID, Endpoint.Id) {
    		t.Errorf("%v does not match %v", endpoint.hnsID, Endpoint.Id)
    	}
    	if endpoint.ip != Endpoint.IpConfigurations[0].IpAddress {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. pkg/proxy/winkernel/proxier.go

    	hns := svcInfo.hns
    	if err := hns.deleteLoadBalancer(svcInfo.hnsID); err != nil {
    		mapStaleLoadbalancer[svcInfo.hnsID] = true
    		klog.V(1).ErrorS(err, "Error deleting Hns loadbalancer policy resource.", "hnsID", svcInfo.hnsID, "ClusterIP", svcInfo.ClusterIP())
    	} else {
    		// On successful delete, remove hnsId
    		svcInfo.hnsID = ""
    	}
    
    	if err := hns.deleteLoadBalancer(svcInfo.nodePorthnsID); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  3. pkg/proxy/winkernel/proxier_test.go

    		for _, externalIP := range svcInfo.externalIPs {
    			if externalIP.hnsID != "" {
    				t.Errorf("ExternalLBID %v is not empty.", externalIP.hnsID)
    			}
    		}
    		// Verifying IngressIP Loadbalancer is not created
    		for _, ingressIP := range svcInfo.loadBalancerIngressIPs {
    			if ingressIP.hnsID != "" {
    				t.Errorf("IngressLBID %v is not empty.", ingressIP.hnsID)
    			}
    		}
    	}
    }
    
    func TestEndpointSlice(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 28 14:30:51 UTC 2024
    - 30.2K bytes
    - Viewed (0)
Back to top