summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid J Peacock <david.j.peacock@gmail.com>2019-09-18 14:57:28 -0400
committerDavid J Peacock <david.j.peacock@gmail.com>2020-01-08 13:03:39 -0500
commit46de9fb4fe6a21b845a006dc01ec9c5e3e6972ee (patch)
treeabc3ba7afac9641440bfd30d7585fd1d58bcd03d
parent06f8ee55241911797517eef3474af47ef58fbff2 (diff)
downloadheat-46de9fb4fe6a21b845a006dc01ec9c5e3e6972ee.tar.gz
Correct availability_zone to be non-mandatory in heat
As per CLI and GUI, availability_zone is not mandatory. In templates, it is. This is incorrect. This patch corrects behaviour to match CLI and GUI. Change-Id: Ice37340f084ea65bd4b46562145e82ede6bc0df5 Story: 2006586 (cherry picked from commit 2799a5fcd76639a202092ea1b6fc242a8886dc56)
-rw-r--r--heat/engine/resources/openstack/nova/host_aggregate.py1
-rw-r--r--releasenotes/notes/correct-availability-zone-to-be-non-mandatory-069d95042f5ed84f.yaml8
2 files changed, 8 insertions, 1 deletions
diff --git a/heat/engine/resources/openstack/nova/host_aggregate.py b/heat/engine/resources/openstack/nova/host_aggregate.py
index 2b6f0ce81..ee57fe27b 100644
--- a/heat/engine/resources/openstack/nova/host_aggregate.py
+++ b/heat/engine/resources/openstack/nova/host_aggregate.py
@@ -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(
diff --git a/releasenotes/notes/correct-availability-zone-to-be-non-mandatory-069d95042f5ed84f.yaml b/releasenotes/notes/correct-availability-zone-to-be-non-mandatory-069d95042f5ed84f.yaml
new file mode 100644
index 000000000..9e0716e90
--- /dev/null
+++ b/releasenotes/notes/correct-availability-zone-to-be-non-mandatory-069d95042f5ed84f.yaml
@@ -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.