Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,504 for instanceip (0.21 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/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)
  7. pkg/test/framework/components/echo/kube/instance.go

    }
    
    func (c *instance) Instances() echo.Instances {
    	return echo.Instances{c}
    }
    
    func (c *instance) Close() (err error) {
    	return c.workloadMgr.Close()
    }
    
    func (c *instance) NamespacedName() echo.NamespacedName {
    	return c.cfg.NamespacedName()
    }
    
    func (c *instance) PortForName(name string) echo.Port {
    	return c.cfg.Ports.MustForName(name)
    }
    
    func (c *instance) ServiceName() string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 16 18:55:23 UTC 2023
    - 9K bytes
    - Viewed (0)
  8. pkg/test/echo/server/instance.go

    var (
    	serverLog           = log.RegisterScope("server", "echo server")
    	_         io.Closer = &Instance{}
    )
    
    // Instance of the Echo server.
    type Instance struct {
    	Config
    
    	endpoints     []endpoint.Instance
    	metricsServer *http.Server
    	ready         uint32
    }
    
    // New creates a new server instance.
    func New(config Config) *Instance {
    	log.Infof("Creating Server with config:\n%s", config)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 09 07:54:01 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  9. pkg/test/echo/server/forwarder/instance.go

    	"istio.io/istio/pkg/test/echo/proto"
    )
    
    var _ io.Closer = &Instance{}
    
    // Instance is a client for forwarding requests to echo servers.
    type Instance struct {
    	e           *executor
    	protocolMap map[scheme.Instance]protocol
    	protocols   []protocol
    }
    
    // New creates a new forwarder Instance.
    func New() *Instance {
    	var protocols []protocol
    	add := func(p protocol) protocol {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 17:19:22 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  10. pkg/config/protocol/instance.go

    package protocol
    
    import "strings"
    
    // Instance defines network protocols for ports
    type Instance string
    
    func (i Instance) String() string {
    	return string(i)
    }
    
    const (
    	// GRPC declares that the port carries gRPC traffic.
    	GRPC Instance = "GRPC"
    	// GRPCWeb declares that the port carries gRPC traffic.
    	GRPCWeb Instance = "GRPC-Web"
    	// HTTP declares that the port carries HTTP/1.1 traffic.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 01 02:46:15 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top