razorsedge-func

Install and manage Func via puppet


Keywords
rhel, func, fedora, centos, certmaster, oel
License
Apache-2.0
Install
puppet module install razorsedge-func --version 1.3.0

Documentation

Puppet Func Module

master branch: Build Status develop branch: Build Status

Introduction

This module manages the installation and configuration of Func: Fedora Unified Network Controller. Func allows for running commands on remote systems in a secure way, like SSH, but offers several improvements.

Actions:

  • Installs the func package.
  • Manages the overlord.conf and minion.conf files.
  • Starts the func service.

OS Support:

  • RedHat family - tested on CentOS 5.8+ and CentOS 6.3+
  • Debian family - presently unsupported (patches welcome)

Class documentation is available via puppetdoc.

Examples

Top Scope variable (i.e. via Dashboard):

$certmaster_use_puppet_certs = true
$func_use_puppet_certs = true
# Change SSL dir for Puppet Enterprise.
$func_puppetmaster_ssl_dir = '/etc/puppetlabs/puppet'

include 'certmaster'
include 'func::minion'

Parameterized Class:

  • minions
node default {
  class { 'certmaster':
    use_puppet_certs => true,
  }
  class { 'func::minion':
    use_puppet_certs => true,
  }
}
  • overlord
node 'overlord.example.com' {
  class { 'certmaster':
    use_puppet_certs => true,
  }
  class { 'func::minion':
    use_puppet_certs => true,
  }
  class { 'func::overlord':
    use_puppet_certs => true,
  }
}

Notes

  • Requires the razorsedge/cetmaster module even if using Puppet certificate authentication.
  • Requires EPEL for RedHat family hosts.

Issues

  • None

TODO

  • Autopopulate the Func group file (possibly with exported resources?).
  • Figure out how to negate the call to verify_contents in puppet-rspec tests in order to make sure that content is missing from a template.
  • Add firewall support.
  • Make the Puppet client determine $puppetmaster_ssl_dir.

Contributing

Please see DEVELOP.md for contribution information.

License

Please see LICENSE file.

Copyright

Copyright (C) 2012 Mike Arnold mike@razorsedge.org