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

This commit is contained in:
Zuul 2019-12-17 18:26:38 +00:00 committed by Gerrit Code Review
commit 3d36a5c1e2
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.