rearrange RunKubelet's parameters so that address and port are next to each other

This commit is contained in:
Daniel Smith
2014-07-01 16:47:37 -07:00
parent 11d6451d2a
commit 587fb75a7a
3 changed files with 5 additions and 5 deletions

View File

@@ -89,5 +89,5 @@ func main() {
SyncFrequency: *syncFrequency,
HTTPCheckFrequency: *httpCheckFrequency,
}
my_kubelet.RunKubelet(*config, *manifestUrl, *etcdServers, *address, *dockerEndpoint, *port)
my_kubelet.RunKubelet(*dockerEndpoint, *config, *manifestUrl, *etcdServers, *address, *port)
}