Skip to main content
In this guide, we’ll dive into CIS Benchmarking for Kubernetes and demonstrate how to use Kube-bench to validate your cluster’s security posture. You’ll learn:
  • What the CIS Kubernetes Benchmark covers
  • How to run Kube-bench via Docker or as a standalone binary
  • Techniques for filtering checks and producing JSON output for CI/CD

What Is the CIS Benchmark?

The Center for Internet Security (CIS) publishes CIS Benchmarks, which are consensus-driven best practices for securing various platforms. The CIS Kubernetes Benchmark offers detailed recommendations for locking down a Kubernetes cluster by release version. For fully managed offerings like GKE or EKS, use the cloud provider–specific benchmarks: These child benchmarks inherit controls from the upstream CIS Kubernetes Benchmark, removing checks you can’t configure and adding provider-specific rules. In this article, we focus on a kubeadm-provisioned cluster using the upstream CIS Kubernetes Benchmark.

Introducing Kube-bench

Kube-bench is an open-source tool written in Go that scans your Kubernetes nodes against the CIS Benchmark controls. It will output PASS or FAIL for each test, so you can quickly identify misconfigurations. You can execute Kube-bench in two primary ways:
  1. Docker container
  2. Standalone binary
Always match the --version flag to your Kubernetes release. Mismatched versions may yield incorrect results.

1. Running Kube-bench with Docker

Using Docker is the quickest method since it requires no local installation. Mount your host’s /etc and /var directories so Kube-bench inside the container can read necessary config files.
Ensure your Docker user has permission to mount /etc and /var. Running as root or with sudo may be required.

Sample Output


2. Installing and Running the Standalone Binary

If you prefer not to use Docker, download the latest Kube-bench release, extract it, and place the binary in your PATH:
Then run:

3. Filtering Checks & JSON Output

To focus on specific controls or integrate results into CI/CD workflows, use the --check and --json flags.

Docker Example

Binary Example

The resulting JSON can be parsed to enforce compliance gates in your automation pipelines.

Comparison: Docker vs Standalone Binary


Watch Video