dashboard: use puppet-horizon from upstream

- Update fixtures and Puppet file
- Update cloud::dashboard

Close bug #367
Signed-off-by: Emilien Macchi <emilien.macchi@enovance.com>
This commit is contained in:
Emilien Macchi 2014-03-26 14:41:17 +01:00
parent d4facd879f
commit fbda7fd387
4 changed files with 17 additions and 16 deletions

View File

@ -14,7 +14,7 @@ fixtures:
ref: '001f1b6a8ef6bd0fde8fbe0a4b3362f31e6bbcda'
'horizon':
repo: 'git://github.com/enovance/puppet-horizon'
ref: 'origin/backport_of_I39b52b2b_I813b5f60'
ref: '20e8cfdb082edd938d957406ac85cabe227f0cbe'
'swift':
repo: 'git://github.com/enovance/puppet-swift'
ref: '9b60581a1c8fd2c1a98adafc1bcdc53796859e23'

View File

@ -29,10 +29,9 @@ mod 'glance',
mod 'heat',
:git => 'git://github.com/enovance/puppet-heat.git',
:ref => 'bdf094da21161ec6f78530775a0c41fc76fd3339'
#FIXME
mod 'horizon',
:git => 'git://github.com/enovance/puppet-horizon.git',
:ref => 'backport_of_I39b52b2b_I813b5f60'
:ref => '20e8cfdb082edd938d957406ac85cabe227f0cbe'
mod 'keystone',
:git => 'git://github.com/enovance/puppet-keystone.git',
:ref => '9802add6566646dc1e4a2812d19c2ab4724ff594'

View File

@ -100,18 +100,19 @@ class cloud::dashboard(
# fqdn can can be ambiguous since we use reverse DNS here,
# e.g: 127.0.0.1 instead of a public IP address.
# We force $api_eth to avoid this situation
fqdn => $api_eth,
servername => $servername,
bind_address => $api_eth,
swift => true,
keystone_url => $keystone_url,
cache_server_ip => false,
django_debug => $debug,
neutron_options => { 'enable_lb' => true },
listen_ssl => $listen_ssl,
horizon_cert => $horizon_cert,
horizon_key => $horizon_key,
horizon_ca => $horizon_ca
fqdn => $api_eth,
servername => $servername,
bind_address => $api_eth,
swift => true,
keystone_url => $keystone_url,
cache_server_ip => false,
django_debug => $debug,
neutron_options => { 'enable_lb' => true },
listen_ssl => $listen_ssl,
horizon_cert => $horizon_cert,
horizon_key => $horizon_key,
horizon_ca => $horizon_ca,
vhost_extra_params => { 'add_listen' => false }
}
if ($::osfamily == 'Debian') {

View File

@ -47,7 +47,8 @@ describe 'cloud::dashboard' do
:cache_server_ip => false,
:keystone_url => 'http://keystone.openstack.org:5000/v2.0',
:django_debug => true,
:neutron_options => { 'enable_lb' => true }
:neutron_options => { 'enable_lb' => true },
:vhost_extra_params => { 'add_listen' => false }
)
end
end