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

doc/projects: fix documentation for PATCH request #13803

Merged
merged 1 commit into from
Jul 22, 2024
Merged
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
8 changes: 1 addition & 7 deletions doc/howto/projects_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,16 +125,10 @@ For example, to limit the number of containers that can be created in `my-projec

lxc query --request PATCH /1.0/projects/my-project --data '{
"config": {
"limits.containers": "5",
...
"limits.containers": "5"
}
}'

```{note}
The PATCH request updates the full content of the `config` field.
Therefore, you must specify all configuration options as part of the PATCH request, and not only the option that you want to change.
```

See [`PATCH /1.0/projects/{name}`](swagger:/projects/project_patch) for more information.
````
````{group-tab} UI
Expand Down
Loading