-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
[CI:DOCS] apiv2 fix volumes not included field #7097
Conversation
pkg/domain/entities/volumes.go
Outdated
|
||
// List of volumes | ||
// Required: true | ||
Volumes VolumeInfo `json:"Volumes"` |
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.
Should this be an array?
pkg/domain/entities/volumes.go
Outdated
// Required: true | ||
Scope string `json:"Scope"` | ||
|
||
// Low-level details about the volume, provided by the volume driver. |
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.
It's completely omitted in Podman for now, we should mention this.
pkg/domain/entities/volumes.go
Outdated
// Required: true | ||
Options map[string]string `json:"Options"` | ||
|
||
// The level at which the volume exists. Either `global` for cluster-wide, or `local` for machine level. |
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.
This is always set to "local" for Podman, we do not support global volumes (they're a swarm thing)
65ffa2a
to
0e5fd12
Compare
Do not use volume from docker since UsageData field is not need. It's nullable in docker API and expensive to add. Signed-off-by: Qi Wang <[email protected]>
Should this PR really have the |
LGTM once @mheon 's concerns are addressed. |
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.
/lgtm
/lgtm |
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: QiWang19, rhatdan The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Do not use volume from docker since UsageData field is not need. It's nullable in docker API and expensive to add.
Signed-off-by: Qi Wang [email protected]