Add missing property on magnum plugin

Since Magnum 1.15 users can set 'floating_ip_enabled' property on
Magnum cluster templates [1].

This patch ensures the possibility to enable the mentioned property
within Magnum tasks.

[1]: https://github.com/openstack/magnum/blob/master/magnum/objects/cluster_template.py#L41

Change-Id: Icd77d369dfc6a6f3f4837772fe3724c2bac1e0b3
This commit is contained in:
kaiokassiano 2018-12-04 23:25:33 -03:00
parent c3d1f032c1
commit 6df840a572
2 changed files with 4 additions and 0 deletions

View File

@ -26,6 +26,7 @@ Added
* Added barbican scenarios.
* Added octavia scenarios.
* Support for osprofiler config in Devstack plugin.
* Added property 'floating_ip_enabled' in magnum cluster_templates context.
Changed
~~~~~~~

View File

@ -92,6 +92,9 @@ class ClusterTemplateGenerator(context.Context):
},
"master_lb_enabled": {
"type": "boolean"
},
"floating_ip_enabled": {
"type": "boolean"
}
},
"required": ["image_id", "external_network_id", "coe"],