Adoptable Cookbooks List

Looking for a cookbook to adopt? You can now see a list of cookbooks available for adoption!
List of Adoptable Cookbooks

Supermarket Belongs to the Community

Supermarket belongs to the community. While Chef has the responsibility to keep it running and be stewards of its functionality, what it does and how it works is driven by the community. The chef/supermarket repository will continue to be where development of the Supermarket application takes place. Come be part of shaping the direction of Supermarket by opening issues and pull requests or by joining us on the Chef Mailing List.

Select Badges

Select Supported Platforms

Select Status

RSS

bonita (4) Versions 0.1.2

Installs/Configures the bonita BPM server

Policyfile
Berkshelf
Knife
cookbook 'bonita', '= 0.1.2', :supermarket
cookbook 'bonita', '= 0.1.2'
knife supermarket install bonita
knife supermarket download bonita
README
Dependencies
Quality -%

Description

Build Status

Download BonitaSoft from a remote location and install it into the tomcat directories according to the directions. The
cookbook has been tested with the "Subscription Pack" version of the Bonita product. First you need to download the
"Bonita Open Solution Deployment" package from the downloads page (http://www.bonitasoft.com/products/BPM_downloads/all)
and upload it to a local location. We install it in a local Maven repository with coordinates
"com.bonitasoft:bonitasoft-server-sp:5.7.1:tomcat:zip".

Unfortunately the install can not be completely automated as BonitaSoft requires that you generate a license for the
specific host that the product is deployed upon. So after the initial install you need to generate a license key as per
the directions given by BonitaSoft (i.e. Run either /usr/local/bonita-x.x.x/licenses/generateRequestForAnyEnvironment.sh
or /usr/local/bonita-x.x.x/licenses/generateRequestForDevelopmentEnvironment.sh and send of request to bonita and wait
for a response). The license needs to be made available over http. We make this license also available in a local Maven
repository.

The cookbook has only been tested when deploying to MS SQL server but it is expected that modifying the configuration
settings will make the cookbook work with other database vendors.

Attributes

  • node['bonita']['package_url'] - The url to package containing the bonita software. Must be specified.
  • node['bonita']['license_url'] - The url to the license file for the bonita software.
  • node['bonita']['logging_properties'] - A map of properties merged into the logging configuration.
  • node['bonita']['database']['hibernate']['dialect'] - = 'org.hibernate.dialect.SQLServerDialect'.
  • node['bonita']['database']['exo_jcr']['dialect'] - The xCMIS jcr dialect. Defaults to 'mssql'.
  • node['bonita']['database']['hibernate']['interceptor'] - The Bonita hibernate interceptor. Defaults to 'org.ow2.bonita.env.interceptor.MSSQLServerDescNullsFirstInterceptor'.
  • node['bonita']['database']['jdbc']['driver'] - The class name of the database driver. Defaults to 'net.sourceforge.jtds.jdbc.Driver'.
  • node['bonita']['database']['jdbc']['history']['url'] - The database jdbc url for bonita history database. Must be specified.
  • node['bonita']['database']['jdbc']['history']['schema'] - The database schema for the bonita history database. May be specified.
  • node['bonita']['database']['jdbc']['journal']['url'] - The database jdbc url for bonita journal database. Must be specified.
  • node['bonita']['database']['jdbc']['journal']['schema'] - The database schema for the bonita journal database. May be specified.
  • node['bonita']['database']['jdbc']['xcmis']['url'] - The database jdbc url for xcmis. Must be specified.
  • node['bonita']['database']['jdbc']['username'] - The database username.
  • node['bonita']['database']['jdbc']['password'] - The database username.
  • node['bonita']['xcmis']['username'] - The xCMIS username.
  • node['bonita']['xcmis']['password'] - The xCMIS password.

Usage

Here is some example properties defined on a role that includes bonita.

:bonita =>
  {
    :package_url => 'http://repo.example.com/com/bonitasoft/bonitasoft-server-sp/5.6/bonitasoft-server-sp-5.6-tomcat.zip',
    :license_url => 'http://repo.example.com/com/bonitasoft/bonitasoft-server-sp/license/5.6/license-5.6-MyUser-bonita.example.com-20111128-20120226.lic',
    :extra_libraries => ['http://repo.example.com/net/sourceforge/jtds/jtds/1.2.4/jtds-1.2.4.jar'],
    :database =>
      {
        :jdbc =>
          {
            :journal => {:url => 'jdbc:jtds:sqlserver://db.example.com/BONITA', :schema => 'journal'},
            :history => {:url => 'jdbc:jtds:sqlserver://db.example.com/BONITA', :schema => 'history'},
            :xcmis => {:url => 'jdbc:jtds:sqlserver://db.example.com/xCMIS'},
            :username => 'username',
            :password => 'password',
          }
      },
  :xcmis =>
    {
      :username => 'xcmis_username',
      :password => 'xcmis_password'
    }
  }

Dependent cookbooks

tomcat >= 0.0.0

Contingent cookbooks

There are no cookbooks that are contingent upon this one.

No quality metric results found