Skip to content

Commit

Permalink
Kubelet and kube-proxy talk to apiserver not etcd.
Browse files Browse the repository at this point in the history
  • Loading branch information
erictune committed Mar 10, 2015
1 parent 7b72d95 commit 8d20282
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cluster/ubuntu-cluster/default_scripts/kube-proxy
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# KUBE_PROXY="/opt/bin/kube-proxy"

# Use KUBE_PROXY_OPTS to modify the start/restart options
KUBE_PROXY_OPTS="--etcd_servers=http://127.0.0.1:4001 \
KUBE_PROXY_OPTS="--master=http://127.0.0.1:8080 \
--logtostderr=true"

# Add more envionrment settings used by kube-apiserver here
2 changes: 1 addition & 1 deletion cluster/ubuntu-cluster/default_scripts/kubelet
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
KUBELET_OPTS="--address=0.0.0.0 \
--port=10250 \
--hostname_override=MY_IP \
--etcd_servers=http://127.0.0.1:4001 \
--api_servers=http://127.0.0.1:8080 \
--logtostderr=true"

# Add more envionrment settings used by kube-scheduler here
2 changes: 1 addition & 1 deletion cluster/ubuntu/default_scripts/kube-proxy
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# KUBE_PROXY="/opt/bin/kube-proxy"

# Use KUBE_PROXY_OPTS to modify the start/restart options
KUBE_PROXY_OPTS="--etcd_servers=http://127.0.0.1:4001 \
KUBE_PROXY_OPTS="--master=http://127.0.0.1:8080 \
--logtostderr=true"

# Add more envionrment settings used by kube-apiserver here
2 changes: 1 addition & 1 deletion cluster/ubuntu/default_scripts/kubelet
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
KUBELET_OPTS="--address=127.0.0.1 \
--port=10250 \
--hostname_override=127.0.0.1 \
--etcd_servers=http://127.0.0.1:4001 \
--api_servers=http://127.0.0.1:8080 \
--logtostderr=true"

# Add more envionrment settings used by kube-scheduler here

0 comments on commit 8d20282

Please sign in to comment.