Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for routeConfigurationMatch (0.31 sec)

  1. pilot/pkg/networking/core/envoyfilter/rc_patch.go

    	for _, rp := range efw.Patches[networking.EnvoyFilter_ROUTE_CONFIGURATION] {
    		if rp.Operation != networking.EnvoyFilter_Patch_MERGE {
    			continue
    		}
    		if commonConditionMatch(patchContext, rp) &&
    			routeConfigurationMatch(patchContext, routeConfiguration, rp, portMap) {
    			merge.Merge(routeConfiguration, rp.Value)
    			IncrementEnvoyFilterMetric(rp.Key(), Route, true)
    		} else {
    			IncrementEnvoyFilterMetric(rp.Key(), Route, false)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. releasenotes/notes/route-collapse.yaml

        In this release, the [virtual host name match](https://istio.io/latest/docs/reference/config/networking/envoy-filter/#EnvoyFilter-RouteConfigurationMatch-VirtualHostMatch) may have different results.
    
        Previously, each domain name had its own virtual host. As an optimization, multiple domains may use a single virtual host.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 02 16:10:04 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/envoyfilter/rc_patch_test.go

    				},
    			},
    			want: true,
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			if got := routeConfigurationMatch(tt.args.patchContext, tt.args.rc, tt.args.cp, tt.args.portMap); got != tt.want {
    				t.Errorf("routeConfigurationMatch() = %v, want %v", got, tt.want)
    			}
    		})
    	}
    }
    
    func TestApplyRouteConfigurationPatches(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.4K bytes
    - Viewed (0)
Back to top