19
19
# variables:
20
20
# TARGET_STORAGE - API of etcd to be used (supported: 'etcd3')
21
21
# TARGET_VERSION - etcd release to be used (supported: '3.0.17', '3.1.12',
22
- # '3.2.24', "3.3.17", "3.4.3 ")
22
+ # '3.2.24', "3.3.17", "3.4.4 ")
23
23
# DATA_DIRECTORY - directory with etcd data
24
24
#
25
25
# The current etcd version and storage format is detected based on the
30
30
# - 3.0.17/etcd3 -> 3.1.12/etcd3
31
31
# - 3.1.12/etcd3 -> 3.2.24/etcd3
32
32
# - 3.2.24/etcd3 -> 3.3.17/etcd3
33
- # - 3.3.17/etcd3 -> 3.4.3 /etcd3
33
+ # - 3.3.17/etcd3 -> 3.4.4 /etcd3
34
34
#
35
35
# NOTE: The releases supported in this script has to match release binaries
36
36
# present in the etcd image (to make this script work correctly).
@@ -43,7 +43,7 @@ set -o nounset
43
43
44
44
# NOTE: BUNDLED_VERSION has to match release binaries present in the
45
45
# etcd image (to make this script work correctly).
46
- BUNDLED_VERSIONS=" 3.0.17, 3.1.12, 3.2.24, 3.3.17, 3.4.3 "
46
+ BUNDLED_VERSIONS=" 3.0.17, 3.1.12, 3.2.24, 3.3.17, 3.4.4 "
47
47
48
48
ETCD_NAME=" ${ETCD_NAME:- etcd-$(hostname)} "
49
49
if [ -z " ${DATA_DIRECTORY:- } " ]; then
0 commit comments