From 572d5841c60b9a4db1a75443b8badb7e8334f727 Mon Sep 17 00:00:00 2001 From: Michael Smith Date: Tue, 26 Oct 2021 12:15:48 -0700 Subject: [PATCH] docs: Update example for patching multiple objects Updates the example for patching multiple objects to match the implementation in #1355, which supports name as a regular expression (not wildcard pattern). --- examples/patchMultipleObjects.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/patchMultipleObjects.md b/examples/patchMultipleObjects.md index e3fbe2b2a..a11a1ae21 100644 --- a/examples/patchMultipleObjects.md +++ b/examples/patchMultipleObjects.md @@ -22,17 +22,17 @@ a _target selector_: > group: > version: > kind: -> name: +> name: > namespace: > labelSelector: > annotationSelector: > ``` -E.g. select resources with _name_ matching `foo*`: +E.g. select resources with _name_ matching the regular expression `foo.*`: > ```yaml > target: -> name: foo* +> name: foo.* > ``` Select all resources of _kind_ `Deployment`: