kubernetes-retired/etcdadm

Make etcd version configurable

mrajashree opened this issue · 2 comments

Etcdadm defaults to a certain version of etcd to match the latest Kubernetes release. Can it expose a flag with which user can select which etcd version to use?

Have you tried this flag:

$ etcdadm init -h | grep version
      --version string                      etcd version (default "3.4.9")
$ etcdadm join -h | grep version
      --version string                   etcd version (default "3.4.9")

ah yes I missed that, thanks!