Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ValidateClusters (0.14 sec)

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

    				hit++
    			} else {
    				miss++
    			}
    			if rc == nil {
    				emptyRoute := &route.RouteConfiguration{
    					Name:             routeName,
    					VirtualHosts:     []*route.VirtualHost{},
    					ValidateClusters: proto.BoolFalse,
    				}
    				rc = &discovery.Resource{
    					Name:     routeName,
    					Resource: protoconv.MessageToAny(emptyRoute),
    				}
    			}
    			routeConfigurations = append(routeConfigurations, rc)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/gateway.go

    		log.Warnf("buildGatewayRoutes: no gateways for router %v", node.ID)
    		return &route.RouteConfiguration{
    			Name:             routeName,
    			VirtualHosts:     []*route.VirtualHost{},
    			ValidateClusters: proto.BoolFalse,
    		}
    	}
    
    	ph := GetProxyHeaders(node, push, istionetworking.ListenerClassGateway)
    	merged := node.MergedGateway
    	log.Debugf("buildGatewayRoutes: gateways after merging: %v", merged)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_waypoint.go

    		Domains: []string{"*"},
    		Routes:  routes,
    	}
    
    	return &route.RouteConfiguration{
    		Name:             cc.clusterName,
    		VirtualHosts:     []*route.VirtualHost{inboundVHost},
    		ValidateClusters: proto.BoolFalse,
    	}
    }
    
    func (lb *ListenerBuilder) waypointInboundRoute(virtualService config.Config, listenPort int) ([]*route.Route, error) {
    	vs, ok := virtualService.Spec.(*networking.VirtualService)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/gateway_simulation_test.go

    			t.Log(xdstest.DumpList(t, sim.Routes))
    			t.Log(tt.config)
    			t.Log(tt.kubeConfig)
    		}
    		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 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 18:27:40 UTC 2024
    - 46.5K bytes
    - Viewed (0)
Back to top