Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 792 for Routing (0.19 sec)

  1. pilot/pkg/networking/core/cluster_tls.go

    		}
    		// Update TLS settings for ISTIO_MUTUAL. Use client provided SNI if set. Otherwise,
    		// overwrite with the auto generated SNI. User specified SNIs in the istio mtls settings
    		// are useful when routing via gateways. Use Service Accounts if Subject Alt names
    		// are not specified in TLS settings.
    		sniToUse := tls.Sni
    		if len(sniToUse) == 0 {
    			sniToUse = sni
    		}
    		subjectAltNamesToUse := tls.SubjectAltNames
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. common/scripts/kind_provisioner.sh

      C2_DOCKER_IP=$(docker inspect -f "{{ .NetworkSettings.Networks.kind.IPAddress }}" "${C2_NODE}")
      if [ "${POD_TO_POD_AND_SERVICE_CONNECTIVITY}" -eq 1 ]; then
        # Set up routing rules for inter-cluster direct pod to pod & service communication
        C1_POD_CIDR=$(KUBECONFIG="${C1_KUBECONFIG}" kubectl get node -ojsonpath='{.items[0].spec.podCIDR}')
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 19:12:55 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/capture/run.go

    	var table string
    	if cfg.cfg.InboundPortsInclude != "" {
    		if cfg.cfg.InboundInterceptionMode == constants.TPROXY {
    			// When using TPROXY, create a new chain for routing all inbound traffic to
    			// Envoy. Any packet entering this chain gets marked with the ${INBOUND_TPROXY_MARK} mark,
    			// so that they get routed to the loopback interface in order to get redirected to Envoy.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-kubeapiserver.sh

        params+=" --proxy-client-cert-file=${PROXY_CLIENT_CERT_PATH}"
        params+=" --proxy-client-key-file=${PROXY_CLIENT_KEY_PATH}"
      fi
      params+=" --enable-aggregator-routing=true"
      if [[ -e "${APISERVER_CLIENT_CERT_PATH}" ]] && [[ -e "${APISERVER_CLIENT_KEY_PATH}" ]]; then
        params+=" --kubelet-client-certificate=${APISERVER_CLIENT_CERT_PATH}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  5. tests/integration/telemetry/api/stats_test.go

    			base := filepath.Join(env.IstioSrc, "tests/integration/telemetry/testdata/")
    			// Following resources are being deployed to test sidecar->gateway communication. With following resources,
    			// routing is being setup from sidecar to external site, via egress gateway.
    			// clt(https:443) -> sidecar(tls:443) -> istio-mtls -> (TLS:443)egress-gateway-> vs(tcp:443) -> cnn.com
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  6. src/net/ip.go

    // length of the byte slice: a 16-byte slice can still
    // be an IPv4 address.
    type IP []byte
    
    // An IPMask is a bitmask that can be used to manipulate
    // IP addresses for IP addressing and routing.
    //
    // See type [IPNet] and func [ParseCIDR] for details.
    type IPMask []byte
    
    // An IPNet represents an IP network.
    type IPNet struct {
    	IP   IP     // network number
    	Mask IPMask // network mask
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. pilot/pkg/security/authn/policy_applier.go

    	filterConfigProto = a.setAuthnFilterForRequestAuthn(filterConfigProto)
    
    	if filterConfigProto == nil {
    		return nil
    	}
    	// disable clear route cache for sidecars because the JWT claim based routing is only supported on gateways.
    	filterConfigProto.DisableClearRouteCache = forSidecar
    
    	// Note: in previous Istio versions, the authn filter also handled PeerAuthentication, to extract principal.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.2.md

      * Support for ELBs with complex configurations: better subnet selection with
    multiple subnets, and internal ELBs
      * Support for VPCs with private dns names
      * Multiple fixes to EBS volume mounting code for robustness, and to support
    mounting the full number of AWS recommended volumes.
      * Multiple fixes to avoid hitting AWS rate limits, and to throttle if we do
      * Support for the EC2 Container Registry (currently in us-east-1 only)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  9. src/net/http/pattern.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Patterns for ServeMux routing.
    
    package http
    
    import (
    	"errors"
    	"fmt"
    	"net/url"
    	"strings"
    	"unicode"
    )
    
    // A pattern is something that can be matched against an HTTP request.
    // It has an optional method, an optional host, and a path.
    type pattern struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 16:36:30 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  10. pkg/model/proxy.go

    var ALPNH2Only = []string{"h2"}
    
    // ALPNInMeshH2 advertises that Proxy is going to use HTTP/2 when talking to the in-mesh cluster.
    // The custom "istio" value indicates in-mesh traffic and it's going to be used for routing decisions.
    // Once Envoy supports client-side ALPN negotiation, this should be {"istio", "h2", "http/1.1"}.
    var ALPNInMeshH2 = []string{"istio", "h2"}
    
    func StringToExactMatch(in []string) []*matcher.StringMatcher {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
Back to top