From f80b00bac2964d6427e0628246254b77a4b75de3 Mon Sep 17 00:00:00 2001 From: Vishal Choudhary Date: Thu, 5 Oct 2023 17:33:33 +0530 Subject: [PATCH] fix: update dead link in readme Signed-off-by: Vishal Choudhary --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5fe0cc79..85c8fc6b 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ Both [Kyverno policies](https://kyverno.io/docs/kyverno-policies/) and policies [Kyverno policies](https://kyverno.io/docs/kyverno-policies/) use [Kubernetes](https://kubernetes.io) specific constructs for that matter that didn't map well with arbitrary payloads. -This tool uses [assertion trees](#assertion-trees-replace-pattern-syntax) to implement `match` and `exclude` statements: +This tool uses [assertion trees](#assertion-trees-replace-pattern-matching) to implement `match` and `exclude` statements: ```yaml apiVersion: json.kyverno.io/v1alpha1 @@ -104,7 +104,7 @@ spec: Team: ($expectedTeam) ``` -Note that all context entries are lazily evaluated, a context entry will only be evaluated once. They can be used in all [assertion trees](#assertion-trees-replace-pattern-syntax), including `match` and `exclude` statements. +Note that all context entries are lazily evaluated, a context entry will only be evaluated once. They can be used in all [assertion trees](#assertion-trees-replace-pattern-matching), including `match` and `exclude` statements. ### No preconditions, pattern operators, anchors or wildcards @@ -113,7 +113,7 @@ Policies used by this tool don't support `preconditions`, pattern operators, anc Most of the time `preconditions` can be replaced by the more flexible `match` and `exclude` statements. Pattern operators, anchors and wildcards can be replaced with an improved pattern matching system. -The new pattern matching system is called *assertion trees*, this is detailed [below](#assertion-trees-replace-pattern-syntax). +The new pattern matching system is called *assertion trees*, this is detailed [below](#assertion-trees-replace-pattern-matching). ### Assertion trees replace pattern matching