Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for RemoteDiscoveryAddressFor (0.21 sec)

  1. pkg/test/framework/components/istio/istio.go

    	CustomIngressFor(cluster cluster.Cluster, service types.NamespacedName, istioLabel string) ingress.Instance
    
    	// RemoteDiscoveryAddressFor returns the external address of the discovery server that controls
    	// the given cluster. This allows access to the discovery server from
    	// outside its cluster.
    	RemoteDiscoveryAddressFor(cluster cluster.Cluster) (netip.AddrPort, error)
    	// CreateRemoteSecret on the cluster with the given options.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 30 17:47:34 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. pkg/test/framework/components/istio/kube.go

    	if err != nil {
    		return "", err
    	}
    
    	if err := fw.Start(); err != nil {
    		return "", err
    	}
    	return fw.Address(), nil
    }
    
    func (i *istioImpl) RemoteDiscoveryAddressFor(cluster cluster.Cluster) (netip.AddrPort, error) {
    	var addr netip.AddrPort
    	primary := cluster.Primary()
    	if !primary.IsConfig() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/kube/deployment.go

    		return err
    	}
    
    	ist, err := istio.Get(ctx)
    	if err != nil {
    		return err
    	}
    	// this will wait until the eastwest gateway has an IP before running the next command
    	istiodAddr, err := ist.RemoteDiscoveryAddressFor(cfg.Cluster)
    	if err != nil {
    		return err
    	}
    
    	var subsetDir string
    	for _, subset := range cfg.Subsets {
    		subsetDir, err = os.MkdirTemp(dir, subset.Version+"-")
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
Back to top