
only set the etcd servers in the apiserver config set the --master= in the global config still need --api_servers= different in kubelet because, ummmm, we do comment out the apiserver config in controller and scheduler, not needed point the proxy to api, not to etcd
18 lines
466 B
Plaintext
18 lines
466 B
Plaintext
###
|
|
# kubernetes kubelet (minion) config
|
|
|
|
# The address for the info server to serve on (set to 0.0.0.0 or "" for all interfaces)
|
|
KUBELET_ADDRESS="--address=127.0.0.1"
|
|
|
|
# The port for the info server to serve on
|
|
# KUBELET_PORT="--port=10250"
|
|
|
|
# You may leave this blank to use the actual hostname
|
|
KUBELET_HOSTNAME="--hostname_override=127.0.0.1"
|
|
|
|
# location of the api-server
|
|
KUBELET_API_SERVER="--api_servers=http://127.0.0.1:8080"
|
|
|
|
# Add your own!
|
|
KUBELET_ARGS=""
|