Ryan Barry has uploaded a new change for review. Change subject: Get gluster working on node. ......................................................................
Get gluster working on node. Even though glusterd started by default, the correct ports for probing and managing it weren't open. Opening them lets engine manage gluster on the nodes, and external clients mount it, as well as making the nodes able to be probed. Change-Id: I5ccb91585e55216eccc633f246eca05d0e72625e Signed-off-by: Ryan Barry <[email protected]> --- M recipe/centos6-post.ks M recipe/ovirt19-post.ks 2 files changed, 6 insertions(+), 0 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-node refs/changes/66/25866/1 diff --git a/recipe/centos6-post.ks b/recipe/centos6-post.ks index 8de943b..6473079 100644 --- a/recipe/centos6-post.ks +++ b/recipe/centos6-post.ks @@ -36,6 +36,9 @@ -A INPUT -p tcp --dport 16514 -j ACCEPT # SSH -A INPUT -p tcp --dport 22 -j ACCEPT +# gluster +-A INPUT -p tcp --dport 24007 -j ACCEPT +-A INPUT -p dcp --dport 24009:24109 -j ACCEPT # guest consoles -A INPUT -p tcp -m multiport --dports 5634:6166 -j ACCEPT # migration diff --git a/recipe/ovirt19-post.ks b/recipe/ovirt19-post.ks index ab2ae18..06eed77 100644 --- a/recipe/ovirt19-post.ks +++ b/recipe/ovirt19-post.ks @@ -68,6 +68,9 @@ -A INPUT -p tcp --dport 16514 -j ACCEPT # SSH -A INPUT -p tcp --dport 22 -j ACCEPT +# gluster +-A INPUT -p tcp --dport 24007 -j ACCEPT +-A INPUT -p tcp --dport 24009:24109 -j ACCEPT # guest consoles -A INPUT -p tcp -m multiport --dports 5634:6166 -j ACCEPT # migration -- To view, visit http://gerrit.ovirt.org/25866 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I5ccb91585e55216eccc633f246eca05d0e72625e Gerrit-PatchSet: 1 Gerrit-Project: ovirt-node Gerrit-Branch: master Gerrit-Owner: Ryan Barry <[email protected]> _______________________________________________ node-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/node-patches
