Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
47cef03d
Unverified
Commit
47cef03d
authored
May 15, 2019
by
Kubernetes Prow Robot
Committed by
GitHub
May 15, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #77748 from yuwenma/etcd-release
Update etcd* version to use latest released images.
parents
358536ed
1f0f050f
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
10 additions
and
10 deletions
+10
-10
config-test.sh
cluster/gce/config-test.sh
+1
-1
etcd-empty-dir-cleanup.yaml
cluster/gce/manifests/etcd-empty-dir-cleanup.yaml
+1
-1
etcd.manifest
cluster/gce/manifests/etcd.manifest
+1
-1
upgrade-aliases.sh
cluster/gce/upgrade-aliases.sh
+1
-1
Makefile
cluster/images/etcd-version-monitor/Makefile
+1
-1
etcd-version-monitor.yaml
...ter/images/etcd-version-monitor/etcd-version-monitor.yaml
+1
-1
Makefile
cluster/images/etcd/Makefile
+1
-1
nodes_util.go
test/e2e/framework/nodes_util.go
+2
-2
start-kubemark.sh
test/kubemark/start-kubemark.sh
+1
-1
No files found.
cluster/gce/config-test.sh
View file @
47cef03d
...
@@ -175,7 +175,7 @@ ENABLE_METADATA_AGENT="${KUBE_ENABLE_METADATA_AGENT:-none}"
...
@@ -175,7 +175,7 @@ ENABLE_METADATA_AGENT="${KUBE_ENABLE_METADATA_AGENT:-none}"
# Useful for scheduling heapster in large clusters with nodes of small size.
# Useful for scheduling heapster in large clusters with nodes of small size.
HEAPSTER_MACHINE_TYPE
=
"
${
HEAPSTER_MACHINE_TYPE
:-}
"
HEAPSTER_MACHINE_TYPE
=
"
${
HEAPSTER_MACHINE_TYPE
:-}
"
# Set etcd image (e.g. k8s.gcr.io/etcd) and version (e.g. 3.3.10-
0
) if you need
# Set etcd image (e.g. k8s.gcr.io/etcd) and version (e.g. 3.3.10-
1
) if you need
# non-default version.
# non-default version.
ETCD_IMAGE
=
"
${
TEST_ETCD_IMAGE
:-}
"
ETCD_IMAGE
=
"
${
TEST_ETCD_IMAGE
:-}
"
ETCD_DOCKER_REPOSITORY
=
"
${
TEST_ETCD_DOCKER_REPOSITORY
:-}
"
ETCD_DOCKER_REPOSITORY
=
"
${
TEST_ETCD_DOCKER_REPOSITORY
:-}
"
...
...
cluster/gce/manifests/etcd-empty-dir-cleanup.yaml
View file @
47cef03d
...
@@ -14,4 +14,4 @@ spec:
...
@@ -14,4 +14,4 @@ spec:
dnsPolicy
:
Default
dnsPolicy
:
Default
containers
:
containers
:
-
name
:
etcd-empty-dir-cleanup
-
name
:
etcd-empty-dir-cleanup
image
:
k8s.gcr.io/etcd-empty-dir-cleanup:3.3.10.
0
image
:
k8s.gcr.io/etcd-empty-dir-cleanup:3.3.10.
1
cluster/gce/manifests/etcd.manifest
View file @
47cef03d
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
"containers":[
"containers":[
{
{
"name": "etcd-container",
"name": "etcd-container",
"image": "{{ pillar.get('etcd_docker_repository', 'k8s.gcr.io/etcd') }}:{{ pillar.get('etcd_docker_tag', '3.3.10-
0
') }}",
"image": "{{ pillar.get('etcd_docker_repository', 'k8s.gcr.io/etcd') }}:{{ pillar.get('etcd_docker_tag', '3.3.10-
1
') }}",
"resources": {
"resources": {
"requests": {
"requests": {
"cpu": {{ cpulimit }}
"cpu": {{ cpulimit }}
...
...
cluster/gce/upgrade-aliases.sh
View file @
47cef03d
...
@@ -170,7 +170,7 @@ export KUBE_GCE_ENABLE_IP_ALIASES=true
...
@@ -170,7 +170,7 @@ export KUBE_GCE_ENABLE_IP_ALIASES=true
export
SECONDARY_RANGE_NAME
=
"pods-default"
export
SECONDARY_RANGE_NAME
=
"pods-default"
export
STORAGE_BACKEND
=
"etcd3"
export
STORAGE_BACKEND
=
"etcd3"
export
STORAGE_MEDIA_TYPE
=
"application/vnd.kubernetes.protobuf"
export
STORAGE_MEDIA_TYPE
=
"application/vnd.kubernetes.protobuf"
export
ETCD_IMAGE
=
3.3.10-
0
export
ETCD_IMAGE
=
3.3.10-
1
export
ETCD_VERSION
=
3.3.10
export
ETCD_VERSION
=
3.3.10
# Upgrade master with updated kube envs
# Upgrade master with updated kube envs
...
...
cluster/images/etcd-version-monitor/Makefile
View file @
47cef03d
...
@@ -20,7 +20,7 @@
...
@@ -20,7 +20,7 @@
ARCH
:=
amd64
ARCH
:=
amd64
GOLANG_VERSION
?=
1.8.3
GOLANG_VERSION
?=
1.8.3
REGISTRY
?=
staging-k8s.gcr.io
REGISTRY
?=
staging-k8s.gcr.io
TAG
?=
0.1.
2
TAG
?=
0.1.
3
IMAGE
:=
$(REGISTRY)
/etcd-version-monitor:
$(TAG)
IMAGE
:=
$(REGISTRY)
/etcd-version-monitor:
$(TAG)
CURRENT_DIR
:=
$(pwd)
CURRENT_DIR
:=
$(pwd)
TEMP_DIR
:=
$(
shell
mktemp
-d
)
TEMP_DIR
:=
$(
shell
mktemp
-d
)
...
...
cluster/images/etcd-version-monitor/etcd-version-monitor.yaml
View file @
47cef03d
...
@@ -7,7 +7,7 @@ spec:
...
@@ -7,7 +7,7 @@ spec:
hostNetwork
:
true
hostNetwork
:
true
containers
:
containers
:
-
name
:
etcd-version-monitor
-
name
:
etcd-version-monitor
image
:
k8s.gcr.io/etcd-version-monitor:0.1.
2
image
:
k8s.gcr.io/etcd-version-monitor:0.1.
3
command
:
command
:
-
/etcd-version-monitor
-
/etcd-version-monitor
-
--logtostderr
-
--logtostderr
cluster/images/etcd/Makefile
View file @
47cef03d
...
@@ -34,7 +34,7 @@ LATEST_ETCD_VERSION?=3.3.10
...
@@ -34,7 +34,7 @@ LATEST_ETCD_VERSION?=3.3.10
# REVISION provides a version number fo this image and all it's bundled
# REVISION provides a version number fo this image and all it's bundled
# artifacts. It should start at zero for each LATEST_ETCD_VERSION and increment
# artifacts. It should start at zero for each LATEST_ETCD_VERSION and increment
# for each revision of this image at that etcd version.
# for each revision of this image at that etcd version.
REVISION
?=
0
REVISION
?=
1
# IMAGE_TAG Uniquely identifies k8s.gcr.io/etcd docker image with a tag of the form "<etcd-version>-<revision>".
# IMAGE_TAG Uniquely identifies k8s.gcr.io/etcd docker image with a tag of the form "<etcd-version>-<revision>".
IMAGE_TAG
=
$(LATEST_ETCD_VERSION)
-
$(REVISION)
IMAGE_TAG
=
$(LATEST_ETCD_VERSION)
-
$(REVISION)
...
...
test/e2e/framework/nodes_util.go
View file @
47cef03d
...
@@ -60,7 +60,7 @@ func etcdUpgradeGCE(targetStorage, targetVersion string) error {
...
@@ -60,7 +60,7 @@ func etcdUpgradeGCE(targetStorage, targetVersion string) error {
os
.
Environ
(),
os
.
Environ
(),
"TEST_ETCD_VERSION="
+
targetVersion
,
"TEST_ETCD_VERSION="
+
targetVersion
,
"STORAGE_BACKEND="
+
targetStorage
,
"STORAGE_BACKEND="
+
targetStorage
,
"TEST_ETCD_IMAGE=3.3.10-
0
"
)
"TEST_ETCD_IMAGE=3.3.10-
1
"
)
_
,
_
,
err
:=
RunCmdEnv
(
env
,
gceUpgradeScript
(),
"-l"
,
"-M"
)
_
,
_
,
err
:=
RunCmdEnv
(
env
,
gceUpgradeScript
(),
"-l"
,
"-M"
)
return
err
return
err
...
@@ -80,7 +80,7 @@ func masterUpgradeGCE(rawV string, enableKubeProxyDaemonSet bool) error {
...
@@ -80,7 +80,7 @@ func masterUpgradeGCE(rawV string, enableKubeProxyDaemonSet bool) error {
env
=
append
(
env
,
env
=
append
(
env
,
"TEST_ETCD_VERSION="
+
TestContext
.
EtcdUpgradeVersion
,
"TEST_ETCD_VERSION="
+
TestContext
.
EtcdUpgradeVersion
,
"STORAGE_BACKEND="
+
TestContext
.
EtcdUpgradeStorage
,
"STORAGE_BACKEND="
+
TestContext
.
EtcdUpgradeStorage
,
"TEST_ETCD_IMAGE=3.3.10-
0
"
)
"TEST_ETCD_IMAGE=3.3.10-
1
"
)
}
else
{
}
else
{
// In e2e tests, we skip the confirmation prompt about
// In e2e tests, we skip the confirmation prompt about
// implicit etcd upgrades to simulate the user entering "y".
// implicit etcd upgrades to simulate the user entering "y".
...
...
test/kubemark/start-kubemark.sh
View file @
47cef03d
...
@@ -64,7 +64,7 @@ SERVICE_CLUSTER_IP_RANGE="${SERVICE_CLUSTER_IP_RANGE:-}"
...
@@ -64,7 +64,7 @@ SERVICE_CLUSTER_IP_RANGE="${SERVICE_CLUSTER_IP_RANGE:-}"
EVENT_PD="
${
EVENT_PD
:-}
"
EVENT_PD="
${
EVENT_PD
:-}
"
# Etcd related variables.
# Etcd related variables.
ETCD_IMAGE="
${
ETCD_IMAGE
:-
3
.3.10-
0
}
"
ETCD_IMAGE="
${
ETCD_IMAGE
:-
3
.3.10-
1
}
"
ETCD_VERSION="
${
ETCD_VERSION
:-}
"
ETCD_VERSION="
${
ETCD_VERSION
:-}
"
# Controller-manager related variables.
# Controller-manager related variables.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment