From 9f5c39cdcf79a435ded68e57ea6444e86359fc31 Mon Sep 17 00:00:00 2001 From: Tobias Urdin Date: Tue, 28 Jan 2020 15:03:23 +0100 Subject: [PATCH] Fix README These params doesn't exist anymore. Change-Id: I6f7b7e136a92fc4d2efceeb9f7f08c7e755cb65a Closes-Bug: 1664754 --- README.md | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 8b214b386..b23412cc1 100644 --- a/README.md +++ b/README.md @@ -50,17 +50,19 @@ To utilize the neutron module's functionality you will need to declare multiple ```puppet # enable the neutron service -class { 'neutron': - enabled => true, - bind_host => '127.0.0.1', - default_transport_url => 'rabbit://neutron:passw0rd@localhost:5672/neutron', - debug => false, +class { '::neutron': + enabled => true, + bind_host => '127.0.0.1', + default_transport_url => 'rabbit://neutron:passw0rd@localhost:5672/neutron', + debug => false, } -# configure authentication class { 'neutron::server': - auth_password => 'keystone_neutron_secret', - sql_connection => 'mysql+pymysql://neutron:neutron_sql_secret@127.0.0.1/neutron?charset=utf8', + database_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