-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
add network prune #9236
add network prune #9236
Conversation
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: baude 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 |
cafbf6f
to
25e4e6a
Compare
podman(1), podman-network(1), podman-network-remove(1) | ||
|
||
## HISTORY | ||
February 2021, Originally compiled by Brent Baude <[email protected]> |
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 would be good to have a --unused
option for podman network list
or an option here (--preview
?) to show the ones that would be pruned if the command was called.
89de5d0
to
731501f
Compare
add the ability to prune unused cni networks. filters are not implemented but included both compat and podman api endpoints. Fixes :containers#8673 Signed-off-by: baude <[email protected]>
@@ -80,3 +80,15 @@ type NetworkConnectOptions struct { | |||
Aliases []string | |||
Container string | |||
} | |||
|
|||
// NetworkPruneReport containers the name of network and an error |
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.
nit
// NetworkPruneReport containers the name of network and an error | |
// NetworkPruneReport contains the name of the network and an error |
LGTM |
LGTM |
merge? |
/lgtm |
add the ability to prune unused cni networks. filters are not implemented
but included both compat and podman api endpoints.
Fixes :#8673
Signed-off-by: baude [email protected]