Sem descrição

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

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