Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for endpointMap (0.12 sec)

  1. pkg/proxy/nftables/proxier.go

    		endpointIP = strings.ReplaceAll(endpointIP, ":", ".")
    	}
    
    	// As above, we use "/" to separate parts of the name, and "__" to separate the
    	// "service" part from the "endpoint" part.
    	name := fmt.Sprintf("%s/%s/%s/%s__%s/%s",
    		servicePortName.NamespacedName.Namespace,
    		servicePortName.NamespacedName.Name,
    		protocol,
    		servicePortName.Port,
    		endpointIP,
    		endpointPort,
    	)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/ambient/workloads_test.go

    			assert.Equal(t, wl, tt.result)
    		})
    	}
    }
    
    func newAmbientUnitTest() *index {
    	return &index{
    		networkUpdateTrigger: krt.NewRecomputeTrigger(),
    		ClusterID:            testC,
    		Network: func(endpointIP string, labels labels.Instance) network.ID {
    			return testNW
    		},
    	}
    }
    
    var podReady = []v1.PodCondition{
    	{
    		Type:               v1.PodReady,
    		Status:             v1.ConditionTrue,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top