Skip to content

Commit

Permalink
Merge pull request kubernetes-sigs#4259 from MikaelSmith/fix-patch-ex…
Browse files Browse the repository at this point in the history
…ample

docs: Update example for patching multiple objects
  • Loading branch information
k8s-ci-robot authored Nov 1, 2021
2 parents 04396ab + 572d584 commit 2c4b195
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/patchMultipleObjects.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,17 @@ a _target selector_:
> group: <optional group>
> version: <optional version>
> kind: <optional kind>
> name: <optional name>
> name: <optional name or regex pattern>
> namespace: <optional namespace>
> labelSelector: <optional label selector>
> annotationSelector: <optional annotation selector>
> ```
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`:
Expand Down

0 comments on commit 2c4b195

Please sign in to comment.