From f9aaa75e45140f5f6692b371066a009b037fedef Mon Sep 17 00:00:00 2001 From: James Shubin Date: Thu, 23 Aug 2012 16:00:33 -0400 Subject: Cleaned up examples and added ::client. --- examples/client-example.pp | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 examples/client-example.pp (limited to 'examples/client-example.pp') diff --git a/examples/client-example.pp b/examples/client-example.pp new file mode 100644 index 0000000..2e3c8d8 --- /dev/null +++ b/examples/client-example.pp @@ -0,0 +1,21 @@ +# gluster::client example +# This is the recommended way of mounting puppet-gluster. +# NOTE: It makes sense to use the VIP as the server to mount from, since it +# stays HA if one of the other nodes goes down. + +# mount a share on one of the gluster hosts (note the added require) +$annex_loc_vip_1 = '172.16.1.80' +gluster::client { '/mnt/gshared': + server => "${annex_loc_vip_1}:/gshared", + rw => true, + mounted => true, + require => Gluster::Volume['gshared'], # TODO: too bad this can't ensure it's started +} + +# mount a share on a client somewhere +gluster::client { '/mnt/some_mount_point': + server => "${annex_loc_vip_1}:/some_volume_name", + rw => true, + mounted => true, +} + -- cgit