From 710acdec96e3f12fdddb7750ac6c40d07317c1b6 Mon Sep 17 00:00:00 2001 From: Arthy Loganathan Date: Thu, 1 Jun 2017 15:16:39 +0530 Subject: Added gdeploy configuration files ad jinja templates for nfs ganesha operations Change-Id: I30f8b464d2193909a0d83daff7ea695b97fb3863 Signed-off-by: Arthy Loganathan --- .../add_node_to_nfs_ganesha_cluster.jinja | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 glustolibs-gluster/gdeploy_configs/add_node_to_nfs_ganesha_cluster.jinja (limited to 'glustolibs-gluster/gdeploy_configs/add_node_to_nfs_ganesha_cluster.jinja') diff --git a/glustolibs-gluster/gdeploy_configs/add_node_to_nfs_ganesha_cluster.jinja b/glustolibs-gluster/gdeploy_configs/add_node_to_nfs_ganesha_cluster.jinja new file mode 100644 index 000000000..e4bc1d8a0 --- /dev/null +++ b/glustolibs-gluster/gdeploy_configs/add_node_to_nfs_ganesha_cluster.jinja @@ -0,0 +1,27 @@ +[hosts]{% for server in servers %} +{{server}}{% endfor %} + +[peer] +action=probe + +#Enabling firewall ports +[firewalld] +action=add +ports=111/tcp,2049/tcp,54321/tcp,5900/tcp,5900-6923/tcp,5666/tcp,16514/tcp +services=glusterfs,nlm,nfs,rpc-bind,high-availability,mountd,rquota +permanent=true +zone=public + +[clients] +action=mount +volname={{ node_to_add }}:/gluster_shared_storage +hosts={{ node_to_add }} +fstype=glusterfs +client_mount_points=/var/run/gluster/shared_storage/ + +[nfs-ganesha] +action=add-node +cluster_nodes={{ cluster_nodes|join(',') }} +nodes={{ node_to_add }} +vip={{ vip }} + -- cgit