Supported upgrade k8s to v1.33 (#2544)
Some checks failed
CI / Build (push) Has been cancelled
Release Drafter / update_release_draft (push) Has been cancelled
Sync Feature Branch to Main / sync-feature (push) Has been cancelled
Kubernetes-Auto-Support / update-kubernetes-version (push) Has been cancelled

Signed-off-by: pixiake <guofeng@yunify.com>
This commit is contained in:
pixiake 2025-04-25 11:12:43 +08:00 committed by GitHub
parent 16ee423be0
commit d575facbed
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -42,6 +42,7 @@ const (
V130
V131
V132
V133
)
var VersionList = []Version{
@ -59,6 +60,7 @@ var VersionList = []Version{
V130,
V131,
V132,
V133,
}
func (v Version) String() string {
@ -91,6 +93,8 @@ func (v Version) String() string {
return "v1.31"
case V132:
return "v1.32"
case V133:
return "v1.33"
default:
return "invalid option"
}