Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for MaxKubeVersion (0.15 sec)

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

    	NetworkName() string
    
    	// MinKubeVersion returns true if the cluster is at least the version specified,
    	// false otherwise
    	MinKubeVersion(minor uint) bool
    
    	// MaxKubeVersion returns true if the cluster is at most the version specified,
    	// false otherwise
    	MaxKubeVersion(minor uint) bool
    
    	// IsPrimary returns true if this is a primary cluster, containing an instance
    	// of the Istio control plane.
    	IsPrimary() bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. tests/integration/pilot/revisioned_upgrade_test.go

    		Run(func(t framework.TestContext) {
    			t.Skip("https://github.com/istio/istio/pull/46213")
    			// Kubernetes 1.22 drops support for a number of legacy resources, so we cannot install the old versions
    			if !t.Clusters().Default().MaxKubeVersion(21) {
    				t.Skipf("k8s version not supported for %s (>%s)", t.Name(), "1.21")
    			}
    			versions := []string{NMinusOne, NMinusTwo, NMinusThree, NMinusFour}
    			for _, v := range versions {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. pkg/test/framework/components/cluster/topology.go

    	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 {
    	buf := &bytes.Buffer{}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. tests/integration/pilot/multi_version_revision_test.go

    		t.Skipf("k8s version not supported for %s (<%s)", t.Name(), "1.16")
    	}
    	// Kubernetes 1.22 drops support for a number of legacy resources, so we cannot install the old versions
    	if !t.Clusters().Default().MaxKubeVersion(21) {
    		t.Skipf("k8s version not supported for %s (>%s)", t.Name(), "1.21")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top