- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for MinK8SVersion (0.22 sec)
-
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, },
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 30 21:50:50 UTC 2024 - 6.5K bytes - Viewed (0) -
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 = 28 UnSupportedK8SVersionLogMsg = "\nThe Kubernetes version %s is not supported by Istio %s. The minimum supported Kubernetes version is 1.%d.\n" +
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 30 21:50:50 UTC 2024 - 2.6K bytes - Viewed (0) -
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 {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 24 02:31:32 UTC 2024 - 15.3K bytes - Viewed (0)