Skip to content
Vol. 1 · Ed. 2026
CyberGlossary
Entry № 674

Kubernetes Security

Reviewed byCybersecurity entrepreneur & security researcher

What is Kubernetes Security?

Kubernetes SecurityThe protection of a Kubernetes cluster — its API server, control plane, nodes, workloads, and network — from misconfiguration, compromise, and lateral movement.


Kubernetes is now the de facto orchestrator for cloud-native workloads, which makes its security model business-critical. Key controls include hardening the API server (RBAC least privilege, audit logs, no anonymous access), securing kubelet and etcd, enforcing pod security standards (no privileged containers, dropped capabilities, non-root users), network policies for east-west isolation, secret management via external KMS, and admission policies via Kyverno or OPA. Threats include exposed Kubernetes dashboards, vulnerable container images, supply-chain attacks on Helm charts, container escapes, and credential-stealing crypto-miners. Frameworks such as the CIS Kubernetes Benchmark and NSA/CISA hardening guide provide concrete baselines.

Examples

  1. 01

    Enforcing the restricted Pod Security Standard and NetworkPolicy defaults across all namespaces.

  2. 02

    Using kube-bench, kubescape, or Wiz to score a cluster against the CIS Benchmark.

Frequently asked questions

What is Kubernetes Security?

The protection of a Kubernetes cluster — its API server, control plane, nodes, workloads, and network — from misconfiguration, compromise, and lateral movement. It belongs to the Cloud Security category of cybersecurity.

What does Kubernetes Security mean?

The protection of a Kubernetes cluster — its API server, control plane, nodes, workloads, and network — from misconfiguration, compromise, and lateral movement.

How do you defend against Kubernetes Security?

Defences for Kubernetes Security typically combine technical controls and operational practices, as detailed in the full definition above.

What are other names for Kubernetes Security?

Common alternative names include: K8s security.

Related terms

See also