Fix OAM Floating IP warning messages

When editing the OAM Floating IP in Horizon, the warning message does
not mention that the user needs to lock/unlock the controllers for the
changes to be applied. The warning messages now reflects that.

Closes-Bug: 1795960

Change-Id: I9117f768a9d423b538ce01db5659b2015880ef3b
Signed-off-by: Kristine Bujold <kristine.bujold@windriver.com>
This commit is contained in:
Kristine Bujold 2018-10-09 14:58:29 -04:00
parent 204859156f
commit 4d3c301dc3
2 changed files with 5 additions and 6 deletions

View File

@ -1,2 +1,2 @@
SRC_DIR="starlingx-dashboard"
TIS_PATCH_VER=15
TIS_PATCH_VER=16

View File

@ -16,16 +16,15 @@
<div class="right">
<h3>{% trans "Description" %}:</h3>
<p>{% trans "From here you can update the configuration of OAM External IP." %}</p>
<p>{% trans "WARNING: Completion of OAM configuration will take a few minutes." %}</p>
<p>{% trans "In that time, major alarms will be raised and then eventually cleared as affected services receive the new OAM settings. If the Floating IP has changed, you will have to re-login to this web application using the new Floating IP." %}</p>
<p>{% trans "WARNING: Completion of OAM configuration change will require lock and unlock of affected hosts." %}</p>
<p>{% trans "Major Alarms will be raised against the affected hosts until the lock unlock operation is successfully completed." %}</p>
</div>
{% endblock %}
{% block modal-footer %}
<a class="btn btn-default cancel" data-dismiss="modal">{% trans "Cancel" %}</a>
<input class="btn btn-primary btn-danger" type="submit" onclick="return confirm('WARNING: ' +
'Completion of OAM configuration will take a few minutes. ' +
'In that time, major alarms will be raised and then eventually cleared as affected services receive the new OAM settings. '+
'If the Floating IP has changed, you will have to re-login to this web application using the new Floating IP.');"
'Completion of OAM configuration change will require lock and unlock of affected hosts. ' +
'Major Alarms will be raised against the affected hosts until the lock unlock operation is successfully completed.');"
value="{% trans "Save" %}" />
{% endblock %}