mirror of https://github.com/kubernetes/kops.git
Update etcd to v3.5.4
This commit is contained in:
parent
80493ed902
commit
5b4daf85d0
|
|
@ -30,7 +30,7 @@ var _ loader.OptionsBuilder = &EtcdOptionsBuilder{}
|
||||||
|
|
||||||
const (
|
const (
|
||||||
DefaultEtcd3Version_1_19 = "3.4.13"
|
DefaultEtcd3Version_1_19 = "3.4.13"
|
||||||
DefaultEtcd3Version_1_22 = "3.5.3"
|
DefaultEtcd3Version_1_22 = "3.5.4"
|
||||||
)
|
)
|
||||||
|
|
||||||
// BuildOptions is responsible for filling in the defaults for the etcd cluster model
|
// BuildOptions is responsible for filling in the defaults for the etcd cluster model
|
||||||
|
|
|
||||||
|
|
@ -62,7 +62,7 @@ func (b *EtcdManagerOptionsBuilder) BuildOptions(o interface{}) error {
|
||||||
return nil
|
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", "3.5.1", "3.5.3"}
|
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", "3.5.3", "3.5.4"}
|
||||||
|
|
||||||
func etcdVersionIsSupported(version string) bool {
|
func etcdVersionIsSupported(version string) bool {
|
||||||
version = strings.TrimPrefix(version, "v")
|
version = strings.TrimPrefix(version, "v")
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue