Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for defaultEndpoint (0.24 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/peer_authentication_simulation_test.go

    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      labels:
        app: foo
      name: sidecar
    spec:
      ingress:
      - defaultEndpoint: 127.0.0.1:8080
        port:
          name: tls
          number: 8080
          protocol: TCP
      - defaultEndpoint: 127.0.0.1:9090
        port:
          name: plaintext
          number: 9090
          protocol: TCP
      egress:
      - hosts:
        - "*/*"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  3. 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)
  4. pilot/pkg/networking/core/cluster.go

    		} else if len(ingressListener.DefaultEndpoint) > 0 {
    			// parse the ip, port. Validation guarantees presence of :
    			hostIP, hostPort, hostErr := net.SplitHostPort(ingressListener.DefaultEndpoint)
    			if hostPort == "" || hostErr != nil {
    				continue
    			}
    			var err error
    			if port, err = strconv.Atoi(hostPort); err != nil {
    				continue
    			}
    			if hostIP == model.PodIPAddressPrefix {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_test.go

    						Name:     "uds",
    					},
    					Bind:            "1.1.1.1",
    					DefaultEndpoint: "127.0.0.1:8083",
    				},
    				{
    					Port: &networking.SidecarPort{
    						Number:   8084,
    						Protocol: "HTTP",
    						Name:     "uds",
    					},
    					Bind:            "1.1.1.1",
    					DefaultEndpoint: "127.0.0.1:8084",
    				},
    				{
    					// not conflict with service port
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  6. cmd/admin-handlers-pools.go

    	adminLogIf(ctx, pools.saveRebalanceStats(GlobalContext, 0, rebalSaveStoppedAt))
    }
    
    func proxyDecommissionRequest(ctx context.Context, defaultEndPoint Endpoint, w http.ResponseWriter, r *http.Request) (proxy bool) {
    	host := env.Get("_MINIO_DECOM_ENDPOINT_HOST", defaultEndPoint.Host)
    	if host == "" {
    		return
    	}
    	for nodeIdx, proxyEp := range globalProxyEndpoints {
    		if proxyEp.Endpoint.Host == host && !proxyEp.IsLocal {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/sidecar_simulation_test.go

    								Number:   80,
    								Protocol: "HTTP",
    								Name:     "http",
    							},
    							DefaultEndpoint: "127.0.0.1:8080",
    						},
    						{
    							Port: &networking.SidecarPort{
    								Number:   81,
    								Protocol: "HTTP",
    								Name:     "http",
    							},
    							DefaultEndpoint: "127.0.0.1:8080",
    						},
    					}},
    				},
    			},
    			clusters: map[string][]string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  8. 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)
  9. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                        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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  10. manifests/charts/base/crds/crd-all.gen.yaml

                        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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
Back to top