mirror of
https://github.com/kyverno/kyverno.git
synced 2024-12-14 11:57:48 +00:00
04dc3ddfe3
* remove sample Dir and remove testcases form test_runner Signed-off-by: vyankatesh <vyankatesh@neualto.com> * change git URL for test Signed-off-by: vyankatesh <vyankatesh@neualto.com> * fix fmt issue Signed-off-by: vyankatesh <vyankatesh@neualto.com> * remove unused policy and test yamls Signed-off-by: vyankatesh <vyankatesh@neualto.com> * fix yaml path issue Signed-off-by: vyankatesh <vyankatesh@neualto.com> Co-authored-by: vyankatesh <vyankatesh@neualto.com>
26 lines
1 KiB
YAML
26 lines
1 KiB
YAML
apiVersion: kyverno.io/v1
|
|
kind: ClusterPolicy
|
|
metadata:
|
|
name: disallow-bind-mounts
|
|
annotations:
|
|
policies.kyverno.io/category: Workload Isolation
|
|
policies.kyverno.io/description: The volume of type `hostPath` allows pods to use host bind
|
|
mounts (i.e. directories and volumes mounted to a host path) in containers. Using host
|
|
resources can be used to access shared data or escalate privileges. Also, this couples pods
|
|
to a specific host and data persisted in the `hostPath` volume is coupled to the life of the
|
|
node leading to potential pod scheduling failures. It is highly recommended that applications
|
|
are designed to be decoupled from the underlying infrastructure (in this case, nodes).
|
|
spec:
|
|
validationFailureAction: audit
|
|
rules:
|
|
- name: validate-hostPath
|
|
match:
|
|
resources:
|
|
kinds:
|
|
- Pod
|
|
validate:
|
|
message: "Host path volumes are not allowed"
|
|
pattern:
|
|
spec:
|
|
=(volumes):
|
|
- X(hostPath): "null"
|