mirror of
https://github.com/kyverno/kyverno.git
synced 2024-12-14 11:57:48 +00:00
add disallow_readonly_rootfilesystem.yaml
This commit is contained in:
parent
c755df6b70
commit
cb44585d70
4 changed files with 21 additions and 3 deletions
|
@ -97,7 +97,7 @@ func Test_validate_hostPID_hostIPC(t *testing.T) {
|
|||
}
|
||||
|
||||
func Test_validate_not_readonly_rootfilesystem(t *testing.T) {
|
||||
testScenario(t, "test/scenarios/test/scenario_validate_not_readonly_rootfilesystem.yaml")
|
||||
testScenario(t, "test/scenarios/test/scenario_validate_disallow_readonly_rootfilesystem.yaml")
|
||||
}
|
||||
|
||||
func Test_validate_namespace_quota(t *testing.T) {
|
||||
|
|
18
samples/best_practices/disallow_readonly_rootfilesystem.yaml
Normal file
18
samples/best_practices/disallow_readonly_rootfilesystem.yaml
Normal file
|
@ -0,0 +1,18 @@
|
|||
apiVersion: kyverno.io/v1alpha1
|
||||
kind: ClusterPolicy
|
||||
metadata:
|
||||
name: validate-not-readonly-rootfilesystem
|
||||
spec:
|
||||
rules:
|
||||
- name: validate-not-readonly-rootfilesystem
|
||||
match:
|
||||
resources:
|
||||
kinds:
|
||||
- Pod
|
||||
validate:
|
||||
message: "Container should not have read-only rootfilesystem"
|
||||
pattern:
|
||||
spec:
|
||||
containers:
|
||||
- securityContext:
|
||||
readOnlyRootFilesystem: false
|
|
@ -1,7 +1,7 @@
|
|||
# file path relative to project root
|
||||
input:
|
||||
policy: examples/best_practices/policy_validate_not_readonly_rootfilesystem.yaml
|
||||
resource: examples/best_practices/resources/resource_validate_not_readonly_rootfilesystem.yaml
|
||||
policy: samples/best_practices/disallow_readonly_rootfilesystem.yaml
|
||||
resource: test/manifest/disallow_readonly_rootfilesystem.yaml
|
||||
expected:
|
||||
validation:
|
||||
policyresponse:
|
Loading…
Reference in a new issue