diff --git a/pkg/model/components/etcd.go b/pkg/model/components/etcd.go index f49e05b4dd..24e750fe3f 100644 --- a/pkg/model/components/etcd.go +++ b/pkg/model/components/etcd.go @@ -31,7 +31,7 @@ var _ loader.OptionsBuilder = &EtcdOptionsBuilder{} const ( DefaultEtcd3Version_1_17 = "3.4.3" DefaultEtcd3Version_1_19 = "3.4.13" - DefaultEtcd3Version_1_22 = "3.5.0" + DefaultEtcd3Version_1_22 = "3.5.1" ) // BuildOptions is responsible for filling in the defaults for the etcd cluster model diff --git a/pkg/model/components/etcdmanager/options.go b/pkg/model/components/etcdmanager/options.go index 9cdc5c76ee..225db62ac3 100644 --- a/pkg/model/components/etcdmanager/options.go +++ b/pkg/model/components/etcdmanager/options.go @@ -63,7 +63,7 @@ func (b *EtcdManagerOptionsBuilder) BuildOptions(o interface{}) error { return nil } -var supportedEtcdVersions = []string{"3.1.12", "3.2.18", "3.2.24", "3.3.10", "3.3.13", "3.3.17", "3.4.3", "3.4.13", "3.5.0"} +var supportedEtcdVersions = []string{"3.1.12", "3.2.18", "3.2.24", "3.3.10", "3.3.13", "3.3.17", "3.4.3", "3.4.13", "3.5.0", "3.5.1"} func etcdVersionIsSupported(version string) bool { version = strings.TrimPrefix(version, "v")