Skip to content

Commit 47cef03

Browse files
authored
Merge pull request kubernetes#77748 from yuwenma/etcd-release
Update etcd* version to use latest released images.
2 parents 358536e + 1f0f050 commit 47cef03

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

cluster/gce/config-test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ ENABLE_METADATA_AGENT="${KUBE_ENABLE_METADATA_AGENT:-none}"
175175
# Useful for scheduling heapster in large clusters with nodes of small size.
176176
HEAPSTER_MACHINE_TYPE="${HEAPSTER_MACHINE_TYPE:-}"
177177

178-
# Set etcd image (e.g. k8s.gcr.io/etcd) and version (e.g. 3.3.10-0) if you need
178+
# Set etcd image (e.g. k8s.gcr.io/etcd) and version (e.g. 3.3.10-1) if you need
179179
# non-default version.
180180
ETCD_IMAGE="${TEST_ETCD_IMAGE:-}"
181181
ETCD_DOCKER_REPOSITORY="${TEST_ETCD_DOCKER_REPOSITORY:-}"

cluster/gce/manifests/etcd-empty-dir-cleanup.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ spec:
1414
dnsPolicy: Default
1515
containers:
1616
- name: etcd-empty-dir-cleanup
17-
image: k8s.gcr.io/etcd-empty-dir-cleanup:3.3.10.0
17+
image: k8s.gcr.io/etcd-empty-dir-cleanup:3.3.10.1

cluster/gce/manifests/etcd.manifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"containers":[
1515
{
1616
"name": "etcd-container",
17-
"image": "{{ pillar.get('etcd_docker_repository', 'k8s.gcr.io/etcd') }}:{{ pillar.get('etcd_docker_tag', '3.3.10-0') }}",
17+
"image": "{{ pillar.get('etcd_docker_repository', 'k8s.gcr.io/etcd') }}:{{ pillar.get('etcd_docker_tag', '3.3.10-1') }}",
1818
"resources": {
1919
"requests": {
2020
"cpu": {{ cpulimit }}

cluster/gce/upgrade-aliases.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ 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.3.10-0
173+
export ETCD_IMAGE=3.3.10-1
174174
export ETCD_VERSION=3.3.10
175175

176176
# Upgrade master with updated kube envs

cluster/images/etcd-version-monitor/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
ARCH:=amd64
2121
GOLANG_VERSION?=1.8.3
2222
REGISTRY?=staging-k8s.gcr.io
23-
TAG?=0.1.2
23+
TAG?=0.1.3
2424
IMAGE:=$(REGISTRY)/etcd-version-monitor:$(TAG)
2525
CURRENT_DIR:=$(pwd)
2626
TEMP_DIR:=$(shell mktemp -d)

cluster/images/etcd-version-monitor/etcd-version-monitor.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ spec:
77
hostNetwork: true
88
containers:
99
- name: etcd-version-monitor
10-
image: k8s.gcr.io/etcd-version-monitor:0.1.2
10+
image: k8s.gcr.io/etcd-version-monitor:0.1.3
1111
command:
1212
- /etcd-version-monitor
1313
- --logtostderr

cluster/images/etcd/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ LATEST_ETCD_VERSION?=3.3.10
3434
# REVISION provides a version number fo this image and all it's bundled
3535
# artifacts. It should start at zero for each LATEST_ETCD_VERSION and increment
3636
# for each revision of this image at that etcd version.
37-
REVISION?=0
37+
REVISION?=1
3838

3939
# IMAGE_TAG Uniquely identifies k8s.gcr.io/etcd docker image with a tag of the form "<etcd-version>-<revision>".
4040
IMAGE_TAG=$(LATEST_ETCD_VERSION)-$(REVISION)

test/e2e/framework/nodes_util.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ func etcdUpgradeGCE(targetStorage, targetVersion string) error {
6060
os.Environ(),
6161
"TEST_ETCD_VERSION="+targetVersion,
6262
"STORAGE_BACKEND="+targetStorage,
63-
"TEST_ETCD_IMAGE=3.3.10-0")
63+
"TEST_ETCD_IMAGE=3.3.10-1")
6464

6565
_, _, err := RunCmdEnv(env, gceUpgradeScript(), "-l", "-M")
6666
return err
@@ -80,7 +80,7 @@ func masterUpgradeGCE(rawV string, enableKubeProxyDaemonSet bool) error {
8080
env = append(env,
8181
"TEST_ETCD_VERSION="+TestContext.EtcdUpgradeVersion,
8282
"STORAGE_BACKEND="+TestContext.EtcdUpgradeStorage,
83-
"TEST_ETCD_IMAGE=3.3.10-0")
83+
"TEST_ETCD_IMAGE=3.3.10-1")
8484
} else {
8585
// In e2e tests, we skip the confirmation prompt about
8686
// implicit etcd upgrades to simulate the user entering "y".

test/kubemark/start-kubemark.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ SERVICE_CLUSTER_IP_RANGE="${SERVICE_CLUSTER_IP_RANGE:-}"
6464
EVENT_PD="${EVENT_PD:-}"
6565
6666
# Etcd related variables.
67-
ETCD_IMAGE="${ETCD_IMAGE:-3.3.10-0}"
67+
ETCD_IMAGE="${ETCD_IMAGE:-3.3.10-1}"
6868
ETCD_VERSION="${ETCD_VERSION:-}"
6969
7070
# Controller-manager related variables.

0 commit comments

Comments
 (0)