We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d7350f commit 802869eCopy full SHA for 802869e
pkg/version/version.go
@@ -45,7 +45,7 @@ type VersionBundle struct {
45
MulticlusterControlplane string `json:"multicluster_controlplane"`
46
}
47
48
-var defaultBundleVersion = "1.1.0"
+var defaultBundleVersion = "1.1.1"
49
50
func GetDefaultBundleVersion() string {
51
return defaultBundleVersion
@@ -106,6 +106,13 @@ func getVersionBundle(version string) (VersionBundle, error) {
106
MulticlusterControlplane: "v0.7.0",
107
108
109
+ versionBundleList["1.1.1"] = VersionBundle{
110
+ OCM: "v1.1.1",
111
+ AppAddon: "v0.16.0",
112
+ PolicyAddon: "v0.16.0",
113
+ MulticlusterControlplane: "v0.7.0",
114
+ }
115
+
116
// default
117
versionBundleList["default"] = versionBundleList[defaultBundleVersion]
118
0 commit comments