Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ValidateRouteConfigurations (0.18 sec)

  1. pilot/pkg/networking/core/gateway_simulation_test.go

    		t.Run("validate configs", func(t *testing.T) {
    			if tt.skipValidation {
    				t.Skip()
    			}
    			xdstest.ValidateClusters(t, sim.Clusters)
    			xdstest.ValidateListeners(t, sim.Listeners)
    			xdstest.ValidateRouteConfigurations(t, sim.Routes)
    		})
    	}
    	if tt.name != "" {
    		t.Run(tt.name, runTest)
    	} else {
    		runTest(t)
    	}
    }
    
    func createGateway(name, namespace string, servers ...string) string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 18:27:40 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/sidecar_simulation_test.go

    						Configs:           istio,
    						KubernetesObjects: kubeo,
    					})
    					sim := simulation.NewSimulation(t, s, s.SetupProxy(tt.proxy))
    					xdstest.ValidateListeners(t, sim.Listeners)
    					xdstest.ValidateRouteConfigurations(t, sim.Routes)
    					r := xdstest.ExtractRouteConfigurations(sim.Routes)
    					vh := r[tt.routeName]
    					exp := tt.expected
    					if variant == "httproute" && tt.expectedGateway != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top