-
Notifications
You must be signed in to change notification settings - Fork 211
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
Fixed block volume snapshots #162
Conversation
"tar xvfz <snapshot> -C <dst>" does not work for block volumes, because <dst> is not a directory but a block file. Reworked to use tar only for filesystem snapshots and simple cp/dd for block snapshots. As consequence, snapshot suffix is now ".snap" instead of ".tgz".
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: jsafrane 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 |
@msau42 @xing-yang @pohly, PTAL |
/lgtm |
Do we support upgrading/restarting the hostpath driver and it being able to restore from previous snapshots? If so we should update the release note to say it's a breaking change |
Not yet, but see #161 |
…ommand prow.sh: allow shell commands in CSI_PROW_SANITY_POD
tar xvfz <snapshot> -C <dst>
does not work for block volumes, because<dst>
is not a directory but a block file.Reworked to use
tar
only for filesystem snapshots and simplecp
/dd
for block snapshots. As consequence, snapshot suffix is now ".snap" instead of ".tgz"./kind bug
Which issue(s) this PR fixes:
Helps with #88726
Does this PR introduce a user-facing change?: