Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for serviceHostname (0.27 sec)

  1. pkg/proxy/nftables/proxier.go

    	// two characters allowed in a chain name that isn't allowed in our input strings.
    
    	name := fmt.Sprintf("%s/%s/%s/%s",
    		servicePortName.NamespacedName.Namespace,
    		servicePortName.NamespacedName.Name,
    		protocol,
    		servicePortName.Port,
    	)
    
    	// The namespace, service, and port name can each be up to 63 characters, protocol
    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/networking/core/sidecar_simulation_test.go

    			continue
    		}
    		ret = append(ret, &model.ServiceInstance{
    			Service:     svc,
    			ServicePort: p,
    			Endpoint: &model.IstioEndpoint{
    				Address:         proxy.IPAddresses[0],
    				ServicePortName: p.Name,
    				EndpointPort:    uint32(targetPort),
    			},
    		})
    	}
    	return ret
    }
    
    func TestInboundClusters(t *testing.T) {
    	proxy := &model.Proxy{
    		IPAddresses: []string{"1.2.3.4"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_test.go

    }
    
    func buildServiceInstance(service *model.Service, instanceIP string) *model.ServiceInstance {
    	return &model.ServiceInstance{
    		Endpoint: &model.IstioEndpoint{
    			Address:         instanceIP,
    			ServicePortName: service.Ports[0].Name,
    		},
    		ServicePort: service.Ports[0],
    		Service:     service,
    	}
    }
    
    func TestOutboundListenerConfig_WithAutoAllocatedAddress(t *testing.T) {
    	const tcpPort = 79
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
Back to top