mirror of https://github.com/k3s-io/k3s
27 lines
629 B
Plaintext
27 lines
629 B
Plaintext
![]() |
###
|
||
|
# kubernetes system config
|
||
|
#
|
||
|
# The following values are used to configure the kubernetes-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 apiserver
|
||
|
KUBE_MASTER="--master=127.0.0.1:8080"
|
||
|
|
||
|
# Comma seperated list of minions
|
||
|
MINION_ADDRESSES="--machines=127.0.0.1"
|
||
|
|
||
|
# Port minions listen on
|
||
|
MINION_PORT="--minion_port=10250"
|
||
|
|
||
|
# Address range to use for services
|
||
|
KUBE_SERVICE_ADDRESSES="--portal_net=10.254.0.0/16"
|
||
|
|
||
|
# Add you own!
|
||
|
KUBE_API_ARGS=""
|