You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## What
allow installation on k8s `1.26.x` (previously we allowed only up to
`1.25.x`)
no other code changes required to support `1.26`
## Why
EKS has 1.26 available, and i'm sure other cloud providers as well
## Notes
improved k8s version check to use semver semantics for `1.21-0 - 1.26-0`
returnfmt.Errorf("%s: cluster's server version must be between %s and %s", requirementsValidationErrorMessage, store.Get().MinKubeVersion, store.Get().MaxKubeVersion)
94
+
v:=semver.MustParse(kubeVersion.String())
95
+
if!store.Get().KubeVersionConstrint.Check(v) {
96
+
returnfmt.Errorf("%s: cluster's server version must match %s", requirementsValidationErrorMessage, store.Get().KubeVersionConstrint)
0 commit comments