Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for autopassthrough (0.21 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. releasenotes/notes/sni-dnat-default.yaml

    upgradeNotes:
    - title: "`AUTO_PASSTHROUGH` Gateway mode"
      content: |
        Previously, gateways were configured with multiple Envoy `cluster` configurations for each Service in the cluster, even those
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 19 09:47:40 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  7. releasenotes/notes/34944.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 34944
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 31 21:17:28 UTC 2021
    - 213 bytes
    - Viewed (0)
  8. samples/multicluster/expose-services.yaml

    metadata:
      name: cross-network-gateway
    spec:
      selector:
        istio: eastwestgateway
      servers:
        - port:
            number: 15443
            name: tls
            protocol: TLS
          tls:
            mode: AUTO_PASSTHROUGH
          hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 22 16:29:16 UTC 2021
    - 300 bytes
    - Viewed (0)
  9. releasenotes/notes/auto-auto-passthrough.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
    - 33127
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 28 02:31:56 UTC 2021
    - 274 bytes
    - Viewed (0)
  10. 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)
Back to top