From fd250d58bd01953b60f77970cedb811b0e3873c5 Mon Sep 17 00:00:00 2001 From: Daneyon Hansen Date: Tue, 24 Mar 2015 07:47:34 +0000 Subject: [PATCH] Adds Rabbit and MariaDB TCP ports to Heat template Previously, Heat was not allowing the necessary TCP ports for RabbitMQ and MariaDB to Kolla nodes. Change-Id: If34ca2de2e5213cb97138e5855cc88ff5c564b76 --- devenv/kollanode.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/devenv/kollanode.yaml b/devenv/kollanode.yaml index 7d1a7fbcbb..b3e4207337 100644 --- a/devenv/kollanode.yaml +++ b/devenv/kollanode.yaml @@ -75,6 +75,12 @@ resources: type: "OS::Neutron::SecurityGroup" properties: rules: + - protocol: tcp + port_range_min: 5672 + port_range_max: 5672 + - protocol: tcp + port_range_min: 3306 + port_range_max: 3306 - protocol: tcp port_range_min: 8773 port_range_max: 8776