mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-10 09:56:55 +00:00
Signed-off-by: MarcelMue <marcel.mueller1@rwth-aachen.de> Signed-off-by: Marcel Mueller <marcel.mueller1@rwth-aachen.de>
18 lines
393 B
Go
18 lines
393 B
Go
package mutate
|
|
|
|
// MutateTests is E2E Test Config for mutation
|
|
var MutateTests = []struct {
|
|
//TestName - Name of the Test
|
|
TestName string
|
|
// Data - The Yaml file of the ClusterPolicy
|
|
Data []byte
|
|
}{
|
|
{
|
|
TestName: "test-mutate-with-context",
|
|
Data: configMapMutationYaml,
|
|
},
|
|
{
|
|
TestName: "test-mutate-with-logic-in-context",
|
|
Data: configMapMutationWithContextLogicYaml,
|
|
},
|
|
}
|