-
Notifications
You must be signed in to change notification settings - Fork 2.8k
docs: add missing manifest parameter to build API endpoints #27263
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
base: main
Are you sure you want to change the base?
Conversation
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: Honny1 The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
cc @inknos |
pkg/api/server/register_images.go
Outdated
// type: string | ||
// default: | ||
// description: | | ||
// Add the image to the specified manifest list. Creates manifest list if it does not exist. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
// Add the image to the specified manifest list. Creates manifest list if it does not exist. | |
// Add the image to the specified manifest list. Creates a manifest list if it does not exist. |
I'm not sure if it should be "a manifest", or "the manifest". Your pick, but please add one or the other.
pkg/api/server/register_images.go
Outdated
// type: string | ||
// default: | ||
// description: | | ||
// Add the image to the specified manifest list. Creates manifest list if it does not exist. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ditto prior comment. Add a
or the
before manifest list
in the second sentence.
Once the nits are squished, |
Add manifest parameter documentation to /libpod/build, and /libpod/local/build endpoints in OpenAPI spec. Fixes: containers#27261 Signed-off-by: Jan Rodák <[email protected]>
Thanks @Honny1 , once the comments are addressed, it LGTM |
I addressed comments. @TomSweeneyRedHat @inknos |
no more comments from my side LGTM again! |
Add manifest parameter documentation to
/libpod/build
, and/libpod/local/build
endpoints in OpenAPI spec.Fixes: #27261
For reviewer: I am not sure if I should add this to the compat API. The Docker documentation didn't mention
Manifest
, but our implementation will work with that query argument for the compat API.Does this PR introduce a user-facing change?