Merge "Fix README"

This commit is contained in:
Zuul 2018-10-23 15:39:23 +00:00 committed by Gerrit Code Review
commit 48f22ecf15
1 changed files with 4 additions and 5 deletions

View File

@ -50,11 +50,10 @@ To utilize the nova module's functionality you will need to declare multiple res
```puppet ```puppet
class { 'nova': class { 'nova':
database_connection => 'mysql://nova:a_big_secret@127.0.0.1/nova?charset=utf8', database_connection => 'mysql://nova:a_big_secret@127.0.0.1/nova?charset=utf8',
rabbit_userid => 'nova', api_database_connection => 'mysql://nova:a_big_secret@127.0.0.1/nova_api?charset=utf8',
rabbit_password => 'an_even_bigger_secret', default_transport_url => 'rabbit://nova:an_even_bigger_secret@127.0.0.1:5672/nova',
glance_api_servers => 'localhost:9292', glance_api_servers => 'localhost:9292',
rabbit_host => '127.0.0.1',
} }
class { 'nova::compute': class { 'nova::compute':