Build etcd image of v3.5.15
Signed-off-by: bzsuni <bingzhe.sun@daocloud.io>
This commit is contained in:
parent
51e3059fd1
commit
a86e44c52a
|
@ -80,7 +80,7 @@ dependencies:
|
|||
match: configs\[Etcd\] = Config{list\.GcEtcdRegistry, "etcd", "\d+\.\d+.\d+(-(alpha|beta|rc).\d+)?(-\d+)?"}
|
||||
|
||||
- name: "etcd-image"
|
||||
version: 3.5.12
|
||||
version: 3.5.15
|
||||
refPaths:
|
||||
- path: cluster/images/etcd/Makefile
|
||||
match: BUNDLED_ETCD_VERSIONS\?|LATEST_ETCD_VERSION\?
|
||||
|
@ -107,7 +107,7 @@ dependencies:
|
|||
|
||||
# From https://github.com/etcd-io/etcd/blob/main/Makefile
|
||||
- name: "golang: etcd release version"
|
||||
version: 1.20.13 # https://github.com/etcd-io/etcd/blob/main/CHANGELOG/CHANGELOG-3.5.md
|
||||
version: 1.21.12 # https://github.com/etcd-io/etcd/blob/main/CHANGELOG/CHANGELOG-3.5.md
|
||||
refPaths:
|
||||
- path: cluster/images/etcd/Makefile
|
||||
match: 'GOLANG_VERSION := \d+.\d+(alpha|beta|rc)?\.?(\d+)?'
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
# Build the etcd image
|
||||
#
|
||||
# Usage:
|
||||
# [BUNDLED_ETCD_VERSIONS=3.4.18 3.5.8] [REGISTRY=registry.k8s.io] [ARCH=amd64] [BASEIMAGE=busybox] make (build|push)
|
||||
# [BUNDLED_ETCD_VERSIONS=3.4.18 3.5.15] [REGISTRY=registry.k8s.io] [ARCH=amd64] [BASEIMAGE=busybox] make (build|push)
|
||||
#
|
||||
# The image contains different etcd versions to simplify
|
||||
# upgrades. Thus be careful when removing any versions from here.
|
||||
|
@ -26,10 +26,10 @@
|
|||
# Except from etcd-$(version) and etcdctl-$(version) binaries, we also
|
||||
# need etcd and etcdctl binaries for backward compatibility reasons.
|
||||
# That binary will be set to the last version from $(BUNDLED_ETCD_VERSIONS).
|
||||
BUNDLED_ETCD_VERSIONS?=3.4.18 3.5.12
|
||||
BUNDLED_ETCD_VERSIONS?=3.4.18 3.5.15
|
||||
|
||||
# LATEST_ETCD_VERSION identifies the most recent etcd version available.
|
||||
LATEST_ETCD_VERSION?=3.5.12
|
||||
LATEST_ETCD_VERSION?=3.5.15
|
||||
|
||||
# REVISION provides a version number for this image and all it's bundled
|
||||
# artifacts. It should start at zero for each LATEST_ETCD_VERSION and increment
|
||||
|
@ -83,7 +83,7 @@ endif
|
|||
# This option is for running docker manifest command
|
||||
export DOCKER_CLI_EXPERIMENTAL := enabled
|
||||
# golang version should match the golang version of the official build from https://github.com/etcd-io/etcd/releases.
|
||||
GOLANG_VERSION := 1.20.13
|
||||
GOLANG_VERSION := 1.21.12
|
||||
GOARM?=7
|
||||
TEMP_DIR:=$(shell mktemp -d)
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@ import (
|
|||
)
|
||||
|
||||
var (
|
||||
supportedEtcdVersions = []string{"3.4.18", "3.5.12"}
|
||||
supportedEtcdVersions = []string{"3.4.18", "3.5.15"}
|
||||
)
|
||||
|
||||
const (
|
||||
|
|
|
@ -460,12 +460,12 @@ var (
|
|||
|
||||
// SupportedEtcdVersion lists officially supported etcd versions with corresponding Kubernetes releases
|
||||
SupportedEtcdVersion = map[uint8]string{
|
||||
22: "3.5.12-0",
|
||||
23: "3.5.12-0",
|
||||
24: "3.5.12-0",
|
||||
25: "3.5.12-0",
|
||||
26: "3.5.12-0",
|
||||
27: "3.5.12-0",
|
||||
22: "3.5.15-0",
|
||||
23: "3.5.15-0",
|
||||
24: "3.5.15-0",
|
||||
25: "3.5.15-0",
|
||||
26: "3.5.15-0",
|
||||
27: "3.5.15-0",
|
||||
28: "3.5.15-0",
|
||||
29: "3.5.15-0",
|
||||
30: "3.5.15-0",
|
||||
|
|
|
@ -26,7 +26,7 @@ import (
|
|||
e2enode "k8s.io/kubernetes/test/e2e/framework/node"
|
||||
)
|
||||
|
||||
const etcdImage = "3.5.12-0"
|
||||
const etcdImage = "3.5.15-0"
|
||||
|
||||
// EtcdUpgrade upgrades etcd on GCE.
|
||||
func EtcdUpgrade(targetStorage, targetVersion string) error {
|
||||
|
|
Loading…
Reference in New Issue