Terminology Index
Glossary
1801 terms
Showing 1089-1120 of 1801 terms
Network Policies (K8s)
Kubernetes resources that restrict which pods can communicate with which, enforcing network segmentation inside a cluster so a compromised pod cannot freely reach others. A core part of cluster workload protection.
Kubernetes network policies declare allowed traffic between pods (and to or from external endpoints) using labels and selectors, with a default-deny baseline being best practice. Without them, pods in the same cluster can usually talk freely, giving attackers easy lateral paths after compromising one. Applied well, network policies enforce least-privilege communication inside the cluster, a critical workload-protection control alongside RBAC, image security, and runtime protection.
Introduced in: Cloud Workload Protection
Examples
- Default-denying pod-to-pod traffic in a namespace via a network policy.
- Allowing only specific pods to reach a database service.
- Restricting external egress from pods to required destinations.
No related terms linked yet.
