Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for TCPAddresses (0.33 sec)

  1. pkg/test/framework/components/istio/ingress/interface.go

    	// when in an environment that doesn't support LoadBalancer).
    	HTTPSAddresses() ([]string, []int)
    	// TCPAddresses returns the external TCP (31400) address of the ingress gateway (or the NodePort address,
    	// when in an environment that doesn't support LoadBalancer).
    	TCPAddresses() ([]string, []int)
    	// DiscoveryAddresses returns the external XDS (15012) address on the ingress gateway (or the NodePort address,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 17:13:34 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. pkg/test/framework/components/istio/ingress.go

    func (c *ingressImpl) HTTPAddresses() ([]string, []int) {
    	return c.AddressesForPort(80)
    }
    
    // TCPAddresses returns the externally reachable TCP hosts and port (31400) of the component.
    func (c *ingressImpl) TCPAddresses() ([]string, []int) {
    	return c.AddressesForPort(31400)
    }
    
    // HTTPSAddresses returns the externally reachable TCP hosts and port (443) of the component.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 17:13:34 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. tests/integration/telemetry/api/dashboard_test.go

    	times := 0
    	for {
    		select {
    		case <-ticker.C:
    			times++
    			scopes.Framework.Infof("sending traffic %v", times)
    			for _, ing := range ingr {
    				hosts, ports := ing.TCPAddresses()
    				host := hosts[0]
    				port := ports[0]
    				_, err := ing.Call(echo.CallOptions{
    					Port: echo.Port{
    						Protocol: protocol.HTTP,
    					},
    					Count: 10,
    					HTTP: echo.HTTP{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top