зеркало из https://github.com/Azure/ARO-RP.git
fixing a bug if DES isn't used
This commit is contained in:
Родитель
8e797d2fef
Коммит
36fa1303be
|
@ -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
|
||||
|
|
Загрузка…
Ссылка в новой задаче