From 80a02a1574592b09a680f60e8071004de66bcc89 Mon Sep 17 00:00:00 2001 From: danielnbalasoiu <46020698+danielnbalasoiu@users.noreply.github.com> Date: Wed, 29 Apr 2020 09:12:37 +0000 Subject: [PATCH] Documentation update Updated instructions with current locations of `policy-CM.yaml` and `CM.yaml`. --- documentation/testing-policies.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/documentation/testing-policies.md b/documentation/testing-policies.md index 15a91d9219..e97ee2ea64 100644 --- a/documentation/testing-policies.md +++ b/documentation/testing-policies.md @@ -12,14 +12,14 @@ To do this you should [install Kyverno to the cluster](installation.md). For example, to test the simplest Kyverno policy for `ConfigMap`, create the policy and then the resource itself via `kubectl`: ````bash -cd test/ConfigMap -kubectl create -f policy-CM.yaml -kubectl create -f CM.yaml +cd test +kubectl create -f policy/policy-CM.yaml +kubectl create -f resources/CM.yaml ```` Then compare the original resource definition in `CM.yaml` with the actual one: ````bash -kubectl get -f CM.yaml -o yaml +kubectl get -f resources/CM.yaml -o yaml ```` ## Test using Kyverno CLI