From 8de2bb77e6a766c94f81151bd6939c507163c508 Mon Sep 17 00:00:00 2001 From: Igor Date: Fri, 31 Jul 2020 13:38:32 +0200 Subject: [PATCH] setblob breaking change information (#188) * Create changeloG.md * Rename changeloG.md to changelog.md * Update changelog.md * Update changelog.md * Create setblobs-container.md * Create setblobs-container.md * Delete setblobs-container.md * Update setblobs-container.md * Update setblobs-container.md --- changelog.md | 8 +++++--- docs/setblobs-container.md | 20 ++++++++++++++++++++ 2 files changed, 25 insertions(+), 3 deletions(-) create mode 100644 docs/setblobs-container.md diff --git a/changelog.md b/changelog.md index caca190..e6cc29e 100644 --- a/changelog.md +++ b/changelog.md @@ -2,13 +2,15 @@ ## version 0.5 -### date: July 29th, 2020 -Released in scope of MSFT Hackathon 2020 event - Breaking changes: * `setblobs` is not supporting `--container` parameter anymore, more info [here](docs/setblobs-container.md) Functionality / performance +* `getblobs` speed increased 50 times! + +Other changes +* updated doitnet core to version 3.1 +* Full list of issues: https://github.com/SRE-PRG/azmitool/milestone/5?closed=1 * added `setblobs` command * `getblobs` speed increased 5 times! * added `--file` output argument for `getcertificate` and `getsecret` subcommands diff --git a/docs/setblobs-container.md b/docs/setblobs-container.md new file mode 100644 index 0000000..2601b0f --- /dev/null +++ b/docs/setblobs-container.md @@ -0,0 +1,20 @@ +Since azmi [version 0.5](../changelog.md#version-05), azmi sub-command `setblob` is not supporting parameter `--container` anymore. You must use `--blob` to specify destination. + +## Not supported +``` +azmi setblob --container $CONTAINER --file $FILE +``` + +## Supported +``` +azmi setblob --blob $BLOB --file $FILE +``` + +## How to switch to supported version + +In reality blob url consists of container and blob paths. Solution is to update your commands like this: +``` +# azmi setblob --container $CONTAINER --file $FILE +BLOB="$CONT/$FILE" +azmi setblob --blob $BLOB --file $FILE +```