Ensure the --profiling argument for controller managers is set to False

Error: The --profiling argument for controller managers is not set to False

Bridgecrew Policy ID: BC_K8S_81
Checkov Check ID: CKV_K8S_107
Severity: MEDIUM

The --profiling argument for controller managers is not set to False

Description

Disable profiling, if not needed. Profiling allows for the identification of specific performance bottlenecks. It generates a significant amount of program data that could potentially be exploited to uncover system and program details. If you are not experiencing any bottlenecks and do not need the profiler for troubleshooting purposes, it is recommended to turn it off to reduce the potential attack surface.

Fix - Buildtime

Kubernetes

  • Kind: Pod
apiVersion: v1
  kind: Pod
  metadata:
    creationTimestamp: null
    labels:
      component: kube-controller-manager
      tier: control-plane
    name: kube-controller-manager
    namespace: kube-system
  spec:
    containers:
    - command:
      - kube-controller-manager
+     -  --profiling=false
      image: gcr.io/google_containers/kube-controller-manager-amd64:v1.6.0