Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for IsAtLeastVersion (0.32 sec)

  1. pkg/test/framework/components/cluster/topology.go

    	c.ConfigClusterName = configClusterName
    	return c
    }
    
    func (c Topology) MinKubeVersion(minor uint) bool {
    	cluster := c.AllClusters[c.ClusterName]
    	return kube.IsAtLeastVersion(cluster, minor)
    }
    
    func (c Topology) MaxKubeVersion(minor uint) bool {
    	cluster := c.AllClusters[c.ClusterName]
    	return kube.IsLessThanVersion(cluster, minor+1)
    }
    
    func (c Topology) String() string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top