Skip to content

Commit

Permalink
Fixes:Openstack HA , EVIP user parameter is not set after upgrade fro…
Browse files Browse the repository at this point in the history
…m 2.11 to 2.20

Adding EVIP parameter which was introduced in 2.2 for the
parameters passed to the cmon monitor script. Adding the parameter
in the upgrade path as well.
ClosesBug: 1452483

Change-Id: I7dff47ed1d54d87ebb130133460afa8148951087
  • Loading branch information
Ranjeet R committed May 8, 2015
1 parent afd5769 commit f4895b0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions fabfile/utils/commandline.py
Expand Up @@ -58,6 +58,7 @@ def frame_vnc_openstack_cmd(host_string, cmd="setup-vnc-openstack"):
cfgm_host = get_control_host_string(env.roledefs['cfgm'][0])
cfgm_ip = hstr_to_ip(cfgm_host)
internal_vip = get_openstack_internal_vip()
external_vip = get_openstack_external_vip()

cmd += " --self_ip %s" % self_ip
cmd += " --keystone_ip %s" % keystone_ip
Expand All @@ -78,6 +79,7 @@ def frame_vnc_openstack_cmd(host_string, cmd="setup-vnc-openstack"):
openstack_ip_list = ' '.join([hstr_to_ip(openstack_host)
for openstack_host in env.roledefs['openstack']])
cmd += ' --internal_vip %s' % (internal_vip)
cmd += ' --external_vip %s' % (external_vip)
cmd += ' --mgmt_self_ip %s' % mgmt_self_ip
contrail_internal_vip = get_contrail_internal_vip()
if contrail_internal_vip:
Expand Down

0 comments on commit f4895b0

Please sign in to comment.