-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Image-Copy: better resource names, allow tags & image name override (#…
…151) * update descriptions and version * Add checks to verify that the source has a managed disk * fix procedure to name the temp storage account * support tags and final image name * fix lint issue
- Loading branch information
1 parent
12ff567
commit 10b5fa8
Showing
5 changed files
with
40 additions
and
19 deletions.
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
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 |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
from codecs import open | ||
from setuptools import setup, find_packages | ||
|
||
VERSION = "0.0.5" | ||
VERSION = "0.0.6" | ||
|
||
CLASSIFIERS = [ | ||
'Development Status :: 4 - Beta', | ||
|
@@ -29,8 +29,8 @@ | |
setup( | ||
name='image-copy-extension', | ||
version=VERSION, | ||
description='An Azure CLI Extension that copies images from region to region.', | ||
long_description='An Azure CLI Extension that copies images from region to region.', | ||
description='Support for copying managed vm images between regions', | ||
long_description='Support for copying managed vm images between regions', | ||
license='MIT', | ||
author='Tamir Kamara', | ||
author_email='[email protected]', | ||
|