Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for proxy_version (0.22 sec)

  1. pilot/docker/Dockerfile.proxyv2

    # This will build the final image based on either debug or distroless from above
    # hadolint ignore=DL3006
    FROM ${BASE_DISTRIBUTION:-debug}
    
    WORKDIR /
    
    ARG proxy_version
    ARG SIDECAR=envoy
    
    # Copy Envoy bootstrap templates used by pilot-agent
    COPY envoy_bootstrap.json /var/lib/istio/envoy/envoy_bootstrap_tmpl.json
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. tools/docker-builder/common.go

    		"ISTIO_BASE_REGISTRY": args.BaseImageRegistry,
    		// Base distribution picks which variant to build
    		"BASE_DISTRIBUTION": baseDist,
    		// Additional metadata injected into some images
    		"proxy_version":    args.ProxyVersion,
    		"ztunnel_version":  args.ZtunnelVersion,
    		"istio_version":    args.IstioVersion,
    		"VM_IMAGE_NAME":    vmImageName(target),
    		"VM_IMAGE_VERSION": vmImageVersion(target),
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/envoyfilter/envoyfilter.go

    		message := msg.NewEnvoyFilterUsesRelativeOperation(r)
    
    		// if the proxyVersion is set choose that error message over the relative operation message as
    		// the proxyVersion error message also indicates that the proxyVersion is set
    		count := 0
    
    		for _, name := range patchFilterNames {
    			if instanceName == name {
    				count++
    				break
    			}
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/input-extra-resources/envoyfilter.yaml

          proxy:
            proxyVersion: ^1\.19.*
      - applyTo: HTTP_FILTER
        match:
          context: SIDECAR_INBOUND
          listener:
            filterChain:
              filter:
                name: envoy.filters.network.http_connection_manager
                subFilter:
                  name: envoy.filters.http.router
          proxy:
            proxyVersion: ^1\.19.*
      - applyTo: HTTP_FILTER
        match:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 18:26:24 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. pilot/pkg/model/envoyfilter_test.go

    					{
    						Patch: &networking.EnvoyFilter_Patch{},
    						Match: &networking.EnvoyFilter_EnvoyConfigObjectMatch{
    							Proxy: &networking.EnvoyFilter_ProxyMatch{ProxyVersion: `^1\.19.*`},
    						},
    					},
    				},
    			},
    			"1.19",
    			map[string]bool{
    				"1.19":         true,
    				"1.19.0":       true,
    				"1.19-dev.foo": true,
    				"1.5":          false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 27 04:20:28 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top