Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for autopassthrough (0.34 sec)

  1. releasenotes/notes/drop-legacy-autopassthrough.yaml

    John Howard <******@****.***> 1682617769 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 27 17:49:29 UTC 2023
    - 157 bytes
    - Viewed (0)
  2. pilot/pkg/xds/lds.go

    }
    
    var _ model.XdsResourceGenerator = &LdsGenerator{}
    
    // Map of all configs that do not impact LDS
    var skippedLdsConfigs = map[model.NodeType]sets.Set[kind.Kind]{
    	model.Router: sets.New(
    		// for autopassthrough gateways, we build filterchains per-dr subset
    		kind.WorkloadGroup,
    		kind.WorkloadEntry,
    		kind.Secret,
    		kind.ProxyConfig,
    		kind.DNSName,
    	),
    	model.SidecarProxy: sets.New(
    		kind.Gateway,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/network.go

    	if event == model.EventDelete {
    		gatewaysChanged = len(previousGateways) > 0
    		delete(n.gatewaysFromResource, gw.UID)
    		return nil
    	}
    
    	autoPassthrough := func(l v1beta1.Listener) bool {
    		return kube.IsAutoPassthrough(gw.GetLabels(), l)
    	}
    
    	base := model.NetworkGateway{
    		Network: network.ID(gw.GetLabels()[label.TopologyNetwork.Name]),
    		Cluster: n.clusterID,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  4. pilot/pkg/model/gateway.go

    	verifiedCertificateReferences := sets.New[string]()
    	http3AdvertisingRoutes := sets.New[string]()
    	tlsHostsByPort := map[uint32]map[string]string{} // port -> host/bind map
    	autoPassthrough := false
    
    	log.Debugf("MergeGateways: merging %d gateways", len(gateways))
    	for _, gwAndInstance := range gateways {
    		gatewayConfig := gwAndInstance.gateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  5. tests/integration/pilot/common/traffic.go

    	RunCase("sniffing", protocolSniffingCases)
    	RunCase("selfcall", selfCallsCases)
    	RunSkipAmbient("serverfirst", serverFirstTestCases, "Expected success cases time out")
    	RunCase("gateway", gatewayCases)
    	RunCase("autopassthrough", autoPassthroughCases)
    	RunSkipAmbient("loop", trafficLoopCases, "does not error (waypoint -> waypoint)")
    	RunSkipAmbient("tls-origination", tlsOriginationCases, "not workload agnostic")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 19:10:01 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/eastwest-labelport.yaml.golden

      namespace: istio-system
    spec:
      servers:
      - hosts:
        - istio-system/*.local
        port:
          name: default
          number: 35443
          protocol: TLS
        tls:
          mode: AUTO_PASSTHROUGH
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      annotations:
        internal.istio.io/parents: TLSRoute/eastwestgateway-grpc.istio-system
        internal.istio.io/route-semantics: gateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/tunnelingconfig/apply.go

    		UsePost:  tunnelSettings.Protocol == "POST",
    	}
    }
    
    // Skip has no effect; its only purpose is to avoid passing nil values for ApplyFunc arguments
    // when it is not desired to apply `tunneling_config` to a listener, e.g. AUTO_PASSTHROUGH
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/eastwest-tlsoption.yaml.golden

      namespace: istio-system
    spec:
      servers:
      - hosts:
        - istio-system/*.local
        port:
          name: default
          number: 35443
          protocol: TLS
        tls:
          mode: AUTO_PASSTHROUGH
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      annotations:
        internal.istio.io/parents: TLSRoute/eastwestgateway-grpc.istio-system
        internal.istio.io/route-semantics: gateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/testdata/eastwest.yaml.golden

      namespace: istio-system
    spec:
      servers:
      - hosts:
        - istio-system/*.local
        port:
          name: default
          number: 15443
          protocol: TLS
        tls:
          mode: AUTO_PASSTHROUGH
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      annotations:
        internal.istio.io/parents: TLSRoute/eastwestgateway-grpc.istio-system
        internal.istio.io/route-semantics: gateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/conversion.go

    func PodTLSMode(pod *corev1.Pod) string {
    	if pod == nil {
    		return model.DisabledTLSModeLabel
    	}
    	return model.GetTLSModeFromEndpointLabels(pod.Labels)
    }
    
    // IsAutoPassthrough determines if a listener should use auto passthrough mode. This is used for
    // multi-network. In the Istio API, this is an explicit tls.Mode. However, this mode is not part of
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top