Merge "Added create_all command to riak example"

This commit is contained in:
Jenkins 2016-01-07 09:27:31 +00:00 committed by Gerrit Code Review
commit 838b303b6b

View File

@ -250,10 +250,17 @@ def undeploy():
raise NotImplemented("Not yet")
@click.command()
def create_all():
setup_riak()
setup_haproxies()
main.add_command(deploy)
main.add_command(undeploy)
main.add_command(add_haproxies)
main.add_command(add_solar_agent)
main.add_command(create_all)
if __name__ == '__main__':