Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for AddressVM (0.56 sec)

  1. pkg/test/framework/components/gcemetadata/kube.go

    		c.addressVM = net.JoinHostPort(lb, fmt.Sprint(svc.Spec.Ports[1].Port))
    	} else {
    		c.address = net.JoinHostPort(svc.Spec.ClusterIP, fmt.Sprint(svc.Spec.Ports[0].Port))
    		c.addressVM = net.JoinHostPort(svc.Spec.ClusterIP, fmt.Sprint(svc.Spec.Ports[1].Port))
    	}
    	scopes.Framework.Infof("GCE Metadata Server in-cluster address: %s/%s", c.address, c.addressVM)
    
    	return c, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 22:47:52 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. pkg/test/framework/components/gcemetadata/gcemetadata.go

    	// Metadata Server.
    	Address() string
    	// Address is the IP Address of the service provided by the fake GCE
    	// Metadata Server to be used for "VM" instances
    	AddressVM() string
    }
    
    // Config defines the options for creating an fake GCE Metadata Server component.
    type Config struct {
    	// Cluster to be used in a multicluster environment
    	Cluster cluster.Cluster
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 22:47:52 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top