Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for proxy_version (0.26 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. pilot/pkg/xds/debug.go

    	ClusterID            string         `json:"cluster_id,omitempty"`
    	ProxyID              string         `json:"proxy,omitempty"`
    	ProxyType            model.NodeType `json:"proxy_type,omitempty"`
    	ProxyVersion         string         `json:"proxy_version,omitempty"`
    	IstioVersion         string         `json:"istio_version,omitempty"`
    	ClusterSent          string         `json:"cluster_sent,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  3. pilot/pkg/model/push_context_test.go

    				networking.EnvoyFilter_LISTENER: {
    					{
    						Match: &networking.EnvoyFilter_EnvoyConfigObjectMatch{
    							Proxy: &networking.EnvoyFilter_ProxyMatch{
    								ProxyVersion: "1\\.4.*",
    							},
    						},
    						ProxyVersionRegex: proxyVersionRegex,
    					},
    				},
    			},
    		},
    		{
    			Name:             "ef2",
    			workloadSelector: map[string]string{"app": "v1"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. pilot/pkg/networking/core/cluster_builder.go

    	clusterID          string                // Cluster in which proxy is running.
    	proxyID            string                // Identifier that uniquely identifies a proxy.
    	proxyVersion       string                // Version of Proxy.
    	proxyType          model.NodeType        // Indicates whether the proxy is sidecar or gateway.
    	sidecarScope       *model.SidecarScope   // Computed sidecar for the proxy.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    							Filter: &networking.EnvoyFilter_ListenerMatch_FilterMatch{Name: "filter1"},
    						},
    					},
    				},
    				Proxy: &networking.EnvoyFilter_ProxyMatch{
    					ProxyVersion: `^1\.[2-9](.*?)$`,
    				},
    			},
    			Patch: &networking.EnvoyFilter_Patch{
    				Operation: networking.EnvoyFilter_Patch_INSERT_BEFORE,
    				Value:     buildPatchStruct(`{"name":"filter0"}`),
    			},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  9. pkg/config/analysis/msg/messages.gen.go

    	// Description: 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. Using the INSERT_FIRST or ADD option or setting the priority may help in ensuring the EnvoyFilter is applied correctly.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  10. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                  description: Match on the node metadata supplied by
                                    a proxy when connecting to Istio Pilot.
                                  type: object
                                proxyVersion:
                                  description: A regular expression in golang regex format
                                    (RE2) that can be used to select proxies using a specific
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
Back to top