Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for defaultEndpoint (0.28 sec)

  1. 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)
  2. 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)
  3. 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)
  4. pilot/pkg/xds/xds_test.go

    kind: Sidecar
    metadata:
      name: sidecar
      namespace:  app
    spec:
    {{- if .IngressListener }}
      ingress:
        - port:
            number: 9080
            protocol: HTTP
            name: custom-http
          defaultEndpoint: unix:///var/run/someuds.sock
    {{- end }}
      egress:
        - hosts:
    {{ range $i, $ns := .ImportedNamespaces }}
          - {{$ns}}
    {{ end }}
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.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: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  9. 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)
  10. 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