If I want to find the default-arguments to the internal Kublet service, where can I find these documented?
Asked
Active
Viewed 423 times
1 Answers
0
I wasn't able to find them documented, but I did find them in the code in agent_linux.go (note there are difference options for windows)
You can see them here,
argsMap := map[string]string{
"healthz-bind-address": bindAddress,
"read-only-port": "0",
"cluster-domain": cfg.ClusterDomain,
"kubeconfig": cfg.KubeConfigKubelet,
"eviction-hard": "imagefs.available<5%,nodefs.available<5%",
"eviction-minimum-reclaim": "imagefs.available=10%,nodefs.available=10%",
"fail-swap-on": "false",
"cgroup-driver": "cgroupfs",
"authentication-token-webhook": "true",
"anonymous-auth": "false",
"authorization-mode": modes.ModeWebhook,
}
Evan Carroll
- 2,091
- 3
- 22
- 65