CCCS-203B · Question #41
During the deployment of the CrowdStrike Kubernetes Sensor in a Kubernetes cluster, the installation fails with the error: 1. "ServiceAccount missing required permissions." What is the most likely cau
The correct answer is C. The ServiceAccount does not have the correct RBAC (Role-Based Access Control) permissions. Option A: ServiceAccounts are cluster-wide and are not assigned to specific nodes. This answer demonstrates a misunderstanding of Kubernetes architecture. Option B: A corrupted container image would lead to issues like failed image pulls or runtime errors, not an error related to
Question
During the deployment of the CrowdStrike Kubernetes Sensor in a Kubernetes cluster, the installation fails with the error: 1. "ServiceAccount missing required permissions." What is the most likely cause of this issue?
Options
- AThe ServiceAccount is incorrectly assigned to a worker node instead of a master node.
- BThe CrowdStrike Kubernetes Sensor container image is corrupted.
- CThe ServiceAccount does not have the correct RBAC (Role-Based Access Control) permissions
- DThe Kubernetes cluster is running an unsupported version.
How the community answered
(38 responses)- A5% (2)
- B18% (7)
- C71% (27)
- D5% (2)
Explanation
Option A: ServiceAccounts are cluster-wide and are not assigned to specific nodes. This answer demonstrates a misunderstanding of Kubernetes architecture. Option B: A corrupted container image would lead to issues like failed image pulls or runtime errors, not an error related to the ServiceAccount permissions. Option C: This is the correct answer because the error message points to a permissions issue related to the ServiceAccount. CrowdStrike Kubernetes Sensors require specific RBAC permissions to monitor and protect workloads effectively. If these permissions are missing or misconfigured, the deployment will fail. Option D: While running an unsupported Kubernetes version can cause compatibility issues, it would not result in a "ServiceAccount missing required permissions" error. The error clearly points to RBAC misconfiguration, not version incompatibility.
Topics
Community Discussion
No community discussion yet for this question.