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

updated [client.secrets] createOrReplace #4582

Merged
merged 2 commits into from Nov 17, 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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -21,6 +21,7 @@
#### New Features
* Fix #4136: added support for fieldValidation as a dsl method for POST/PUT/PATCH operations
* Fix #3896: added dsl support for server side apply
* Fix #4582: updated [client.secrets] createOrReplace document

#### _**Note**_: Breaking changes in the API

Expand Down
2 changes: 1 addition & 1 deletion doc/CHEATSHEET.md
Expand Up @@ -666,7 +666,7 @@ Secret secretCreated = client.secrets().inNamespace("default").create(secret1);
```
- Create or Replace an existing `Secret`:
```
Secret createdSecret = client.secrets().inNamespace("default").createOrReplace(secret1);
Secret createdSecret = client.secrets().inNamespace("default").resource(secret1).createOrReplace();
```
- List `Secret` resources in some namespace:
```
Expand Down