-
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
list the volumes to be deleted without forcing #8990
Closed
Closed
Changes from all commits
Commits
Show all changes
61 commits
Select commit
Hold shift + click to select a range
223bdb7
list the volumes to be deleted without forcing
c180fd5
lists filtered unused volumes in non-force mode
08279ef
list the volumes to be deleted without forcing
64aa5d5
Merge branch 'ls-before-deleting' of github.com:iwita/podman into ls-…
3e36bd3
Rename AutocompletePortCommand func
4b8fdfe
Allow podman push to push manifest lists
rhatdan e890150
Create release notes for V3.0.0
rhatdan 7e03a79
make: generate bindings: use vendor
vrothberg 0307600
simplify bindings generation
vrothberg 6381fa6
golangci-lint: install to ./bin
vrothberg aa03f51
hack/install_golangci.sh: smarter install
vrothberg cf4712c
[CI:DOCS]Do not run compose tests with CI:DOCS
baude 5b1a867
ginkgo: install on demand via `go get -u`
vrothberg 4569861
Add binding options for container|pod exists
baude 790ef83
runner.sh : deal with bash 'set -e'
edsantiago f439358
[CI:DOCS] fix go-md2man HTMLSpan warnings
edsantiago d78c671
podman network exists
21472b8
CI: smoke test: insist on adding tests on PRs
edsantiago a6264d9
Revert "ginkgo: install on demand via `go get -u`"
vrothberg d2ee661
make bindings generation more robuts
vrothberg 4b676a6
make bindings generation explicit
vrothberg feca19a
Cirrus: add bindings checks
vrothberg 98a9493
Make generate systemd --new robust against double curly braces
25c1cc8
Fix handling of container remove
rhatdan 997f374
Set log driver for compatability containers
baude 77ad5e7
[CI:DOCS] Update project name in Code of Conduct
TomSweeneyRedHat adc42d9
Use random network names in the e2e tests
659f44c
Move the cni lock file into the cni config dir
f507565
[CI:DOCS] Cirrus: Skip smoke task on branch-push
cevich b5bd462
podman volume exists
e3dc193
vendor: update rootlesskit to v0.12.0
giuseppe be778de
rootlessport: set source IP to slirp4netns device
giuseppe 6caa4d0
libpod: move slirp magic IPs to consts
giuseppe 6d0cdf8
Add a notice to remove pod before starting service
cognition9144 01e62c7
Turn on some remote test
rhatdan 496180d
podman manifest exists
d89174a
Accept and ignore 'null' as value for X-Registry-Auth
mlegenovic 7cc8112
Small API test improvement for compatibility search endpoint
mlegenovic 32030d4
Bump golang.org/x/crypto
invalid-email-address cecf844
networking: lookup child IP in networks
giuseppe 6ddae76
swagger.go: Fix compilation error
siretart adc4fb4
disable dnsname when --internal
baude cad6584
Fix fish completion issue if the command is prefixed with a space
c5e2da6
Fix typo
ChaosEx 43438d7
Bump github.com/google/uuid from 1.1.5 to 1.2.0
dependabot-preview[bot] 1519217
System tests: cover gaps from the last month
edsantiago 9bf0dc1
Ensure shutdown handler access is syncronized
mheon b69fac0
Pass DefaultMountsFile to podman build
rhatdan 7d81bd0
Fix --arch and --os flags to work correctly
rhatdan 29d4c1c
Fixup search
rhatdan 04df39c
Fix man page for fuse-overlayfs config in rootless mode
12057fc
Cirrus: Upload swagger YAML in every context
cevich cba57e7
libpod: add (*Container).ResolvePath()
vrothberg 8bb5421
workdir presence checks
vrothberg 8cb5496
api: fix import image swagger definition
be4d0f7
[CI:DOCS]update state of restful service
baude 9d940c5
list the volumes to be deleted without forcing
d47ba6b
tests
9e46e50
Merge branch 'ls-before-deleting' of github.com:iwita/podman into ls-…
e449cc4
Merge branch 'master' of github.com:iwita/podman
8d3496d
Merge branch 'master' of github.com:iwita/podman into ls-before-deleting
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/usr/bin/env bash | ||
for i in {1..9}; | ||
do | ||
echo "This is a new container pull ipbabble [" $i "]" | ||
done |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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 would list all volumes, not just the ones that would be removed. podman volume prune is going to prune the volumes that are not in use.
I believe you would need to have a filter to show volumes that are not in use.
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.
Hi @rhatdan.
Yes, you are right. Didn't consider the actual use of the
prune
command.Now I added a function in
cmd/podman/volumes/prune.go
in order to get the used volumes and remove them from the available ones for pruning.