M ManySignal

Guide · ManySignal

Kubernetes Security Monitoring Guide

Kubernetes security monitoring is harder than it looks. The cluster generates high volumes of low-signal events, the attack surface spans control plane (API server), data plane (pods), and the cloud IAM that underlies node identity. This guide covers the telemetry sources, detection priorities, and ManySignal entity graph modelling for Kubernetes environments.

DI David Iwu — Staff Engineer, ManySignal
16 min read Published Jul 17, 2026 Download PDF
01

Kubernetes telemetry sources

Three primary sources: Kubernetes API server audit log (every API call with actor, verb, resource, and outcome), container runtime events (falco or eBPF-based syscall telemetry), and cloud control plane logs (EKS CloudTrail, GKE Admin Activity, AKS Activity Log) for the underlying node identity. All three are required for full attack path coverage.

The API server audit log is the most important single source. Enable it with a policy that captures RequestResponse verbosity for sensitive resources (secrets, rolebindings, clusterrolebindings) and Metadata verbosity for high-volume resources (pods, configmaps). Never disable audit logging — T1562.008 (Impair Defenses) includes disabling Kubernetes audit.

  • API server audit policy deployed with RequestResponse for secrets and RBAC resources
  • Audit log shipped to a centralised store outside the cluster
  • Falco or eBPF runtime telemetry enabled on all node pools
  • Cloud control plane logs ingested for node identity (EKS/GKE/AKS)
  • ManySignal Kubernetes connector validated with test kubectl command
02

RBAC and privilege escalation detection

Kubernetes RBAC is the primary access control mechanism and the primary privilege escalation surface. Critical detections: new ClusterRoleBinding granting cluster-admin, new RoleBinding to a service account for a privileged role, pod created with hostPID, hostNetwork, or hostPath volume mounts, and exec into a running pod in a production namespace.

Service account token projection is the preferred authentication method for workloads — but long-lived tokens (the legacy format) are still common and are not subject to automatic rotation. Detect creation of Secrets of type kubernetes.io/service-account-token — these are long-lived credentials that survive pod restarts.

# detections/k8s/cluster_admin_binding.yaml
key: k8s.cluster_admin_binding
domain: container
severity: critical
type: streaming
where:
  class_uid: 3005
  source: k8s_audit
  verb: create
  resource: clusterrolebindings
  role_ref_name: cluster-admin
  outcome: success
attck:
  tactic: TA0004
  techniques: [T1078.001]
stage: active
03

Runtime threat detection

API server audit covers intent; runtime telemetry covers execution. Falco rules or eBPF probes detect: shell spawned in a container that doesn't normally exec, sensitive file read (/etc/shadow, /var/run/secrets), network connection to an unexpected external destination, and crypto mining process fingerprints.

Correlating runtime events with API server events is what closes the loop. A kubectl exec followed by a shell spawn followed by an outbound connection to a known C2 range is a high-confidence active compromise sequence. Each event alone might be noise; the sequence on the same pod identity is decisive.

04

Cloud IAM and node identity

In managed Kubernetes (EKS, GKE, AKS), cluster nodes have cloud IAM identities. A compromised node can use its instance profile or workload identity to call cloud APIs — pivoting from the cluster to the cloud control plane. Monitor the cloud IAM activity of node identities for operations outside their expected scope: a node identity calling IAM CreateUser is a critical signal.

The ManySignal entity graph links Kubernetes workload identities to their underlying cloud IAM identities. An anomalous API call from a cloud identity that backs a Kubernetes node is surfaced in the context of the workloads running on that node — enabling rapid scope determination.

05

Container image and supply chain monitoring

Admission controllers are the preventive control; audit logs are the detective control. Monitor Kubernetes admission events for pods that use images without a digest pinned (floating tags), images from registries not in the allowlist, and images that fail signature verification.

Image pull events in the API server audit log (imagepullsecrets creation, pod creation with new image references) combined with GHAS container scanning alerts give the earliest signal for a compromised base image before it executes in production.

Key takeaways

  • Three required sources: API server audit log, runtime telemetry, cloud control plane logs.
  • API server audit log is most important — never disable it; enable RequestResponse verbosity for RBAC and secrets.
  • ClusterRoleBinding to cluster-admin and pod exec are the highest-signal RBAC events.
  • Runtime telemetry closes the loop — correlate kubectl exec with shell spawn with outbound connection.
  • Node IAM identities are pivot points from the cluster to the cloud control plane.
  • Prefer eBPF-based runtime probes for lower overhead and higher tamper resistance.

Further reading

Frequently asked questions

What is Kubernetes Security Monitoring Guide in an agentic SOC?

Kubernetes Security Monitoring Guide is part of ManySignal's agentic SOC and MDR platform, where AI agents detect, triage, investigate, and respond to threats with human-governed autonomy.

How does ManySignal handle kubernetes security monitoring guide?

ManySignal grounds kubernetes security monitoring guide in a temporal entity graph and behavioural baselines, so every verdict is backed by auditable evidence rather than opaque scores.

Can ManySignal replace my SOAR or MDR for kubernetes security monitoring guide?

Yes. ManySignal combines detection, triage, investigation, response, and reporting in one platform, and can operate as your MDR or augment an existing SOC team.

How is autonomy governed?

Through an autonomy ladder: recommend-only, approve-gated, and autonomous modes per action class, with dry-run previews, blast-radius limits, and a one-click tenant kill switch.

How fast is time to value?

Declarative connectors and shipped detections typically produce AI agent verdicts on live alerts within days, not quarters — no parsing projects or playbook-building phase.

Is ManySignal available as a managed service?

Yes. Consume ManySignal as MDR with 24/7 coverage and monthly reporting, run it as your in-house agentic SOC, or use it as the platform behind your own MDR practice.

How does ManySignal license the platform?

Pricing scales with protected assets and autonomy tier, not per-GB ingestion or per-alert volume. Starter, Growth, and Enterprise plans are available; MDR providers receive volume discounts for multi-tenant deployments.

Where does our data reside?

By default in AWS us-east-1. Enterprise tenants can pin data to specific AWS regions, deploy self-hosted on their own Kubernetes cluster, or use customer-managed encryption keys (CMK) to retain cryptographic control.

What does the evidence trail contain?

Each verdict stores the full question set, per-question agent answers, confidence weights, source event references, entity graph snapshots, and operator attestation — preserved immutably for the retention period chosen at contract time.

How does ManySignal handle a false-positive alert?

The triage agent auto-closes findings it assesses as false positives with a documented rationale — which rule fired, why the evidence fails to support escalation, and the entity baseline that informed the decision. Auto-closure rates typically reach 85–95% within 90 days as baselines mature.

Continue reading

See the agentic SOC in action

Watch AI agents work a real alert queue — verdicts, evidence, and confidence scores included. In-house SOC or MDR, your call.