Skip to content

Commit

Permalink
feat: support Kubernetes 1.29 upgrades
Browse files Browse the repository at this point in the history
So far (at alpha.1) there seems to be no removed flags/feature gates.

Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com>
  • Loading branch information
smira committed Sep 27, 2023
1 parent ae33a4a commit 3aa47a4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions kubernetes/upgrade/checks.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down
4 changes: 3 additions & 1 deletion kubernetes/upgrade/path.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit 3aa47a4

Please sign in to comment.