Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 35 for proxy_version (0.16 sec)

  1. tests/integration/pilot/testdata/upgrade/1.9.5-install.yaml.tar

    configPatches: - applyTo: NETWORK_FILTER match: context: SIDECAR_INBOUND proxy: proxyVersion: '^1\.8.*' listener: {} patch: operation: INSERT_BEFORE value: name: istio.metadata_exchange typed_config: "@type": type.googleapis.com/udpa.type.v1.TypedStruct type_url: type.googleapis.com/envoy.tcp.metadataexchange.config.MetadataExchange value: protocol: istio-peer-exchange - applyTo: CLUSTER match: context: SIDECAR_OUTBOUND proxy: proxyVersion: '^1\.8.*' cluster: {} patch: operation: MERGE value: filters: - name:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 01 19:57:24 UTC 2021
    - 80K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_cache.go

    			proxy,
    			cb.req.Push,
    			clusterName,
    			model.TrafficDirectionOutbound, "", service.Hostname, port.Port,
    			service, dr,
    		)
    	}
    	return clusterCache{
    		clusterName:     clusterName,
    		proxyVersion:    cb.proxyVersion,
    		locality:        cb.locality,
    		proxyClusterID:  cb.clusterID,
    		proxySidecar:    cb.sidecarProxy(),
    		proxyView:       cb.proxyView,
    		hbone:           cb.sendHbone,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. tests/integration/pilot/testdata/upgrade/1.6.11-install.yaml.tar

    configPatches: - applyTo: NETWORK_FILTER match: context: SIDECAR_INBOUND proxy: proxyVersion: '^1\.6.*' listener: {} patch: operation: INSERT_BEFORE value: name: istio.metadata_exchange typed_config: "@type": type.googleapis.com/udpa.type.v1.TypedStruct type_url: type.googleapis.com/envoy.tcp.metadataexchange.config.MetadataExchange value: protocol: istio-peer-exchange - applyTo: CLUSTER match: context: SIDECAR_OUTBOUND proxy: proxyVersion: '^1\.6.*' cluster: {} patch: operation: MERGE value: filters: - name:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 16:06:08 UTC 2021
    - 50K bytes
    - Viewed (0)
  4. pilot/pkg/model/envoyfilter.go

    		} else if cp.Match.Proxy != nil && cp.Match.Proxy.ProxyVersion != "" {
    			// Attempt to convert regex to a simple prefix match for the common case of matching
    			// a standard Istio version. This field should likely be replaced with semver, but for now
    			// we can workaround the performance impact of regex
    			if prefix, f := wellKnownVersions[cp.Match.Proxy.ProxyVersion]; f {
    				cpw.ProxyPrefixMatch = prefix
    			} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 13:57:28 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. tests/fuzz/testdata/FuzzConfigValidation2/fuzz_config_validation2.dict

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 07 17:07:53 UTC 2021
    - 2K bytes
    - Viewed (0)
  6. tools/docker-builder/types.go

    	b.WriteString("BaseVersion:       " + fmt.Sprint(a.BaseVersion) + "\n")
    	b.WriteString("BaseImageRegistry: " + fmt.Sprint(a.BaseImageRegistry) + "\n")
    	b.WriteString("ProxyVersion:      " + fmt.Sprint(a.ProxyVersion) + "\n")
    	b.WriteString("ZtunnelVersion:    " + fmt.Sprint(a.ZtunnelVersion) + "\n")
    	b.WriteString("IstioVersion:      " + fmt.Sprint(a.IstioVersion) + "\n")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/route/route_cache.go

    	Separator = []byte{'~'}
    	Slash     = []byte{'/'}
    )
    
    // Cache includes the variables that can influence a Route Configuration.
    // Implements XdsCacheEntry interface.
    type Cache struct {
    	RouteName string
    
    	ProxyVersion string
    	// proxy cluster ID
    	ClusterID string
    	// proxy dns domain
    	DNSDomain string
    	// DNSCapture indicates whether the workload has enabled dns capture
    	DNSCapture bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. tools/bug-report/pkg/bugreport/bugreport.go

    			sets.InsertOrNew(proxyVersionsMap, revision, pi.IstioVersion)
    		}
    	}
    	for revision, vmap := range proxyVersionsMap {
    		for v := range vmap {
    			proxyVersions[revision] = append(proxyVersions[revision], v)
    		}
    	}
    	return istioVersions, proxyVersions
    }
    
    func getIstioVersion(kubeClient kube.CLIClient, istioNamespace string) string {
    	versions, err := kubeClient.GetIstioVersions(context.TODO(), istioNamespace)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/testdata/envoy-filter-add-operation.yaml

    kind: EnvoyFilter
    metadata:
      name: test-auth-4
      namespace: bookinfo
    spec:
      configPatches:
      - applyTo: HTTP_FILTER
        match:
          context: SIDECAR_INBOUND
          proxy:
            proxyVersion: '^1\.11.*'
          app: add4
        patch:
          operation: ADD
          filterClass: AUTHZ # This filter will run *after* the Istio authz filter.
          value:
            name: envoy.filters.http.ext_authz
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 19:38:42 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  10. pilot/pkg/xds/debug_test.go

    		if i == attempts-1 {
    			errorHandler = t.Errorf
    		} else {
    			errorHandler = t.Logf
    		}
    		for _, ss := range gotStatus {
    			if ss.ProxyID == nodeID {
    				if ss.ProxyVersion == "" {
    					errorHandler("ProxyVersion should always be set for %v", nodeID)
    				}
    				if (ss.ClusterSent != "") != wantSent {
    					errorHandler("wanted ClusterSent set %v got %v for %v", wantSent, ss.ClusterSent, nodeID)
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top