Fix README

These params doesn't exist anymore.

Change-Id: I6f7b7e136a92fc4d2efceeb9f7f08c7e755cb65a
Closes-Bug: 1664754
This commit is contained in:
Tobias Urdin 2020-01-28 15:03:23 +01:00
parent 0c2dc49654
commit 9f5c39cdcf

View File

@ -50,17 +50,19 @@ To utilize the neutron module's functionality you will need to declare multiple
```puppet ```puppet
# enable the neutron service # enable the neutron service
class { 'neutron': class { '::neutron':
enabled => true, enabled => true,
bind_host => '127.0.0.1', bind_host => '127.0.0.1',
default_transport_url => 'rabbit://neutron:passw0rd@localhost:5672/neutron', default_transport_url => 'rabbit://neutron:passw0rd@localhost:5672/neutron',
debug => false, debug => false,
} }
# configure authentication
class { 'neutron::server': class { 'neutron::server':
auth_password => 'keystone_neutron_secret', database_connection => 'mysql+pymysql://neutron:neutron_sql_secret@127.0.0.1/neutron?charset=utf8',
sql_connection => 'mysql+pymysql://neutron:neutron_sql_secret@127.0.0.1/neutron?charset=utf8', }
class { 'neutron::keystone::authtoken':
password => 'keystone_neutron_secret',
} }
# ml2 plugin with vxlan as ml2 driver and ovs as mechanism driver # ml2 plugin with vxlan as ml2 driver and ovs as mechanism driver