-
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
volumes: Add support for volume import
which allows importing contents of external tarballs into podman volumes.
#11307
volumes: Add support for volume import
which allows importing contents of external tarballs into podman volumes.
#11307
Conversation
Wait for tests till this is merged #11290 |
volume import
which allow simporting contents of external tarballs into podman volumes.volume import
which allows importing contents of external tarballs into podman volumes.
69b4057
to
c3fbd41
Compare
We import on PS: I am ok to make it analogous to how it is being done in |
740590f
to
a8c5f44
Compare
Fix your whitespace. |
f03b8d0
to
c258c87
Compare
Needs tests... |
d52f99c
to
c78f0ee
Compare
@rhatdan added tests for following PR. |
Could you update podman-volume-export man page to mention podman-volume-import? |
Also add examples using stdout and stdin. podman volume export myvol | podman volume import oldmyvol - |
02e14cd
to
6509379
Compare
@flouthoc all kinds of tests unhappiness |
All kinds of red unhappy tests. |
6509379
to
cc39122
Compare
cc39122
to
61278d5
Compare
LGTM |
@@ -186,6 +186,22 @@ EOF | |||
} | |||
|
|||
|
|||
# Podman volume import test |
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.
nice touch!
61278d5
to
1fdffec
Compare
…lume Following feature makes sure that users can load contents of external tarball into the podman volumes. Signed-off-by: flouthoc <[email protected]>
1fdffec
to
d550770
Compare
LGTM |
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: flouthoc, 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 |
Following PR allows users to import contents of external tarball into podman via.
or
Note: Following PR is missing tests which will be added once this is merged #11290