Skip to content

Commit 73ef630

Browse files
authored
Merge pull request kubernetes#121566 from mzaian/etcd-3510
etcd: Update to version 3.5.10
2 parents 3240e2b + 3c268b7 commit 73ef630

File tree

8 files changed

+18
-18
lines changed

8 files changed

+18
-18
lines changed

build/dependencies.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ dependencies:
6464

6565
# etcd
6666
- name: "etcd"
67-
version: 3.5.9
67+
version: 3.5.10
6868
refPaths:
6969
- path: cluster/gce/manifests/etcd.manifest
7070
match: etcd_docker_tag|etcd_version

cluster/gce/manifests/etcd.manifest

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
{
1919
"name": "etcd-container",
2020
{{security_context}}
21-
"image": "{{ pillar.get('etcd_docker_repository', 'registry.k8s.io/etcd') }}:{{ pillar.get('etcd_docker_tag', '3.5.9-0') }}",
21+
"image": "{{ pillar.get('etcd_docker_repository', 'registry.k8s.io/etcd') }}:{{ pillar.get('etcd_docker_tag', '3.5.10-0') }}",
2222
"resources": {
2323
"requests": {
2424
"cpu": {{ cpulimit }}
@@ -34,7 +34,7 @@
3434
"value": "{{ pillar.get('storage_backend', 'etcd3') }}"
3535
},
3636
{ "name": "TARGET_VERSION",
37-
"value": "{{ pillar.get('etcd_version', '3.5.9') }}"
37+
"value": "{{ pillar.get('etcd_version', '3.5.10') }}"
3838
},
3939
{
4040
"name": "DO_NOT_MOVE_BINARIES",

cluster/gce/upgrade-aliases.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,8 @@ export KUBE_GCE_ENABLE_IP_ALIASES=true
170170
export SECONDARY_RANGE_NAME="pods-default"
171171
export STORAGE_BACKEND="etcd3"
172172
export STORAGE_MEDIA_TYPE="application/vnd.kubernetes.protobuf"
173-
export ETCD_IMAGE=3.5.9-0
174-
export ETCD_VERSION=3.5.9
173+
export ETCD_IMAGE=3.5.10-0
174+
export ETCD_VERSION=3.5.10
175175

176176
# Upgrade master with updated kube envs
177177
"${KUBE_ROOT}/cluster/gce/upgrade.sh" -M -l

cmd/kubeadm/app/constants/constants.go

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ const (
309309
MinExternalEtcdVersion = "3.4.13-4"
310310

311311
// DefaultEtcdVersion indicates the default etcd version that kubeadm uses
312-
DefaultEtcdVersion = "3.5.9-0"
312+
DefaultEtcdVersion = "3.5.10-0"
313313

314314
// Etcd defines variable used internally when referring to etcd component
315315
Etcd = "etcd"
@@ -464,14 +464,14 @@ var (
464464

465465
// SupportedEtcdVersion lists officially supported etcd versions with corresponding Kubernetes releases
466466
SupportedEtcdVersion = map[uint8]string{
467-
22: "3.5.9-0",
468-
23: "3.5.9-0",
469-
24: "3.5.9-0",
470-
25: "3.5.9-0",
471-
26: "3.5.9-0",
472-
27: "3.5.9-0",
473-
28: "3.5.9-0",
474-
29: "3.5.9-0",
467+
22: "3.5.10-0",
468+
23: "3.5.10-0",
469+
24: "3.5.10-0",
470+
25: "3.5.10-0",
471+
26: "3.5.10-0",
472+
27: "3.5.10-0",
473+
28: "3.5.10-0",
474+
29: "3.5.10-0",
475475
}
476476

477477
// KubeadmCertsClusterRoleName sets the name for the ClusterRole that allows

hack/lib/etcd.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
# A set of helpers for starting/running etcd for tests
1818

19-
ETCD_VERSION=${ETCD_VERSION:-3.5.9}
19+
ETCD_VERSION=${ETCD_VERSION:-3.5.10}
2020
ETCD_HOST=${ETCD_HOST:-127.0.0.1}
2121
ETCD_PORT=${ETCD_PORT:-2379}
2222
# This is intentionally not called ETCD_LOG_LEVEL:

staging/src/k8s.io/sample-apiserver/artifacts/example/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ spec:
2626
imagePullPolicy: Never
2727
args: [ "--etcd-servers=http://localhost:2379" ]
2828
- name: etcd
29-
image: gcr.io/etcd-development/etcd:v3.5.9
29+
image: gcr.io/etcd-development/etcd:v3.5.10

test/e2e/framework/providers/gcp.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
e2enode "k8s.io/kubernetes/test/e2e/framework/node"
2727
)
2828

29-
const etcdImage = "3.5.9-0"
29+
const etcdImage = "3.5.10-0"
3030

3131
// EtcdUpgrade upgrades etcd on GCE.
3232
func EtcdUpgrade(targetStorage, targetVersion string) error {

test/utils/image/manifest.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ func initImageConfigs(list RegistryList) (map[ImageID]Config, map[ImageID]Config
242242
configs[CudaVectorAdd] = Config{list.PromoterE2eRegistry, "cuda-vector-add", "1.0"}
243243
configs[CudaVectorAdd2] = Config{list.PromoterE2eRegistry, "cuda-vector-add", "2.3"}
244244
configs[DistrolessIptables] = Config{list.BuildImageRegistry, "distroless-iptables", "v0.4.1"}
245-
configs[Etcd] = Config{list.GcEtcdRegistry, "etcd", "3.5.9-0"}
245+
configs[Etcd] = Config{list.GcEtcdRegistry, "etcd", "3.5.10-0"}
246246
configs[Httpd] = Config{list.PromoterE2eRegistry, "httpd", "2.4.38-4"}
247247
configs[HttpdNew] = Config{list.PromoterE2eRegistry, "httpd", "2.4.39-4"}
248248
configs[InvalidRegistryImage] = Config{list.InvalidRegistry, "alpine", "3.1"}

0 commit comments

Comments
 (0)