Merge "Drop use of deprecated neutron auth options"

This commit is contained in:
Jenkins
2016-01-26 15:55:37 +00:00
committed by Gerrit Code Review

View File

@@ -1,12 +1,12 @@
$nova_neutron_cfg_ctrl_host = hiera('CONFIG_KEYSTONE_HOST_URL')
class { '::nova::network::neutron':
neutron_admin_password => hiera('CONFIG_NEUTRON_KS_PW'),
neutron_auth_strategy => 'keystone',
neutron_url => "http://${nova_neutron_cfg_ctrl_host}:9696",
neutron_admin_tenant_name => 'services',
neutron_admin_auth_url => hiera('CONFIG_KEYSTONE_PUBLIC_URL'),
neutron_region_name => hiera('CONFIG_KEYSTONE_REGION'),
neutron_password => hiera('CONFIG_NEUTRON_KS_PW'),
neutron_auth_plugin => 'password',
neutron_url => "http://${nova_neutron_cfg_ctrl_host}:9696",
neutron_tenant_name => 'services',
neutron_auth_url => hiera('CONFIG_KEYSTONE_ADMIN_URL'),
neutron_region_name => hiera('CONFIG_KEYSTONE_REGION'),
}
class { '::nova::compute::neutron':