Skip to content

Commit

Permalink
Update default versions (#382)
Browse files Browse the repository at this point in the history
Signed-off-by: zhujian <[email protected]>
  • Loading branch information
zhujian7 authored Oct 10, 2023
1 parent 0119ac0 commit 2d58095
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.6.0
v0.7.0
13 changes: 12 additions & 1 deletion pkg/helpers/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ type VersionBundle struct {
MulticlusterControlplane string
}

var defaultBundleVersion = "0.11.0"
var defaultBundleVersion = "0.12.0"

func GetDefaultBundleVersion() string {
return defaultBundleVersion
Expand Down Expand Up @@ -125,6 +125,17 @@ func GetVersionBundle(version string) (VersionBundle, error) {
MulticlusterControlplane: "v0.2.0",
}

versionBundleList["0.12.0"] = VersionBundle{
Registration: "v0.12.0",
Placement: "v0.12.0",
Work: "v0.12.0",
Operator: "v0.12.0",
AddonManager: "v0.12.0",
AppAddon: "v0.12.0",
PolicyAddon: "v0.12.0",
MulticlusterControlplane: "v0.3.0",
}

// default
versionBundleList["default"] = versionBundleList[defaultBundleVersion]

Expand Down

0 comments on commit 2d58095

Please sign in to comment.