Merge "Correct availability_zone to be non-mandatory in heat" into stable/queens

This commit is contained in:
Zuul 2020-01-14 20:59:58 +00:00 committed by Gerrit Code Review
commit e4db219a2a
2 changed files with 8 additions and 1 deletions

View File

@ -56,7 +56,6 @@ class HostAggregate(resource.Resource):
AVAILABILITY_ZONE: properties.Schema(
properties.Schema.STRING,
_('Name for the availability zone.'),
required=True,
update_allowed=True,
),
HOSTS: properties.Schema(

View File

@ -0,0 +1,8 @@
---
fixes:
- |
Erroneously, availability_zone for host aggregate resource types was
considered mandatory in heat templates.
Behaviour has been adjusted to bring this in line with the CLI and GUI, in
which it is optional.