Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,545 for instanceip (0.17 sec)

  1. pkg/test/echo/common/model.go

    	// map to the corresponding port numbers for the instances behind the
    	// service.
    	Port int
    
    	// Protocol to be used for the port.
    	Protocol protocol.Instance
    
    	// TLS determines if the port will use TLS.
    	TLS bool
    
    	// ServerFirst if a port will be server first
    	ServerFirst bool
    
    	// InstanceIP determines if echo will listen on the instance IP, or wildcard
    	InstanceIP bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 05 00:22:45 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/port.go

    	TLS bool
    
    	// ServerFirst determines whether the port will use server first communication, meaning the client will not send the first byte.
    	ServerFirst bool
    
    	// InstanceIP determines if echo will listen on the instance IP; otherwise, it will listen on wildcard
    	InstanceIP bool
    
    	// LocalhostIP determines if echo will listen on the localhost IP; otherwise, it will listen on wildcard
    	LocalhostIP bool
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 13 18:10:05 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/common/ports/ports.go

    	AutoHTTPS        = echo.Port{Name: "auto-https", Protocol: protocol.HTTPS, ServicePort: 9443, WorkloadPort: 19443, TLS: true}
    	HTTPInstance     = echo.Port{Name: "http-instance", Protocol: protocol.HTTP, ServicePort: 82, WorkloadPort: 18082, InstanceIP: true}
    	HTTPLocalHost    = echo.Port{Name: "http-localhost", Protocol: protocol.HTTP, ServicePort: 84, WorkloadPort: 18084, LocalhostIP: true}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 08 16:17:34 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/kube/templates/deployment.yaml

    {{- else }}
              - --port={{ $p.Port }}
    {{- end }}
    {{- if $p.TLS }}
              - --tls={{ $p.Port }}
    {{- end }}
    {{- if $p.ServerFirst }}
              - --server-first={{ $p.Port }}
    {{- end }}
    {{- if $p.InstanceIP }}
              - --bind-ip={{ $p.Port }}
    {{- end }}
    {{- if $p.LocalhostIP }}
              - --bind-localhost={{ $p.Port }}
    {{- end }}
    {{- end }}
              - --version={{ $subset.Version }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/kube/templates/vm_deployment.yaml

                 --tls={{ $p.Port }} \
    {{- end }}
    {{- if $p.InstanceIP }}
                 --bind-ip={{ $p.Port }} \
    {{- end }}
    {{- if $p.LocalhostIP }}
                 --bind-localhost={{ $p.Port }} \
    {{- end }}
    {{- end }}
                 --crt=/var/lib/istio/cert.crt \
                 --key=/var/lib/istio/cert.key
            env:
            - name: INSTANCE_IP
              valueFrom:
                fieldRef:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/kube/deployment.go

    		cport := &echoCommon.Port{
    			Name:        p.Name,
    			Protocol:    p.Protocol,
    			Port:        p.WorkloadPort,
    			TLS:         p.TLS,
    			ServerFirst: p.ServerFirst,
    			InstanceIP:  p.InstanceIP,
    			LocalhostIP: p.LocalhostIP,
    		}
    		containerPorts = append(containerPorts, cport)
    
    		switch p.Protocol {
    		case protocol.GRPC:
    			if cfg.IsProxylessGRPC() {
    				cport.XDSServer = true
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  7. tests/integration/pilot/common/traffic.go

    			echoT.RunToN(c.toN, func(t framework.TestContext, src echo.Instance, dsts echo.Services) {
    				doTest(t, src, dsts)
    			})
    		} else if c.viaIngress {
    			echoT.RunViaIngress(func(t framework.TestContext, from ingress.Instance, to echo.Target) {
    				doTest(t, from, echo.Services{to.Instances()})
    			})
    		} else {
    			echoT.Run(func(t framework.TestContext, from echo.Instance, to echo.Target) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 19:10:01 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. pilot/cmd/pilot-agent/status/server.go

    	if config.IPv6 {
    		localhost = localHostIPv6
    		upstreamLocalAddress = UpstreamLocalAddressIPv6
    	} else {
    		// if not ipv6-only, it can be ipv4-only or dual-stack
    		// let InstanceIP decide the localhost
    		netIP := net.ParseIP(config.PodIP)
    		if netIP.To4() == nil && netIP.To16() != nil && !netIP.IsLinkLocalUnicast() {
    			localhost = localHostIPv6
    			upstreamLocalAddress = UpstreamLocalAddressIPv6
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener_test.go

    	tests := []struct {
    		name                      string
    		instances                 []*model.ServiceInstance
    		services                  []*model.Service
    		numListenersOnServicePort int
    	}{
    		{
    			name: "gen a listener per IP instance",
    			instances: []*model.ServiceInstance{
    				// This instance is the proxy itself, will not gen a outbound listener for it.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  10. pkg/test/framework/components/echo/instances.go

    	sort.Stable(out)
    	return out
    }
    
    // Copy this Instances array.
    func (i Instances) Copy() Instances {
    	return append(Instances{}, i...)
    }
    
    // Append returns a new Instances array with the given values appended.
    func (i Instances) Append(instances Instances) Instances {
    	return append(i.Copy(), instances...)
    }
    
    // Restart each Instance
    func (i Instances) Restart() error {
    	g := multierror.Group{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 18:26:17 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top