Skip to content

Commit

Permalink
Merge pull request #1274 from nuagenetworks/openstack_availability_zo…
Browse files Browse the repository at this point in the history
…ne_fix

Making openstack availability zone optional
  • Loading branch information
Brian Castelli authored Oct 31, 2019
2 parents 662ce55 + c07bee1 commit 25c8d72
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 16 deletions.
17 changes: 2 additions & 15 deletions Documentation/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,8 @@
# Metro Automation Engine Release Notes

## Release 3.3.2
## Release 3.3.3

### Feature Enhancements
* Support Nuage VSD upgrade to 6.0.2 via Metro (METROAE-1121)
* Added support for openstack availability zone

### Resolved Issues
* Fix VSD node information to get Primary VSD information Rather than XMPP node info (METROAE-1093)
* Fixed issue with Active Standy VSTAT deploy with VSD in HA mode
* Add option to skip DNS host resolution checks when DNS servers are not reachable from MetroAE server (METROAE-1117)
* Fix VSC backup error during HA upgrade (METROAE-1120)
* Use correct vCenter variable references (METROAE-1122)
* Fix update of /etc/hosts on VCIN nodes (METROAE-1123)
* Mysql password change errors out while running security hardening (METROAE-1126)
* Fix VSD 'Set upgrade complete flag' fails with non-default csproot password (METROAE-1116)
* Use primary group instead of username when chown of backup dir (METROAE-1118)
* Fixes for portal start up order and docker-compose.yml bug
* VSTAT(ES) in-place upgrade fails with non-default root password (METROAE-1129)
* VSD standby cluster upgrade copies database multiple time on upgrade (METROAE-1130)
* Made openstack availability zone an optional parameter (METROAE-1154)
2 changes: 1 addition & 1 deletion metroae
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -e
# Wrapper around ansible-playbook for the installation of Nuage components
#

METROAE_VERSION="v3.3.2"
METROAE_VERSION="v3.3.3"

CURRENT_DIR=`pwd`
PLAYBOOK_DIR=$CURRENT_DIR/src/playbooks
Expand Down
2 changes: 2 additions & 0 deletions src/roles/common/templates/vsc.j2
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,9 @@ openstack_mgmt_network: {{ item.1.openstack_mgmt_network }}
openstack_mgmt_subnet: {{ item.1.openstack_mgmt_subnet }}
openstack_control_network: {{ item.1.openstack_control_network }}
openstack_control_subnet: {{ item.1.openstack_control_subnet }}
{% if item.1.openstack_availability_zone is defined %}
openstack_availability_zone: {{ item.1.openstack_availability_zone }}
{% endif %}

{% if item.1.openstack_mgmt_port_name is defined %}
openstack_mgmt_port_name: {{ item.1.openstack_mgmt_port_name }}
Expand Down
2 changes: 2 additions & 0 deletions src/roles/common/templates/vsd.j2
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,9 @@ openstack_image: {{ item.openstack_image }}
openstack_flavor: {{ item.openstack_flavor }}
openstack_network: {{ item.openstack_network }}
openstack_subnet: {{ item.openstack_subnet }}
{% if item.openstack_availability_zone is defined %}
openstack_availability_zone: {{ item.openstack_availability_zone }}
{% endif %}
{% if item.openstack_port_name is defined %}
openstack_port_name: {{ item.openstack_port_name }}
{% endif %}
Expand Down
2 changes: 2 additions & 0 deletions src/roles/common/templates/vstat.j2
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,9 @@ openstack_image: {{ item.openstack_image }}
openstack_flavor: {{ item.openstack_flavor }}
openstack_network: {{ item.openstack_network }}
openstack_subnet: {{ item.openstack_subnet }}
{% if item.openstack_availability_zone is defined %}
openstack_availability_zone: {{ item.openstack_availability_zone }}
{% endif %}
{% if item.openstack_port_name is defined %}
openstack_port_name: {{ item.openstack_port_name }}
{% endif %}
Expand Down

0 comments on commit 25c8d72

Please sign in to comment.