Skip to content

Commit 9bd8147

Browse files
authored
Merge pull request kubernetes#135805 from humblec/etcd-3.6.7
etcd: Update etcd to v3.6.7
2 parents 6f92c01 + 8dc8edf commit 9bd8147

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
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.6.6
67+
version: 3.6.7
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.6.6-0') }}",
21+
"image": "{{ pillar.get('etcd_docker_repository', 'registry.k8s.io/etcd') }}:{{ pillar.get('etcd_docker_tag', '3.6.7-0') }}",
2222
"resources": {
2323
"requests": {
2424
"cpu": {{ cpulimit }}
@@ -43,7 +43,7 @@
4343
"value": "{{ pillar.get('storage_backend', 'etcd3') }}"
4444
},
4545
{ "name": "TARGET_VERSION",
46-
"value": "{{ pillar.get('etcd_version', '3.6.6') }}"
46+
"value": "{{ pillar.get('etcd_version', '3.6.7') }}"
4747
},
4848
{
4949
"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.6.6-0
174-
export ETCD_VERSION=3.6.6
173+
export ETCD_IMAGE=3.6.7-0
174+
export ETCD_VERSION=3.6.7
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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ const (
326326
MinExternalEtcdVersion = "3.5.24-0"
327327

328328
// DefaultEtcdVersion indicates the default etcd version that kubeadm uses
329-
DefaultEtcdVersion = "3.6.6-0"
329+
DefaultEtcdVersion = "3.6.7-0"
330330

331331
// Etcd defines variable used internally when referring to etcd component
332332
Etcd = "etcd"
@@ -508,9 +508,9 @@ var (
508508
// an etcd version even if the map is not yet updated before a release. The user will
509509
// get a warning in that case, so ideally the map should be updated for each release.
510510
SupportedEtcdVersion = map[uint8]string{
511-
34: "3.6.6-0",
512-
35: "3.6.6-0",
513-
36: "3.6.6-0",
511+
34: "3.6.7-0",
512+
35: "3.6.7-0",
513+
36: "3.6.7-0",
514514
}
515515

516516
// 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.6.6}
19+
ETCD_VERSION=${ETCD_VERSION:-3.6.7}
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: registry.k8s.io/etcd:v3.6.6
29+
image: registry.k8s.io/etcd:v3.6.7

test/utils/image/manifest.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ func initImageConfigs(list RegistryList) (map[ImageID]Config, map[ImageID]Config
215215
configs[AppArmorLoader] = Config{list.PromoterE2eRegistry, "apparmor-loader", "1.4"}
216216
configs[BusyBox] = Config{list.PromoterE2eRegistry, "busybox", "1.37.0-1"}
217217
configs[DistrolessIptables] = Config{list.BuildImageRegistry, "distroless-iptables", "v0.8.6"}
218-
configs[Etcd] = Config{list.GcEtcdRegistry, "etcd", "3.6.6-0"}
218+
configs[Etcd] = Config{list.GcEtcdRegistry, "etcd", "3.6.7-0"}
219219
configs[InvalidRegistryImage] = Config{list.InvalidRegistry, "alpine", "3.1"}
220220
configs[IpcUtils] = Config{list.PromoterE2eRegistry, "ipc-utils", "1.3"}
221221
configs[JessieDnsutils] = Config{list.PromoterE2eRegistry, "jessie-dnsutils", "1.7"}

0 commit comments

Comments
 (0)