Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for proxy_version (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. pkg/config/analysis/analyzers/testdata/envoy-filter-replace-operation.yaml

          app: reviews4
      configPatches:
        # The first patch adds the Lua filter to the listener/http connection manager
      - applyTo: HTTP_FILTER
        match:
          context: SIDECAR_OUTBOUND
          proxy:
            proxyVersion: '^1\.11.*'
          listener:
            portNumber: 8080
            filterChain:
              filter:
                name: "envoy.filters.network.http_connection_manager"
                subFilter:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 19:38:42 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/relative-envoy-filter-operation.yaml

          app: reviews-3
      configPatches:
        # The first patch adds the Lua filter to the listener/http connection manager
      - applyTo: HTTP_FILTER
        match:
          context: SIDECAR_INBOUND
          proxy:
            proxyVersion: '^1\.11.*'
          listener:
            portNumber: 8080
            filterChain:
              filter:
                name: "envoy.filters.network.http_connection_manager.InternalAddressConfig"
        patch:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 19:38:42 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  7. pkg/config/validation/envoyfilter/envoyfilter_test.go

    				{
    					ApplyTo: networking.EnvoyFilter_LISTENER,
    					Match: &networking.EnvoyFilter_EnvoyConfigObjectMatch{
    						Proxy: &networking.EnvoyFilter_ProxyMatch{
    							ProxyVersion: "%#@~++==`24c234`",
    						},
    					},
    					Patch: &networking.EnvoyFilter_Patch{
    						Operation: networking.EnvoyFilter_Patch_REMOVE,
    					},
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  8. pkg/config/validation/envoyfilter/envoyfilter.go

    			continue
    		}
    
    		// ensure that the supplied regex for proxy version compiles
    		if cp.Match != nil && cp.Match.Proxy != nil && cp.Match.Proxy.ProxyVersion != "" {
    			if _, err := regexp.Compile(cp.Match.Proxy.ProxyVersion); err != nil {
    				errs = validation.AppendValidation(errs, fmt.Errorf("Envoy filter: invalid regex for proxy version, [%v]", err)) // nolint: stylecheck
    				continue
    			}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. tools/docker-builder/main.go

    	rootCmd.Flags().StringVar(&globalArgs.BaseImageRegistry, "image-base-registry", globalArgs.BaseImageRegistry, "base image registry to use")
    	rootCmd.Flags().StringVar(&globalArgs.ProxyVersion, "proxy-version", globalArgs.ProxyVersion, "proxy version to use")
    	rootCmd.Flags().StringVar(&globalArgs.ZtunnelVersion, "ztunnel-version", globalArgs.ZtunnelVersion, "ztunnel version to use")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  10. pkg/config/analysis/msg/messages.yaml

        template: "This EnvoyFilter does not have a priority and has a relative patch operation (NSTERT_BEFORE/AFTER, REPLACE, MERGE, DELETE) and proxyVersion set which can cause the EnvoyFilter not to be applied during an upgrade....
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
Back to top