fixing a bug if DES isn't used

This commit is contained in:
Leszek Jakubowski 2021-10-25 17:45:32 +02:00 коммит произвёл Mikalai Radchuk
Родитель 8e797d2fef
Коммит 36fa1303be
4 изменённых файлов: 8 добавлений и 3 удалений

Просмотреть файл

@ -33,3 +33,7 @@ Release History
1.0.2
++++++
* Add support for list admin credentials (getting kubeconfig)
1.0.3
++++++
* Fix role assignment bug

Просмотреть файл

@ -1,5 +1,5 @@
{
"azext.minCliCoreVersion": "2.15.0",
"azext.isPreview": true,
"version": "1.0.2"
"version": "1.0.3"
}

Просмотреть файл

@ -306,7 +306,8 @@ def get_network_resources(cli_ctx, subnets, vnet):
def get_disk_encryption_resources(oc):
disk_encryption_set = oc.master_profile.disk_encryption_set_id
resources = set()
resources.add(disk_encryption_set)
if disk_encryption_set:
resources.add(disk_encryption_set)
return resources

Просмотреть файл

@ -11,7 +11,7 @@ except ImportError:
from distutils import log as logger
logger.warn("Wheel is not available, disabling bdist_wheel hook")
VERSION = '1.0.2'
VERSION = '1.0.3'
# The full list of classifiers is available at
# https://pypi.python.org/pypi?%3Aaction=list_classifiers