Kubernetes Pod Security Policy Concepts

From NovaOrdis Knowledge Base
Revision as of 01:15, 3 September 2020 by Ovidiu (talk | contribs) (→‎Overview)
Jump to navigation Jump to search

External

Internal

Overview

A pod security policy is an example of a Kubernetes policy.

Pod security policy is implemented by a set of specialized Kubernetes resources (PodSecurityPolicy), generic resources (ServiceAccount, higher level pod controllers such as Deployments, ReplicaSets and so on), the PodSecurityPolicy admission controller and other controllers, all working in concert to ensure that the pods are created within strict security assumptions, and the pods access various resources in a controlled, secured manner. The pod security policy controls security sensitive aspects of the pod specification.

PodSecurityPolicy

The PodSecurityPolicy is a cluster-level resource

PodSecurityPolicy Admission Controller

More about admission controllers:

Kubernetes Admission Controller Concepts