Skip to content

Commit

Permalink
Merge "increase_ulimits task needs to be executed on the openstack no…
Browse files Browse the repository at this point in the history
…des, so moving it to the setup_orchestrator task."
  • Loading branch information
Zuul authored and opencontrail-ci-admin committed Dec 7, 2014
2 parents bbab725 + 38f86c4 commit cc1a8f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fabfile/tasks/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -502,6 +502,7 @@ def create_install_repo_node(*args):
def install_orchestrator():
if get_orchestrator() is 'openstack':
execute(install_openstack)
execute(update_keystone_log)

@roles('build')
@task
Expand All @@ -518,7 +519,6 @@ def install_contrail(reboot='True'):
execute(install_webui)
execute(install_vrouter)
execute(upgrade_pkgs)
execute(update_keystone_log)
if getattr(env, 'interface_rename', True):
print "Installing interface Rename package and rebooting the system."
execute(install_interface_name, reboot)
Expand Down
2 changes: 1 addition & 1 deletion fabfile/tasks/provision.py
Original file line number Diff line number Diff line change
Expand Up @@ -1482,6 +1482,7 @@ def cleanup_remote_syslog_node():
def setup_orchestrator():
orch = get_orchestrator()
if orch == 'openstack':
execute('increase_ulimits')
execute('setup_openstack')
if get_openstack_internal_vip():
execute('sync_keystone_ssl_certs')
Expand All @@ -1498,7 +1499,6 @@ def setup_all(reboot='True'):
execute('setup_ha')
execute('setup_rabbitmq_cluster')
execute('increase_limits')
execute('increase_ulimits')
execute('setup_database')
execute('verify_database')
execute('setup_orchestrator')
Expand Down

0 comments on commit cc1a8f8

Please sign in to comment.