No Description

Michael Friedrich 06301fc668 Add .mailmap and AUTHORS file 8 years ago
manifests 4a88d7325f Allowing to purge the confiruration directory 8 years ago
spec 4bbf9aefa6 Add spec tests for config::roles 8 years ago
templates d91ca34935 Moving away from templates to usign inifile from Puppetlabs/inifile 9 years ago
.fixtures.yml c4d4c0b35c Use HTTPs links for fixtures 9 years ago
.gitignore 6bc7b1ede6 Initial commit 9 years ago
.mailmap 06301fc668 Add .mailmap and AUTHORS file 8 years ago
.puppet-lint.rc 6bc7b1ede6 Initial commit 9 years ago
.travis.yml a8eeb9c2ac TravisCI: allow puppet 2.7 to fail 8 years ago
AUTHORS 06301fc668 Add .mailmap and AUTHORS file 8 years ago
Gemfile 6bc7b1ede6 Initial commit 9 years ago
LICENSE 6bc7b1ede6 Initial commit 9 years ago
README.md 1e5b911d77 Document requirements 9 years ago
Rakefile ccead4cbf8 Add unit tests 9 years ago
metadata.json 944e648ce5 Bump version to 1.0.5 8 years ago

README.md

Puppet icingaweb2

Requirements

Debian and derivatives only:

Example usage

Install IcingaWeb2

node /box/ {
  include icingaweb2
}

Install method: packages

node /box/ {
  class { 'icingaweb2':
    install_method => 'package',
  }
}

Install method: Git

node /box/ {
  class { 'icingaweb2':
    install_method => 'git',
  }
}

Manage repository

node /box/ {
  class { 'icingaweb2':
    manage_repo    => true,
    install_method => 'package',
  }
}

Business process module

node /box/ {
  class {
    'icingaweb2':;
    'icingaweb2::mod::businessprocess':;
  }
}

Deployment module

node /box/ {
  class {
    'icingaweb2':;
    'icingaweb2::mod::deployment':
      auth_token => 'secret_token';
  }
}

Graphite module

node /box/ {
  class {
    'icingaweb2':;
    'icingaweb2::mod::graphite':
      graphite_base_url => 'http://graphite.com/render?';
  }
}

NagVis module

node /box/ {
  class {
    'icingaweb2':;
    'icingaweb2::mod::nagvis':
      nagvis_url => 'http://example.org/nagvis/';
  }
}

Contributing

  • Fork it
  • Create a feature branch (git checkout -b my-new-feature)
  • Run rspec tests (bundle exec rake spec)
  • Commit your changes (git commit -am 'Added some feature')
  • Push to the branch (git push origin my-new-feature)
  • Create new Pull Request