1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-10 01:46:55 +00:00
kyverno/test/conformance/chainsaw/exceptions/psa-run-as-non-root
Mariam Fahmy 2140a0239b
chore: rename validationFailureAction to failureAction under the rule (#10893)
Signed-off-by: Mariam Fahmy <mariam.fahmy@nirmata.com>
Co-authored-by: Jim Bugwadia <jim@nirmata.com>
2024-08-27 20:07:57 +00:00
..
bad-pod-01.yaml feat add chainsaw tests for pod security and exceptions (#10664) 2024-07-16 12:14:47 +00:00
bad-pod-02.yaml feat add chainsaw tests for pod security and exceptions (#10664) 2024-07-16 12:14:47 +00:00
chainsaw-test.yaml feat add chainsaw tests for pod security and exceptions (#10664) 2024-07-16 12:14:47 +00:00
exception.yaml feat add chainsaw tests for pod security and exceptions (#10664) 2024-07-16 12:14:47 +00:00
good-pod.yaml feat add chainsaw tests for pod security and exceptions (#10664) 2024-07-16 12:14:47 +00:00
policy-assert.yaml feat add chainsaw tests for pod security and exceptions (#10664) 2024-07-16 12:14:47 +00:00
policy.yaml chore: rename validationFailureAction to failureAction under the rule (#10893) 2024-08-27 20:07:57 +00:00
README.md feat add chainsaw tests for pod security and exceptions (#10664) 2024-07-16 12:14:47 +00:00

Description

This test creates an exception for the init containers to set the runAsNonRoot to false

Expected Behavior

  1. Create a policy that applies the restricted profile.

  2. Create an exception for the init containters to set the runAsNonRoot to false.

  3. Create a pod with the following characteristics:

    • The pod has an init container that sets the runAsNonRoot field to false.
    • The pod has a container that doesn't set the runAsNonRoot field.

    It is expected that the pod will be blocked with a message reporting the violation of the container. The init container is already excluded by the exception.

  4. Create a pod with the following characteristics:

    • The pod has an init container that sets the runAsNonRoot field to true.
    • The pod has a container that doesn't set the runAsNonRoot field.

    It is expected that the pod will be blocked with a message reporting the violation of the container.

  5. Create a pod with the following characteristics:

    • The pod has an init container that sets the runAsNonRoot field to false.
    • The pod has a container that doesn't set the runAsNonRoot field.
    • runAsNonRoot is set to true in the pod spec.

    It is expected that the pod will be created successfully.

Reference Issue(s)

#10581