sonar

contributions requested
Sonar installation and configuration

15,185 downloads

10,663 latest version

2.4 quality score

Support the Puppet Community by contributing to this module

You are welcome to contribute to this module by suggesting new features, currency updates, or fixes. Every contribution is valuable to help ensure that the module remains compatible with the latest Puppet versions and continues to meet community needs. Complete the following steps:

  1. Review the module’s contribution guidelines and any licenses. Ensure that your planned contribution aligns with the author’s standards and any legal requirements.
  2. Fork the repository on GitHub, make changes on a branch of your fork, and submit a pull request. The pull request must clearly document your proposed change.

For questions about updating the module, contact the module’s author.

Version information

  • 1.0.4 (latest)
  • 1.0.3
  • 1.0.2
  • 1.0.1
  • 1.0.0
released Jan 1st 2014

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'maestrodev-sonar', '1.0.4'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add maestrodev-sonar
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install maestrodev-sonar --version 1.0.4

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download

Documentation

maestrodev/sonar — version 1.0.4 Jan 1st 2014

Puppet-Sonar

NOTE: MOVED TO puppet-sonarqube to support the new versions of SonarQube

A puppet recipe to install Sonar

Usage

class { 'maven::maven' : } ->
class { 'sonar' :
  version => '2.11',
}

or

$jdbc = {
  url               => 'jdbc:derby://localhost:1527/sonar;create=true',
  driver_class_name => 'org.apache.derby.jdbc.ClientDriver',
  validation_query  => 'values(1)',
  username          => 'sonar',
  password          => 'sonar',
}

class { 'maven::maven' : } ->
class { 'sonar' :
  arch         => 'linux-x86-64',
  version      => '2.11',
  user         => 'sonar',
  group        => 'sonar',
  service      => 'sonar',
  installroot  => '/usr/local',
  home         => '/var/local/sonar',
  download_url => 'http://dist.sonar.codehaus.org',
  jdbc         => $jdbc,
  log_folder   => '/var/local/sonar/logs',
}

Sonar Plugins

The sonar::plugin defined type can also be used to install Sonar plugins, e.g.:

sonar::plugin { 'sonar-twitter-plugin' :
  groupid    => 'org.codehaus.sonar-plugins',
  artifactid => 'sonar-twitter-plugin',
  version    => '0.1',
  notify     => Service['sonar'],
}

LDAP Plugin

The sonar class actually includes "built-in" support for the LDAP plugin to make it easier to use, e.g.:

$ldap = {
  url          => 'ldap://myserver.mycompany.com',
  user_base_dn => 'ou=Users,dc=mycompany,dc=com',
}

class { 'sonar' :
  ldap => $ldap,
}

Module requirements

  • maestrodev/wget
  • maestrodev/maven
  • puppetlabs/stdlib

License

Copyright 2011-2013 MaestroDev, Inc

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.