Update etcd default ports for v3, and validate tests

This commit is contained in:
Timothy St. Clair
2016-08-10 15:39:36 -05:00
parent aedeccda95
commit 730fc70107
26 changed files with 46 additions and 46 deletions

View File

@@ -71,9 +71,9 @@ var benchmarkPod api.Pod = api.Pod{
Command: []string{
"/usr/local/bin/etcd",
"--addr",
"127.0.0.1:4001",
"127.0.0.1:2379",
"--bind-addr",
"127.0.0.1:4001",
"127.0.0.1:2379",
"--data-dir",
"/var/etcd/data",
},
@@ -86,8 +86,8 @@ var benchmarkPod api.Pod = api.Pod{
},
{
Name: "clientport",
HostPort: 4001,
ContainerPort: 4001,
HostPort: 2379,
ContainerPort: 2379,
Protocol: "TCP",
},
},