Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 204 for outCount (0.13 sec)

  1. samples/external/README.md

    # External Services
    
    By default, Istio-enabled services are unable to access services and URLs outside the cluster. Pods use <i>iptables</i> to transparently redirect all outbound traffic to the sidecar proxy, which only handles intra-cluster destinations.
    
    See [the Egress Task](https://istio.io/docs/tasks/traffic-management/egress/) for
    information on configuring Istio to contact external services.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. pilot/pkg/networking/networking_test.go

    			core.TrafficDirection_INBOUND,
    			ListenerProtocolTCP,
    		},
    		{
    			"Inbound unknown to Auto",
    			protocol.Unsupported,
    			core.TrafficDirection_INBOUND,
    			ListenerProtocolAuto,
    		},
    		{
    			"Outbound unknown to Auto",
    			protocol.Unsupported,
    			core.TrafficDirection_OUTBOUND,
    			ListenerProtocolAuto,
    		},
    		{
    			"UDP to UDP",
    			protocol.UDP,
    			core.TrafficDirection_INBOUND,
    			ListenerProtocolUnknown,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 01 02:46:15 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. pkg/envoy/admin.go

    	"bytes"
    	"fmt"
    	"io"
    	"net/http"
    	"strings"
    
    	"istio.io/istio/pkg/log"
    )
    
    // DrainListeners drains inbound listeners of Envoy so that inflight requests
    // can gracefully finish and even continue making outbound calls as needed.
    func DrainListeners(adminPort uint32, inboundonly bool, skipExit bool) error {
    	var drainURL string
    	if inboundonly {
    		drainURL = "drain_listeners?inboundonly&graceful"
    	} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 19 20:22:09 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. pilot/pkg/xds/debug_test.go

    		ads.RequestResponseAck(t, &discovery.DiscoveryRequest{TypeUrl: v3.ListenerType})
    		ads.RequestResponseAck(t, &discovery.DiscoveryRequest{
    			TypeUrl:       v3.EndpointType,
    			ResourceNames: []string{"outbound|9080||app2.default.svc.cluster.local"},
    		})
    		ads.RequestResponseAck(t, &discovery.DiscoveryRequest{
    			TypeUrl:       v3.RouteType,
    			ResourceNames: []string{"80", "8080"},
    		})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. pkg/kubelet/winstats/network_stats.go

    	packetsReceivedErrorsQuery    = "\\Network Adapter(*)\\Packets Received Errors"
    	packetsOutboundDiscardedQuery = "\\Network Adapter(*)\\Packets Outbound Discarded"
    	packetsOutboundErrorsQuery    = "\\Network Adapter(*)\\Packets Outbound Errors"
    )
    
    // networkCounter contains the counters for network adapters.
    type networkCounter struct {
    	packetsReceivedPerSecondCounter perfCounter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. tests/integration/security/filebased_tls_origination/egress_gateway_origination_test.go

    			clusterName := clusterName(dest, port)
    			// Ensure that we have an outbound configuration for the target port.
    			err := validator.NotExists("{.configs[*].dynamicActiveClusters[?(@.cluster.Name == '%s')]}", clusterName).Check()
    			if err != nil {
    				return false, err
    			}
    		}
    
    		return true, nil
    	}
    
    	workloads, _ := c.Workloads()
    	// Wait for the outbound config to be received by each workload from Pilot.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_traffic_policy.go

    // which can be called for both outbound and inbound cluster, but only connection pool will be applied to inbound cluster.
    func (cb *ClusterBuilder) applyTrafficPolicy(opts buildClusterOpts) {
    	connectionPool, outlierDetection, loadBalancer, tls, proxyProtocol := selectTrafficPolicyComponents(opts.policy)
    	// Connection pool settings are applicable for both inbound and outbound clusters.
    	if connectionPool == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  8. docs/contribute/debug_logging.md

    $ adb shell setprop log.tag.okhttp.Http2 DEBUG
    $ adb shell setprop log.tag.okhttp.TaskRunner DEBUG
    $ adb logcat '*:E' 'okhttp.Http2:D' 'okhttp.TaskRunner:D'
    ```
    
    ### HTTP/2 Frame Logging
    
    This logs inbound (`<<`) and outbound (`>>`) frames for HTTP/2 connections.
    
    ```
    [2020-01-01 00:00:00] >> CONNECTION 505249202a20485454502f322e300d0a0d0a534d0d0a0d0a
    [2020-01-01 00:00:00] >> 0x00000000     6 SETTINGS
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:35:36 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster.go

    var deltaConfigTypes = sets.New(kind.ServiceEntry.String(), kind.DestinationRule.String())
    
    // BuildClusters returns the list of clusters for the given proxy. This is the CDS output
    // For outbound: Cluster for each service/subset hostname or cidr with SNI set to service hostname
    // Cluster type based on resolution
    // For inbound (sidecar only): Cluster for each inbound endpoint port and for each service port
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  10. 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",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top