Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for proxy_version (0.2 sec)

  1. 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)
  2. pilot/pkg/model/context_test.go

    			pversion := &model.IstioVersion{
    				Major: tt.fields.Major,
    				Minor: tt.fields.Minor,
    				Patch: tt.fields.Patch,
    			}
    			if got := pversion.Compare(tt.args.inv); got != tt.want {
    				t.Errorf("ProxyVersion.Compare() = %v, want %v", got, tt.want)
    			}
    		})
    	}
    }
    
    func Test_parseIstioVersion(t *testing.T) {
    	type args struct {
    		ver string
    	}
    	tests := []struct {
    		name string
    		args args
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 23:51:52 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. pilot/pkg/networking/core/httproute.go

    		}
    		sort.SliceStable(services, func(i, j int) bool {
    			return services[i].Hostname <= services[j].Hostname
    		})
    		routeCache = &istio_route.Cache{
    			RouteName:               routeName,
    			ProxyVersion:            node.Metadata.IstioVersion,
    			ClusterID:               string(node.Metadata.ClusterID),
    			DNSDomain:               node.DNSDomain,
    			DNSCapture:              bool(node.Metadata.DNSCapture),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  7. 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)
  8. manifests/charts/base/crds/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.6K bytes
    - Viewed (0)
Back to top