Merge pull request #395 from dlorenc/deis

Switch the DNS etcd port from 9090.
pull/383/merge
Jimmi Dyson 2016-07-26 10:30:40 +01:00 committed by GitHub
commit 16828ea59d
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ type DNSServer struct {
func (lk LocalkubeServer) NewDNSServer(rootDomain, clusterIP, kubeAPIServer string) (*DNSServer, error) {
// setup backing etcd store
peerURLs := []string{"http://localhost:9256"}
DNSEtcdURLs := []string{"http://localhost:9090"}
DNSEtcdURLs := []string{"http://localhost:49090"}
publicIP, err := lk.GetHostIP()
if err != nil {