Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for VirtualServiceDependencies (0.35 sec)

  1. pilot/pkg/model/virtualservice.go

    	return cfg.Annotations[constants.InternalRouteSemantics] == constants.RouteSemanticsGateway
    }
    
    // VirtualServiceDependencies returns dependent configs of the vs,
    // for internal vs generated from gateway-api routes, it returns the parent routes,
    // otherwise it just returns the vs as is.
    func VirtualServiceDependencies(vs config.Config) []ConfigKey {
    	if !UseGatewaySemantics(vs) {
    		return []ConfigKey{
    			{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 11:17:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  2. pilot/pkg/model/sidecar.go

    	for _, delegate := range delegates {
    		out.AddConfigDependencies(delegate)
    	}
    	for _, vs := range defaultEgressListener.virtualServices {
    		for _, cfg := range VirtualServiceDependencies(vs) {
    			out.AddConfigDependencies(cfg.HashCode())
    		}
    	}
    
    	// Now that we have all the services that sidecars using this scope (in
    	// this config namespace) will see, identify all the destinationRules
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
Back to top