Version information
released Apr 11th 2014
Start using this module
Add this module to your Puppetfile:
mod 'deric-fhgfs', '0.2.5'
Learn more about managing modules with a PuppetfileDocumentation
deric/fhgfs — version 0.2.5 Apr 11th 2014
Puppet FhGFS
This is the puppet-fhgfs module for managing the Fraunhofer Parallel File System (FhGFS)
Usage
You need one mgmtd server:
class { 'fhgfs::mgmtd': }
And probably many storage and meta servers:
class { 'fhgfs::meta':
mgmtd_host => 192.168.1.1,
}
class { 'fhgfs::storage':
mgmtd_host => 192.168.1.1,
}
defining a mount
fhgfs::mount{ 'mnt-share':
cfg => '/etc/fhgfs/fhgfs-client.conf',
mnt => '/mnt/share',
user => 'fhgfs',
group => 'fhgfs',
}
Interfaces
For meta and storage nodes you can specify interfaces for commutication. The passed argument must be an array.
class { 'fhgfs::meta':
mgmtd_host => 192.168.1.1,
interfaces => ['eth0', 'ib0'],
}
class { 'fhgfs::storage':
mgmtd_host => 192.168.1.1,
interfaces => ['eth0', 'ib0']
}
Hiera support
All configuration could be specified in Hiera config files. Some settings are shared between all components, like:
fhgfs::version: '2012.10.r9.debian7'
for module specific setting use correct namespace, e.g.:
fhgfs::meta::interfaces:
- 'eth0'
License
Apache License, Version 2.0
Dependencies
- puppetlabs/apt (>= 1.0.0)
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.