diff --git a/kubernetes/upgrade/checks.go b/kubernetes/upgrade/checks.go index dd7da1e..21a06b3 100644 --- a/kubernetes/upgrade/checks.go +++ b/kubernetes/upgrade/checks.go @@ -177,6 +177,8 @@ func NewChecks(path *Path, state state.State, k8sConfig *rest.Config, controlPla "WindowsHostProcessContainers", }, }, + // https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG/CHANGELOG-1.29.md + "1.28->1.29": {}, }, }, nil } diff --git a/kubernetes/upgrade/path.go b/kubernetes/upgrade/path.go index 89c0668..54704ed 100644 --- a/kubernetes/upgrade/path.go +++ b/kubernetes/upgrade/path.go @@ -76,7 +76,9 @@ func (p *Path) IsSupported() bool { "1.26->1.27", "1.27->1.27", "1.27->1.28", - "1.28->1.28": + "1.28->1.28", + "1.28->1.29", + "1.29->1.29": return true }