Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for IsRegularPod (0.47 sec)

  1. pkg/test/framework/components/echo/match/matchers.go

    // - VM
    // - Naked
    // - Headless
    // - TProxy
    // - Multi-Subset
    var RegularPod Matcher = func(instance echo.Instance) bool {
    	return instance.Config().IsRegularPod()
    }
    
    var NotRegularPod = Not(RegularPod)
    
    // MultiVersion matches echos that have Multi-version specific setup.
    var MultiVersion Matcher = func(i echo.Instance) bool {
    	if len(i.Config().Subsets) != 2 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/config.go

    }
    
    // IsRegularPod returns true if the echo pod is not any of the following:
    // - VM
    // - Naked
    // - Headless
    // - TProxy
    // - Multi-Subset
    // - DualStack Service Pods
    func (c Config) IsRegularPod() bool {
    	return len(c.Subsets) == 1 &&
    		!c.IsVM() &&
    		!c.IsTProxy() &&
    		!c.IsNaked() &&
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top