kube-proxy には --proxy-mode というオプションがあり、ヘルプ メッセージによると、このオプションは userspaceまたはiptablesにすることができます (以下を参照)。
# kube-proxy -h
Usage of kube-proxy:
...
--proxy-mode="": Which proxy mode to use: 'userspace' (older, stable) or 'iptables' (experimental). If blank, look at the Node object on the Kubernetes API and respect the 'net.experimental.kubernetes.io/proxy-mode' annotation if provided. Otherwise use the best-available proxy (currently userspace, but may change in future versions). If the iptables proxy is selected, regardless of how, but the system's kernel or iptables versions are insufficient, this always falls back to the userspace proxy.
...
ここでユーザー空間モードが何を意味するのかわかりません。
ユーザー空間モードで kube-proxy を実行するときの動作原理を教えてください。