
apiserver becomes kube-apiserver controller-manager -> kube-controller-manager scheduler and proxy similarly. Only thing I promise is that right now hack/build-go.sh and build/release.sh exit with 0. That's it. Who knows if any of this actually works....
24 lines
555 B
Plaintext
24 lines
555 B
Plaintext
###
|
|
# kubernetes system config
|
|
#
|
|
# The following values are used to configure the kube-apiserver
|
|
#
|
|
|
|
# The address on the local server to listen to.
|
|
KUBE_API_ADDRESS="--address=127.0.0.1"
|
|
|
|
# The port on the local server to listen on.
|
|
KUBE_API_PORT="--port=8080"
|
|
|
|
# How the replication controller and scheduler find the kube-apiserver
|
|
KUBE_MASTER="--master=127.0.0.1:8080"
|
|
|
|
# Port minions listen on
|
|
KUBELET_PORT="--kubelet_port=10250"
|
|
|
|
# Address range to use for services
|
|
KUBE_SERVICE_ADDRESSES="--portal_net=10.254.0.0/16"
|
|
|
|
# Add you own!
|
|
KUBE_API_ARGS=""
|