Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 215 for in_bounds (0.42 sec)

  1. releasenotes/notes/disable-host-header-fallback.yaml

    releaseNotes:
    - |
      **Updated** Prometheus telemetry behavior for inbound traffic to disable host header fallback by default. This will
      prevent traffic coming from out-of-mesh locations from potential polluting the `destination_service` dimension in
      metrics with junk data (and exploding metrics cardinality). With this change, it is possible that users relying on
      host headers for labeling the destination service for inbound traffic from out-of-mesh workloads will see that traffic
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 22 19:40:45 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  2. internal/grid/muxserver.go

    		}
    	}()
    
    	// Data inbound to the handler
    	var handlerIn chan []byte
    	if inboundCap > 0 {
    		m.inbound = make(chan []byte, inboundCap)
    		handlerIn = make(chan []byte, 1)
    		go func(inbound chan []byte) {
    			wg.Wait()
    			defer xioutil.SafeClose(handlerIn)
    			m.handleInbound(c, inbound, handlerIn)
    		}(m.inbound)
    	}
    	// Fill outbound block.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. pilot/pkg/xds/testdata/none_cds.json

          "type": 4,
          "connect_timeout": 1000000000,
          "lb_policy": 4,
          "LbConfig": null
        },
        "inbound|7070|tcplocal|s1tcp.none": {
          "name": "inbound|7070|tcplocal|s1tcp.none",
          "connect_timeout": 1000000000,
          "load_assignment": {
            "cluster_name": "inbound|7070|tcplocal|s1tcp.none",
            "endpoints": [
              {
                "lb_endpoints": [
                  {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 26 15:28:15 UTC 2020
    - 6.5K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/peer_authentication_simulation_test.go

    				{
    					Name:   "tls on tls port",
    					Call:   mkCall(8080, simulation.MTLS),
    					Result: simulation.Result{ClusterMatched: "inbound|8080||"},
    				},
    				{
    					Name:   "plaintext on plaintext port",
    					Call:   mkCall(9090, simulation.Plaintext),
    					Result: simulation.Result{ClusterMatched: "inbound|9090||"},
    				},
    				{
    					Name: "tls on plaintext port",
    					Call: mkCall(9090, simulation.MTLS),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/sidecar_simulation_test.go

    			clusters: map[string][]string{
    				"inbound|8080||": nil,
    				"inbound|8081||": nil,
    				"inbound|8082||": nil,
    				"inbound|8083||": nil,
    			},
    			telemetry: map[string][]string{
    				"inbound|8080||": {string(service.Hostname)},
    				"inbound|8081||": {string(service.Hostname)},
    				"inbound|8082||": {string(serviceAlt.Hostname)},
    				"inbound|8083||": {string(serviceAlt.Hostname)},
    			},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  6. releasenotes/notes/tls-inbound-all-protocols.yaml

    John Howard <******@****.***> 1612368962 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 03 16:16:02 UTC 2021
    - 195 bytes
    - Viewed (0)
  7. istioctl/pkg/writer/envoy/configdump/testdata/ecds/output.txt

    ECDS NAME                                                     TYPE
    istio.io/telemetry/stats/prometheus/sidecar/Inbound/HTTP      
    istio.io/telemetry/stats/prometheus/sidecar/Inbound/TCP       
    istio.io/telemetry/stats/prometheus/sidecar/Outbound/HTTP     
    istio.io/telemetry/stats/prometheus/sidecar/Outbound/TCP      
    default.display-metadata                                      envoy.extensions.filters.http.wasm.v3.Wasm
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 24 08:16:26 UTC 2023
    - 528 bytes
    - Viewed (0)
  8. istioctl/pkg/proxyconfig/testdata/config_dump.json

                "name": "inbound-vip|8000|http|httpbin.default.svc.cluster.local",
                "type": "EDS",
                "eds_cluster_config": {
                  "eds_config": {
                    "ads": {},
                    "initial_fetch_timeout": "0s",
                    "resource_api_version": "V3"
                  },
                  "service_name": "inbound-vip|8000|http|httpbin.default.svc.cluster.local"
                },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 23:08:06 UTC 2024
    - 54.8K bytes
    - Viewed (0)
  9. tools/istio-iptables/pkg/cmd/root.go

    	flag.BindEnv(fs, constants.LocalExcludePorts, "d",
    		"Comma separated list of inbound ports to be excluded from redirection to Envoy (optional). "+
    			"Only applies when all inbound traffic (i.e. \"*\") is being redirected.",
    		&cfg.InboundPortsExclude)
    
    	flag.BindEnv(fs, constants.ExcludeInterfaces, "c",
    		"Comma separated list of NIC (optional). Neither inbound nor outbound traffic will be captured.",
    		&cfg.ExcludeInterfaces)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 17:36:41 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. tools/istio-iptables/pkg/constants/constants.go

    	ISTIOINREDIRECT = "ISTIO_IN_REDIRECT"
    )
    
    // Constants used in cobra/viper CLI
    const (
    	InboundInterceptionMode   = "istio-inbound-interception-mode"
    	InboundTProxyMark         = "istio-inbound-tproxy-mark"
    	InboundTProxyRouteTable   = "istio-inbound-tproxy-route-table"
    	InboundPorts              = "istio-inbound-ports"
    	LocalExcludePorts         = "istio-local-exclude-ports"
    	ExcludeInterfaces         = "istio-exclude-interfaces"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 01:42:30 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top