1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-09 09:26:54 +00:00
kyverno/test/conformance/chainsaw/exceptions/psa-run-as-non-root
gcp-cherry-pick-bot[bot] 1e46816e00
chore: bump chainsaw (#11161) (#11177)
* chore: bump chainsaw



* more template use



* v0.2.10



* go mod



---------

Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
Co-authored-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
2024-09-17 10:09:15 +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 chore: bump chainsaw (#11161) (#11177) 2024-09-17 10:09:15 +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