Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for MinK8SVersion (0.19 sec)

  1. istioctl/pkg/install/k8sversion/version_test.go

    			isValid: false,
    		},
    		{
    			version: versionInvalid1,
    			logMsg:  fmt.Sprintf(UnSupportedK8SVersionLogMsg, versionInvalid1.GitVersion, pkgVersion.Info.Version, MinK8SVersion),
    			isValid: false,
    		},
    		{
    			version: version1_20,
    			logMsg:  fmt.Sprintf(UnSupportedK8SVersionLogMsg, version1_20.GitVersion, pkgVersion.Info.Version, MinK8SVersion),
    			isValid: false,
    		},
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Fri Jan 19 02:46:48 GMT 2024
    - 6.3K bytes
    - Viewed (0)
  2. istioctl/pkg/install/k8sversion/version.go

    	"istio.io/istio/operator/pkg/util/clog"
    	"istio.io/istio/pkg/kube"
    	pkgVersion "istio.io/istio/pkg/version"
    )
    
    const (
    	// MinK8SVersion is the minimum k8s version required to run this version of Istio
    	// https://istio.io/docs/setup/platform-setup/
    	MinK8SVersion               = 26
    	UnSupportedK8SVersionLogMsg = "\nThe Kubernetes version %s is not supported by Istio %s. The minimum supported Kubernetes version is 1.%d.\n" +
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Jan 22 02:07:51 GMT 2024
    - 2.6K bytes
    - Viewed (0)
  3. istioctl/pkg/precheck/precheck.go

    	if err != nil {
    		return nil, err
    	}
    	if !compatible {
    		return []diag.Message{
    			msg.NewUnsupportedKubernetesVersion(&resource.Instance{Origin: clusterOrigin{}}, v.String(), fmt.Sprintf("1.%d", k8sversion.MinK8SVersion)),
    		}, nil
    	}
    	return nil, nil
    }
    
    // clusterOrigin defines an Origin that refers to the cluster
    type clusterOrigin struct{}
    
    func (o clusterOrigin) ClusterName() istiocluster.ID {
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Fri Apr 12 02:57:30 GMT 2024
    - 19.3K bytes
    - Viewed (0)
Back to top