From 06274e5ba93f9975a0b73a9c78cf2a4e193d1cf4 Mon Sep 17 00:00:00 2001 From: Steve Baker Date: Wed, 29 Jan 2014 11:06:34 +1300 Subject: [PATCH] Open port 8000 for heat-api-cfn for public neutron net The heat-slow tests are currently failing because nova servers cannot reach heat-api-cfn to signal waitconditions. This change is an attempt to fix that. Change-Id: I08c27dc569b86a73f5aa3ead48569e6a8161e980 --- modules/openstack_project/manifests/slave_template.pp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/openstack_project/manifests/slave_template.pp b/modules/openstack_project/manifests/slave_template.pp index 05d983462c..21ea1f1e33 100644 --- a/modules/openstack_project/manifests/slave_template.pp +++ b/modules/openstack_project/manifests/slave_template.pp @@ -5,6 +5,9 @@ class openstack_project::slave_template ( $ssh_key = $openstack_project::jenkins_ssh_key ) inherits openstack_project { class { 'openstack_project::template': + # Port 8000 from the devstack neutron public net to allow + # nova servers to reach heat-api-cfn + rules4 => ['-p tcp --dport 8000 -s 172.24.4.0/24 -j ACCEPT'], iptables_public_tcp_ports => [], install_users => $install_users, }