Нет описания

Markus Frosch f0d392476c Enable metadata linting 8 лет назад
manifests 7be6514c4a Document class for lint 8 лет назад
spec 4bbf9aefa6 Add spec tests for config::roles 9 лет назад
templates d91ca34935 Moving away from templates to usign inifile from Puppetlabs/inifile 9 лет назад
.fixtures.yml c4d4c0b35c Use HTTPs links for fixtures 9 лет назад
.gitignore d91e8bdd4c Sync basic module settings with icinga-icinga2 8 лет назад
.mailmap 06301fc668 Add .mailmap and AUTHORS file 8 лет назад
.puppet-lint.rc d91e8bdd4c Sync basic module settings with icinga-icinga2 8 лет назад
.travis.yml 4ca1f7b125 Update travis definitions 8 лет назад
AUTHORS 06301fc668 Add .mailmap and AUTHORS file 8 лет назад
Gemfile f0d392476c Enable metadata linting 8 лет назад
LICENSE 6bc7b1ede6 Initial commit 9 лет назад
README.md 1e5b911d77 Document requirements 9 лет назад
Rakefile f0d392476c Enable metadata linting 8 лет назад
metadata.json 944e648ce5 Bump version to 1.0.5 8 лет назад

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