mirror of https://github.com/k3s-io/k3s
22 lines
1.3 KiB
Plaintext
22 lines
1.3 KiB
Plaintext
###
|
|
# kubernetes kubelet config
|
|
|
|
# The address for the info server to serve on (set to 0.0.0.0 or "" for all interfaces)
|
|
KUBELET_ADDRESS=""
|
|
#--address=0.0.0.0"
|
|
|
|
# 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=0.0.0."
|
|
|
|
# location of the api-server
|
|
KUBELET_API_SERVER="--api-servers=http://0.0.0.0:8080,kube1.ha:8080,kube0.ha:8080 "
|
|
# --cert-dir="/var/run/kubernetes": The directory where the TLS certs are located (by default /var/run/kubernetes). If --tls-cert-file and --tls-private-key-file are provided, this flag will be ignored.
|
|
# --tls-cert-file="": File containing x509 Certificate for HTTPS. (CA cert, if any, concatenated after server cert). If --tls-cert-file and --tls-private-key-file are not provided, a self-signed certificate and key are generated for the public address and saved to the directory passed to --cert-dir.
|
|
# --tls-private-key-file="": File containing x509 private key matching --tls-cert-file.
|
|
|
|
# We modify kubelet args to do verbose logs + read from manifests dir.
|
|
KUBELET_ARGS="--tls-cert-file=/vagrant/apiserver.crt --tls-private-key-file=/vagrant/apiserver.key --register-node=true --v=5 --config=/etc/kubernetes/manifests --kubeconfig=/vagrant/kubeconfig"
|