Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix vault cli namespace patch examples #18143

Merged
merged 3 commits into from
Dec 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions changelog/18143.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:bug
command/namespace: Fix vault cli namespace patch examples in help text.
```
4 changes: 2 additions & 2 deletions command/namespace_patch.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ Usage: vault namespace patch [options] PATH

Patch an existing child namespace by adding and removing custom-metadata (e.g. ns1/):

$ vault namespace patch ns1 -custom-metadata=foo=abc -remove-custom-metadata=bar
$ vault namespace patch -custom-metadata=foo=abc -remove-custom-metadata=bar ns1

Patch an existing child namespace from a parent namespace (e.g. ns1/ns2/):

$ vault namespace patch -namespace=ns1 ns2 -custom-metadata=foo=abc
$ vault namespace patch -namespace=ns1 -custom-metadata=foo=abc ns2

` + c.Flags().Help()

Expand Down