File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ dependencies:
80
80
match : configs\[Etcd\] = Config{list\.GcEtcdRegistry, "etcd", "\d+\.\d+.\d+(-(alpha|beta|rc).\d+)?(-\d+)?"}
81
81
82
82
- name : " etcd-image"
83
- version : 3.6.0-rc.2
83
+ version : 3.5.21
84
84
refPaths :
85
85
- path : cluster/images/etcd/Makefile
86
86
match : BUNDLED_ETCD_VERSIONS\?|LATEST_ETCD_VERSION\?
@@ -109,7 +109,7 @@ dependencies:
109
109
110
110
# From https://github.com/etcd-io/etcd/blob/main/Makefile
111
111
- name : " golang: etcd release version"
112
- version : 1.22.9 # https://github.com/etcd-io/etcd/blob/main/CHANGELOG/CHANGELOG-3.5.md
112
+ version : 1.23.7 # https://github.com/etcd-io/etcd/blob/main/CHANGELOG/CHANGELOG-3.5.md
113
113
refPaths :
114
114
- path : cluster/images/etcd/Makefile
115
115
match : ' GOLANG_VERSION := \d+.\d+(alpha|beta|rc)?\.?(\d+)?'
Original file line number Diff line number Diff line change 15
15
# Build the etcd image
16
16
#
17
17
# Usage:
18
- # [BUNDLED_ETCD_VERSIONS=3.4.18 3.5.17 ] [REGISTRY=registry.k8s.io] [ARCH=amd64] [BASEIMAGE=busybox] make (build|push)
18
+ # [BUNDLED_ETCD_VERSIONS=3.4.18 3.5.21 ] [REGISTRY=registry.k8s.io] [ARCH=amd64] [BASEIMAGE=busybox] make (build|push)
19
19
#
20
20
# The image contains different etcd versions to simplify
21
21
# upgrades. Thus be careful when removing any versions from here.
26
26
# Except from etcd-$(version) and etcdctl-$(version) binaries, we also
27
27
# need etcd and etcdctl binaries for backward compatibility reasons.
28
28
# That binary will be set to the last version from $(BUNDLED_ETCD_VERSIONS).
29
- BUNDLED_ETCD_VERSIONS? =3.4.18 3.5.17 3.6.0-rc.2
29
+ BUNDLED_ETCD_VERSIONS? =3.4.18 3.5.21 3.6.0-rc.2
30
30
31
31
# LATEST_ETCD_VERSION identifies the most recent etcd version available.
32
32
LATEST_ETCD_VERSION? =3.6.0-rc.2
83
83
# This option is for running docker manifest command
84
84
export DOCKER_CLI_EXPERIMENTAL := enabled
85
85
# golang version should match the golang version of the official build from https://github.com/etcd-io/etcd/releases.
86
- GOLANG_VERSION := 1.22.9
86
+ GOLANG_VERSION := 1.23.7 # https://github.com/etcd-io/etcd/blob/main/CHANGELOG/CHANGELOG-3.5.md
87
87
GOARM?=7
88
88
TEMP_DIR: =$(shell mktemp -d)
89
89
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ import (
28
28
)
29
29
30
30
var (
31
- supportedEtcdVersions = []string {"3.4.18" , "3.5.17 " , "3.6.0-rc.2" }
31
+ supportedEtcdVersions = []string {"3.4.18" , "3.5.21 " , "3.6.0-rc.2" }
32
32
)
33
33
34
34
const (
You can’t perform that action at this time.
0 commit comments