Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for MinKubeVersion (0.22 sec)

  1. tests/integration/operator/switch_cr_test.go

    				_, err = cs.Dynamic().Resource(gvr.EnvoyFilter).Namespace(ns).Get(context.TODO(), name,
    					metav1.GetOptions{})
    			case "PodDisruptionBudget":
    				// policy/v1 is available on >=1.21
    				if cs.MinKubeVersion(21) {
    					_, err = cs.Kube().PolicyV1().PodDisruptionBudgets(ns).Get(context.TODO(), name,
    						metav1.GetOptions{})
    				} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. pkg/test/framework/test.go

    			t.goTest.Name(), len(t.s.Environment().Clusters()), t.requiredMaxClusters)
    		return
    	}
    
    	if t.minKubernetesMinorVersion > 0 {
    		for _, c := range ctx.Clusters() {
    			if !c.MinKubeVersion(t.minKubernetesMinorVersion) {
    				t.goTest.Skipf("Skipping %q: cluster %s is below required min k8s version 1.%d",
    					t.goTest.Name(), c.Name(), t.minKubernetesMinorVersion)
    				return
    			}
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. tests/integration/pilot/ingress_test.go

    	helmtest "istio.io/istio/tests/integration/helm"
    	ingressutil "istio.io/istio/tests/integration/security/sds_ingress/util"
    )
    
    func skipIfIngressClassUnsupported(t framework.TestContext) {
    	if !t.Clusters().Default().MinKubeVersion(18) {
    		t.Skip("IngressClass not supported")
    	}
    }
    
    // TestIngress tests that we can route using standard Kubernetes Ingress objects.
    func TestIngress(t *testing.T) {
    	framework.
    		NewTest(t).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/kube/deployment.go

    		istioIP = istioIPAddr.String()
    	}
    	return
    }
    
    func deploymentParams(ctx resource.Context, cfg echo.Config, settings *resource.Settings) (map[string]any, error) {
    	supportStartupProbe := cfg.Cluster.MinKubeVersion(0)
    	imagePullSecretName, err := settings.Image.PullSecretName()
    	if err != nil {
    		return nil, err
    	}
    
    	containerPorts := getContainerPorts(cfg)
    	appContainers := []map[string]any{{
    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