Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 569 for Listeners (0.17 sec)

  1. pilot/pkg/networking/grpcgen/lds.go

    		SuppressDebugHeaders: false, // No need to set this to true, gRPC doesn't respect it anyways
    	}))
    
    	out := &listener.FilterChain{
    		Name:             "inbound-" + nameSuffix,
    		FilterChainMatch: nil,
    		Filters: []*listener.Filter{{
    			Name: "inbound-hcm" + nameSuffix,
    			ConfigType: &listener.Filter_TypedConfig{
    				TypedConfig: protoconv.MessageToAny(&hcm.HttpConnectionManager{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. pkg/bootstrap/testdata/tracing_tls_custom_sni_golden.json

      },
      "layered_runtime": {
          "layers": [
              {
                "name": "global config",
                "static_layer": {"envoy.deprecated_features:envoy.config.listener.v3.Listener.hidden_envoy_deprecated_use_original_dst":true,"envoy.reloadable_features.http_reject_path_with_fragment":false,"overload.global_downstream_max_connections":"2147483647","re2.max_program_size.error_level":"32768"}
              },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. pkg/ctrlz/ctrlz.go

    	}
    
    	// Canonicalize the address and resolve a dynamic port if necessary
    	listener, err := net.Listen("tcp", fmt.Sprintf("%s:%d", addr, o.Port))
    	if err != nil {
    		log.Errorf("Unable to start ControlZ: %v", err)
    		return nil, err
    	}
    
    	s := &Server{
    		listener: listener,
    		httpServer: http.Server{
    			Addr:           listener.Addr().(*net.TCPAddr).String(),
    			ReadTimeout:    10 * time.Second,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 21:22:53 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. pilot/pkg/features/pilot.go

    	"istio.io/istio/pkg/jwt"
    	"istio.io/istio/pkg/util/sets"
    )
    
    var (
    	// HTTP10 will add "accept_http_10" to http outbound listeners. Can also be set only for specific sidecars via meta.
    	HTTP10 = env.Register(
    		"PILOT_HTTP10",
    		false,
    		"Enables the use of HTTP 1.0 in the outbound HTTP listeners, to support legacy applications.",
    	).Get()
    
    	ScopeGatewayToNamespace = env.Register(
    		"PILOT_SCOPE_GATEWAY_TO_NAMESPACE",
    		false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. pkg/bootstrap/testdata/metrics_no_statsd_golden.json

      },
      "layered_runtime": {
          "layers": [
              {
                "name": "global config",
                "static_layer": {"envoy.deprecated_features:envoy.config.listener.v3.Listener.hidden_envoy_deprecated_use_original_dst":true,"envoy.reloadable_features.http_reject_path_with_fragment":false,"overload.global_downstream_max_connections":"2147483647","re2.max_program_size.error_level":"32768"}
              },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. pkg/bootstrap/testdata/running_golden.json

      },
      "layered_runtime": {
          "layers": [
              {
                "name": "global config",
                "static_layer": {"envoy.deprecated_features:envoy.config.listener.v3.Listener.hidden_envoy_deprecated_use_original_dst":true,"envoy.reloadable_features.http_reject_path_with_fragment":false,"overload.global_downstream_max_connections":"2147483647","re2.max_program_size.error_level":"32768"}
              },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. pkg/bootstrap/testdata/runningsds_golden.json

      },
      "layered_runtime": {
          "layers": [
              {
                "name": "global config",
                "static_layer": {"envoy.deprecated_features:envoy.config.listener.v3.Listener.hidden_envoy_deprecated_use_original_dst":true,"envoy.reloadable_features.http_reject_path_with_fragment":false,"overload.global_downstream_max_connections":"2147483647","re2.max_program_size.error_level":"32768"}
              },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 14K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/isolation.status.yaml.golden

        message: 'Failed to assign to any requested addresses: hostname "isolation-istio.gateway-conformance-infra.svc.domain.suffix"
          not found'
        reason: AddressNotUsable
        status: "False"
        type: Programmed
      listeners:
      - attachedRoutes: 1
        conditions:
        - lastTransitionTime: fake
          message: No errors found
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. tools/packaging/common/istio-start.sh

    EXEC_USER=${EXEC_USER:-istio-proxy}
    if [ "${ISTIO_INBOUND_INTERCEPTION_MODE}" = "TPROXY" ] ; then
      # In order to allow redirect inbound traffic using TPROXY, run envoy with the CAP_NET_ADMIN capability.
      # This allows configuring listeners with the "transparent" socket option set to true.
      EXEC_USER=root
    fi
    
    # The default matches the default istio.yaml - use sidecar.env to override ISTIO_PILOT_PORT or CA_ADDR if you
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 22:16:26 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/controller_test.go

    )
    
    var (
    	gatewayClassSpec = &k8s.GatewayClassSpec{
    		ControllerName: k8s.GatewayController(features.ManagedGatewayController),
    	}
    	gatewaySpec = &k8s.GatewaySpec{
    		GatewayClassName: "gwclass",
    		Listeners: []k8s.Listener{
    			{
    				Name:          "default",
    				Port:          9009,
    				Protocol:      "HTTP",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 16:47:06 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top