CONF_DIR='/etc/kubernetes'

# Address of the API server.
API_SERVER='https://127.0.0.1:6443'

# IP adress the service should bind to.
LISTEN_ADDRESS='127.0.0.1'

# Endpoint information and credentials for connecting to the API server.
SERVICE_KUBECONFIG="$CONF_DIR/kubeconfig/scheduler.conf"

DAEMON_ARGS="
--master=$API_SERVER
--address=$LISTEN_ADDRESS
--leader-elect=true
--kubeconfig=$SERVICE_KUBECONFIG
"
