Closed mvach closed 1 year ago
@jpalermo & @ragaskar do y'all have time to review this PR?
I was also able to compile it and run through all the commands in the README you created (thank you!)
A couple notes:
# Downloading a blob:
curl -X PUT -H "x-ms-blob-type: blockblob" -F ‘fileX=<path/to/file>’ <signed url>
curl -X GET
should be
curl -X PUT -H "x-ms-blob-type: blockblob" -F ‘fileX=<path/to/file>’
curl -X GET
I found that the `curl` command provided for the PUT did not store my file as I expected but just dumped form-data when I took it literally,. eg, when I set -F `fileX=./test.foo` I got:
--------------------------b44b6325ba33f6fc Content-Disposition: form-data; name="fileX"
./test.foo --------------------------b44b6325ba33f6fc--
(i.e., used `fileX=`... not sure what I might have done wrong, but might be worth reviewing that snippet for typos).
But no reason not to merge! Thanks for your patience.
Hi @ragaskar, PR https://github.com/cloudfoundry/bosh-azure-storage-cli/pull/2 is addressing your feedback. THX!
The azure storage cli is required to solve https://github.com/cloudfoundry/bosh-azure-cpi-release/issues/672. It still need to be integrated into the director and the agent.