Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for reachableFromVM (0.11 sec)

  1. pkg/test/framework/components/echo/echotest/filters.go

    		match.NotExternal,
    		match.Not(match.Network(srcNw)))
    	return match.Not(excluded)
    }
    
    // reachableFromVM filters out external services due to issues with ServiceEntry resolution
    // TODO https://github.com/istio/istio/issues/27154
    func reachableFromVM(from echo.Instance) match.Matcher {
    	if !from.Config().IsVM() {
    		return match.Any
    	}
    	return match.NotExternal
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top