Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for LoadValues (0.21 sec)

  1. pkg/test/framework/components/echo/common/deployment/external.go

    			},
    		},
    	}
    	if t.Settings().EnableDualStack {
    		config.IPFamilies = "IPv6, IPv4"
    		config.IPFamilyPolicy = "RequireDualStack"
    	}
    	return b.WithConfig(config)
    }
    
    func (e *External) LoadValues(echos echo.Instances) {
    	e.All = match.ServiceName(echo.NamespacedName{Name: ExternalSvc, Namespace: e.Namespace}).GetMatches(echos)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/common/deployment/namespace.go

    		if config.Namespace == nil {
    			config.Namespace = n.Namespace
    		}
    		if config.Namespace.Name() == n.Namespace.Name() {
    			b = b.WithConfig(config)
    		}
    	}
    	return b
    }
    
    func (n *EchoNamespace) loadValues(t resource.Context, echos echo.Instances, d *Echos) error {
    	ns := n.Namespace
    	n.All = match.Namespace(ns).GetMatches(echos).Services()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top