Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for defaultEndpoint (0.35 sec)

  1. pkg/config/validation/validation_test.go

    				{
    					DefaultEndpoint: "127.0.0.1:110",
    				},
    			},
    			Egress: []*networking.IstioEgressListener{
    				{
    					Hosts: []string{"*/*"},
    				},
    			},
    		}, false, false},
    		{"ingress without port and with IPv6 endpoint", &networking.Sidecar{
    			Ingress: []*networking.IstioIngressListener{
    				{
    					DefaultEndpoint: "[::1]:110",
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_test.go

    			name:            "ipv4 host: defaultEndpoint set to [::1]:7073",
    			proxy:           ipv4Proxy,
    			defaultEndpoint: "[::1]:7073",
    			expectedAddr:    "127.0.0.1",
    			expectedPort:    7073,
    		},
    		// ipv6 use cases
    		{
    			name:            "ipv6 host: defaultEndpoint set to 127.0.0.1:7073",
    			proxy:           ipv6Proxy,
    			defaultEndpoint: "127.0.0.1:7073",
    			expectedAddr:    "::1",
    			expectedPort:    7073,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  3. pkg/config/validation/validation.go

    			}
    			portMap.Insert(i.Port.Number)
    
    			if len(i.DefaultEndpoint) != 0 {
    				if strings.HasPrefix(i.DefaultEndpoint, UnixAddressPrefix) {
    					errs = AppendValidation(errs, ValidateUnixAddress(strings.TrimPrefix(i.DefaultEndpoint, UnixAddressPrefix)))
    				} else {
    					// format should be 127.0.0.1:port, [::1]:port or :port
    					sHost, sPort, sErr := net.SplitHostPort(i.DefaultEndpoint)
    					if sErr != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    which this gateway configuration should be applied. type: object servers: description: A list of server specifications. items: properties: bind: description: The ip or the Unix domain socket to which the listener should be bound to. type: string defaultEndpoint: type: string hosts: description: One or more hosts exposed by this gateway. items: type: string type: array name: description: An optional name of the server, when set must be unique across all servers. type: string port: description: The Port...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  5. tests/integration/pilot/common/routing.go

    metadata:
      name: sidecar
    spec:
      workloadSelector:
        labels:
          app: b
      egress:
      - hosts:
        - "./*"
      ingress:
      - port:
          number: %d
          protocol: HTTP
        defaultEndpoint: %s:%d
    `, ipCase.port.WorkloadPort, ipCase.endpoint, ipCase.port.WorkloadPort)
    			}
    			t.RunTraffic(TrafficTestCase{
    				name:   ipCase.name,
    				call:   client.CallOrFail,
    				config: config,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
Back to top