You want to check the status of the kube-apiserver on a control plane node. Which commands should you use? (Select the best option)
Both commands are commonly used to check the status of the API server, depending on whether it's managed by systemd or as a static pod.
Why this answer
Option C is correct. On a control plane node, you can check the kube-apiserver status using 'systemctl status kube-apiserver' if it's running as a systemd service, or by checking the pod if it's running as a static pod: 'kubectl get pods -n kube-system'. Option A uses 'ps aux' which is not a standard systemctl command.
Option B 'docker ps' would show containers but not the service status. Option D 'journalctl -u kubelet' shows kubelet logs, not apiserver.