cookbook 'sonarqube_server', '~> 0.1.1'
sonarqube_server (2) Versions 0.1.1 Follow3
Installs/Configures sonarqube_server
cookbook 'sonarqube_server', '~> 0.1.1', :supermarket
knife supermarket install sonarqube_server
knife supermarket download sonarqube_server
Description
Install and configure SonarQube code analysis tool.
SonarQube requires Java but this cookbook does not install Java. If you do not
already have a Java cookbook, look at the
Java cookbook.
Currently only supports Red Hat-based distributions. Support for Debian-based
distributions is in the plans.
Usage
To install a stock Sonarqube server, create a recipe such as the following:
include_recipe 'java' # Install the latest version of SonarQube with default properties # including H2 database (not recommended for production installation) sonarqube_server 'sonar' do notifies :restart, 'service[sonar]' end # Create a Sonar service. This is required if you want Sonar to start. service 'sonar' do action [:enable, :start] supports status: true, restart: true, reload: true end
The following snippet shows how to customize the installation including
configuration properties. The properties
attribute under config_options
should be created as a Ruby hash where the nested hashes represent the dot-notated
property key. For example, the property key for database username is
sonar.jdbc.username
and is represented in the Ruby hash as seen below. Any
configuration property Sonar supports will work.
sonarqube_server 'sonar' do baseurl 'http://sonar.example.com/downloads/rpm' version '5.1.2-1' config_options do properties( 'sonar' => { 'jdbc' => { 'username' => 'sonar_custom', 'password' => 'super_secret', 'url' => 'jdbc:mysql://localhost:3306/sonar?useUnicode=true&characterEncoding=utf8&rewriteBatchedStatements=true&useConfigs=maxPerformance' }, 'web' => { 'javaOpts' => '-Xmx1024m -XX:MaxPermSize=160m -XX:+HeapDumpOnOutOfMemoryError -server' } } ) end notifies :restart, 'service[sonar]' end
Development
Generating Documentation
DO NOT EDIT THIS README.md file directly. This file is generated using knife-cookbook-doc plugin.
Install this plugin with gem install knife-cookbook-doc
.
Documentation is compiled from the following sources:
- Derived for attributes/recipes either by scanning the source code or by explicit declaration in metadata.rb
- Markdown files in the doc/ directory (overview is always the first to be compiled)
To edit this README:
- Change relevant sections within the markdown files in the doc/ directory
- Edit metadata.rb or use inline annotated comments within the source code. For more info on inline comments click here
- Generate new README using knife-cookbook-doc plugin and push changes to remote branch. For more info on using the knife-cookbook-doc plugin click here.
Testing
Code Style
To run style tests (Rubocop and Foodcritic):
rake style
If you want to run either Rubocop or Foodcritic separately, specify the style
test type (Rubocop = ruby, Foodcritic = chef)
rake style:chef
or
rake style:ruby
RSpec tests
Run RSpec unit tests
rake spec
Test Kitchen
Run Test Kitchen tests (these tests take quite a bit of time)
rake integration:vagrant
If the cookbook has tests that run in EC2
rake integration:cloud
Forking
If you choose to fork this cookbook here are some good tips to keep things in
order
- Fork the cookbook before cloning.
- Clone the forked repo, not the original.
- Once the fork is cloned, go to the repo directory and add an
upstream
remotegit remote add upstream git@gitlab.example.com:cookbooks/this_cookbook.git
Now you can pull upstream
changes (things merged into the main cookbook repo).
Note that you will also need to push to your fork's master to keep it updated.
The alias below will help you. After adding the alias you will simply be able to
run git-reup
and it will pull the upstream changes and push them to
your fork. Then checkout a branch and work as normal.
Add the following alias in ~/.bash_profile
.
alias git-reup='git checkout master && git pull upstream master && git push origin master'
Requirements
Platform:
No platforms defined
Cookbooks:
- poise (~> 2.0)
- java (~> 1.31)
- yum (~> 3.6)
Attributes
No attributes defined
Recipes
No recipes defined
License and Maintainer
Maintainer:: Drew A. Blessing (cookbooks@blessing.io)
License:: Apache 2
Dependent cookbooks
poise ~> 2.0 |
java ~> 1.31 |
yum ~> 3.6 |
Contingent cookbooks
There are no cookbooks that are contingent upon this one.
Changelog
0.1.0
- Initial release
Collaborator Number Metric
0.1.1 failed this metric
Failure: Cookbook has 0 collaborators. A cookbook must have at least 2 collaborators to pass this metric.
Contributing File Metric
0.1.1 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a CONTRIBUTING.md file
Foodcritic Metric
0.1.1 passed this metric
No Binaries Metric
0.1.1 passed this metric
Testing File Metric
0.1.1 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a TESTING.md file
Version Tag Metric
0.1.1 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must include a tag that matches this cookbook version number
0.1.1 failed this metric
0.1.1 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a CONTRIBUTING.md file
Foodcritic Metric
0.1.1 passed this metric
No Binaries Metric
0.1.1 passed this metric
Testing File Metric
0.1.1 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a TESTING.md file
Version Tag Metric
0.1.1 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must include a tag that matches this cookbook version number
0.1.1 passed this metric
0.1.1 passed this metric
Testing File Metric
0.1.1 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a TESTING.md file
Version Tag Metric
0.1.1 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must include a tag that matches this cookbook version number
0.1.1 failed this metric
0.1.1 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must include a tag that matches this cookbook version number