Skip to content

Commit

Permalink
fix: does not upgrade Kubernetes to v1.30 (#2350)
Browse files Browse the repository at this point in the history
Signed-off-by: pixiake <[email protected]>
  • Loading branch information
pixiake authored Aug 8, 2024
1 parent 8adff94 commit fc2ce05
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions cmd/kk/pkg/version/kubernetes/version_enum.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ const (
V127
V128
V129
V130
)

var VersionList = []Version{
Expand All @@ -53,6 +54,7 @@ var VersionList = []Version{
V127,
V128,
V129,
V130,
}

func (v Version) String() string {
Expand All @@ -79,6 +81,8 @@ func (v Version) String() string {
return "v1.28"
case V129:
return "v1.29"
case V130:
return "v1.30"
default:
return "invalid option"
}
Expand Down

0 comments on commit fc2ce05

Please sign in to comment.