You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
423 B
14 lines
423 B
### |
|
# 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" |
|
|
|
# Add your own! |
|
KUBELET_ARGS="--cgroup-driver=systemd --fail-swap-on=false"
|
|
|