18
18
# This script performs etcd upgrade based on the following environmental
19
19
# variables:
20
20
# TARGET_STORAGE - API of etcd to be used (supported: 'etcd3')
21
- # TARGET_VERSION - etcd release to be used (supported: '3.0.17', '3.1.12', '3.2.24', "3.3.10 ")
21
+ # TARGET_VERSION - etcd release to be used (supported: '3.0.17', '3.1.12', '3.2.24', "3.3.15 ")
22
22
# DATA_DIRECTORY - directory with etcd data
23
23
#
24
24
# The current etcd version and storage format is detected based on the
28
28
# The update workflow support the following upgrade steps:
29
29
# - 3.0.17/etcd3 -> 3.1.12/etcd3
30
30
# - 3.1.12/etcd3 -> 3.2.24/etcd3
31
- # - 3.2.24/etcd3 -> 3.3.10 /etcd3
31
+ # - 3.2.24/etcd3 -> 3.3.15 /etcd3
32
32
#
33
33
# NOTE: The releases supported in this script has to match release binaries
34
34
# present in the etcd image (to make this script work correctly).
@@ -41,7 +41,7 @@ set -o nounset
41
41
42
42
# NOTE: BUNDLED_VERSION has to match release binaries present in the
43
43
# etcd image (to make this script work correctly).
44
- BUNDLED_VERSIONS=" 3.0.17, 3.1.12, 3.2.24, 3.3.10 "
44
+ BUNDLED_VERSIONS=" 3.0.17, 3.1.12, 3.2.24, 3.3.15 "
45
45
46
46
ETCD_NAME=" ${ETCD_NAME:- etcd-$(hostname)} "
47
47
if [ -z " ${DATA_DIRECTORY:- } " ]; then
0 commit comments