1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-06 16:06:56 +00:00
kyverno/samples/DisallowNewCapabilities.md

46 lines
1.4 KiB
Markdown
Raw Normal View History

2019-10-31 18:40:54 -07:00
# Disallow new capabilities
Linux allows defining fine-grained permissions using
capabilities. With Kubernetes, it is possible to add capabilities that escalate the
level of kernel access and allow other potentially dangerous behaviors. This policy
enforces that pods cannot add new capabilities. Other policies can be used to set
default capabilities.
## Policy YAML
[disallow_new_capabilities.yaml](best_practices/disallow_new_capabilities.yaml)
````yaml
apiVersion: kyverno.io/v1alpha1
kind: ClusterPolicy
metadata:
name: validate-new-capabilities
2019-11-01 15:10:42 -07:00
annotations:
policies.kyverno.io/category: Security Context
policies.kyverno.io/description: Linux allows defining fine-grained permissions using
capabilities. With Kubernetes, it is possible to add capabilities that escalate the
level of kernel access and allow other potentially dangerous behaviors. This policy
enforces that pods cannot add new capabilities. Other policies can be used to set
default capabilities.
2019-10-31 18:40:54 -07:00
spec:
rules:
- name: deny-new-capabilities
match:
resources:
kinds:
- Pod
validate:
message: "Capabilities cannot be added"
anyPattern:
- spec:
2019-11-01 15:10:42 -07:00
=(securityContext):
=(capabilities):
X(add): null
2019-10-31 18:40:54 -07:00
- spec:
containers:
- name: "*"
2019-11-01 15:10:42 -07:00
=(securityContext):
=(capabilities):
2019-10-31 18:40:54 -07:00
X(add): null
````