Skip to content

Commit

Permalink
add services and relations to satisfy required interfaces / workload …
Browse files Browse the repository at this point in the history
…status
  • Loading branch information
Ryan Beisner committed Jan 13, 2016
1 parent 905e892 commit bd44259
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/basic_deployment.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,16 @@ def _add_services(self):
"""
this_service = {'name': 'keystone'}
other_services = [{'name': 'mysql'},
{'name': 'rabbitmq-server'}, # satisfy wrkload stat
{'name': 'cinder'}]
super(KeystoneBasicDeployment, self)._add_services(this_service,
other_services)

def _add_relations(self):
"""Add all of the relations for the services."""
relations = {'keystone:shared-db': 'mysql:shared-db',
'cinder:shared-db': 'mysql:shared-db',
'cinder:amqp': 'rabbitmq-server:amqp',
'cinder:identity-service': 'keystone:identity-service'}
super(KeystoneBasicDeployment, self)._add_relations(relations)

Expand Down

0 comments on commit bd44259

Please sign in to comment.