Dieser Inhalt ist in der von Ihnen ausgewählten Sprache nicht verfügbar.
Chapter 16. Understanding and managing pod security admission
Pod security admission is an implementation of the Kubernetes pod security standards. Use pod security admission to restrict the behavior of pods.
16.1. Pod security admission and security context constraints Link kopierenLink in die Zwischenablage kopiert!
Pod security admission standards and security context constraints are reconciled and enforced by two independent controllers. The two controllers work independently using the following processes to enforce security policies:
-
The security context constraint controller may mutate some security context fields per the pod’s assigned SCC. For example, if the seccomp profile is empty or not set and if the pod’s assigned SCC enforces field to be
seccompProfiles, the controller sets the default type toruntime/default.RuntimeDefault - The security context constraint controller validates the pod’s security context against the matching SCC.
- The pod security admission controller validates the pod’s security context against the pod security standard assigned to the namespace.
16.2. Security context constraint synchronization with pod security standards Link kopierenLink in die Zwischenablage kopiert!
OpenShift Container Platform includes Kubernetes pod security admission. Globally, the
privileged
restricted
In addition to the global pod security admission control configuration, a controller exists that applies pod security admission control
warn
audit
Namespaces that are defined as part of the cluster payload have pod security admission synchronization disabled permanently. You can enable pod security admission synchronization on other namespaces as necessary. If an Operator is installed in a user-created
openshift-*
The controller examines
ServiceAccount
warn
audit
Namespace labeling is based on consideration of namespace-local service account privileges.
Applying pods directly might use the SCC privileges of the user who runs the pod. However, user privileges are not considered during automatic labeling.
16.3. Controlling pod security admission synchronization Link kopierenLink in die Zwischenablage kopiert!
You can enable or disable automatic pod security admission synchronization for most namespaces.
Namespaces that are defined as part of the cluster payload have pod security admission synchronization disabled permanently. These namespaces include:
-
default -
kube-node-lease -
kube-system -
kube-public -
openshift -
All system-created namespaces that are prefixed with , except for
openshift-openshift-operators
By default, all namespaces that have an
openshift-
openshift-*
openshift-*
openshift-operators
If an Operator is installed in a user-created
openshift-*
Procedure
For each namespace that you want to configure, set a value for the
label:security.openshift.io/scc.podSecurityLabelSyncTo disable pod security admission label synchronization in a namespace, set the value of the
label tosecurity.openshift.io/scc.podSecurityLabelSync.falseRun the following command:
$ oc label namespace <namespace> security.openshift.io/scc.podSecurityLabelSync=falseTo enable pod security admission label synchronization in a namespace, set the value of the
label tosecurity.openshift.io/scc.podSecurityLabelSync.trueRun the following command:
$ oc label namespace <namespace> security.openshift.io/scc.podSecurityLabelSync=true
NoteUse the
flag to overwrite the value if this label is already set on the namespace.--overwrite
16.4. About pod security admission alerts Link kopierenLink in die Zwischenablage kopiert!
A
PodSecurityViolation
View the Kubernetes API server audit logs to investigate alerts that were triggered. As an example, a workload is likely to fail admission if global enforcement is set to the
restricted
For assistance in identifying pod security admission violation audit events, see Audit annotations in the Kubernetes documentation.
16.4.1. Identifying pod security violations Link kopierenLink in die Zwischenablage kopiert!
The
PodSecurityViolation
must-gather
pod-security.kubernetes.io/audit-violations
Prerequisites
-
You have installed .
jq -
You have access to the cluster as a user with the role.
cluster-admin
Procedure
To gather the audit logs, enter the following command:
$ oc adm must-gather -- /usr/bin/gather_audit_logsTo output the affected workload details, enter the following command:
$ zgrep -h pod-security.kubernetes.io/audit-violations must-gather.local.<archive_id>/<image_digest_id>/audit_logs/kube-apiserver/*log.gz \ | jq -r 'select((.annotations["pod-security.kubernetes.io/audit-violations"] != null) and (.objectRef.resource=="pods")) | .objectRef.namespace + " " + .objectRef.name' \ | sort | uniq -cReplace
and<archive_id>with the actual path names.<image_digest_id>Example output
1 test-namespace my-pod