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

jboss-deploy (3) Versions 0.3.0

Deploy applications to Jboss-eap

Policyfile
Berkshelf
Knife
cookbook 'jboss-deploy', '= 0.3.0', :supermarket
cookbook 'jboss-deploy', '= 0.3.0'
knife supermarket install jboss-deploy
knife supermarket download jboss-deploy
README
Dependencies
Changelog
Quality 0%

jboss-deploy Cookbook

This cookbook deploys war files in jboss-eap server for both standalone and domain modes.

Requirements

Platforms

  • RHEL/CentOS
  • jboss-eap 6.4

Chef

  • Chef 12.0 or later

Attributes

jboss-deploy::default

Custom Resources

deployer

The full syntax for all the properties that are available to the deployer resource is:


deployer 'name' do

      file_loc      String, default: '/tmp'
      owner         String, default: 'root'
      group         String, default: 'root'
      mode          String, default: '644'
      package_url   String
      checksum      String
      module_name   String
      host          String, default: '127.0.0.1'
      offset        Integer, default: 0
      jboss_mode    String, default: 'standalone'
      jboss_home    String, default: '/opt/jboss/'
      mgmtport      Integer, default: 9999
      action        Symbol, default: deploy

end

where

  • file_loc - determines the package download location. (temporary)
  • owner - the OS user.
  • group - the OS user group.
  • mode - defines the permissions.
  • package_url - the package URL.
  • checksum - the checksum of the package. (sha256)
  • module_name - defines the name of the module.
  • host - the host name for cli access.
  • offset - specifies the offset of the jboss instances.
  • jboss_mode - defines the jboss mode, default standalone.
  • jboss_home - Jboss home directory.
  • mgmtport - Jboss management port.
  • action must be set as deploy or undeploy.

jmodule

(Supports on standalone and domain modes.)

The full syntax for all the properties that are available to the jmodule resource is:


jmodule 'name' do

      owner             String, default: 'root'
      module_name       String
      host              String, default: '127.0.0.1'
      offset            Integer, default: 0
      jboss_home        String, default: '/opt/jboss/'
      mgmtport          Integer, default: 9999
      jdbc_loc          String
      dep_list          String
      jdbc_driver_name  String
      class_name        String
      action            Symbol, default: create

end


where

  • owner - the OS user.
  • module_name - defines the name of the module
  • host - the host name for cli access.
  • offset - specifies the offset of the jboss instances.
  • jboss_home - Jboss home directory.
  • mgmtport - Jboss management port.
  • jdbc_loc - jdbc driver location.
  • dep_list - specifies the list of dependencies.
  • jdbc_driver_name - defines the driver name.
  • class_name - defines the fully qualified class.
  • action must be set as create.

datasource

(Supports on standalone and domain modes.)

The full syntax for all the properties that are available to the datasource resource is:


datasource 'name' do

      owner             String, default: 'root'
      host              String, default: '127.0.0.1'
      offset            Integer, default: 0
      jboss_home        String, default: '/opt/jboss/'
      mgmtport          Integer, default: 9999
      jdbc_loc          String
      dep_list          String
      jdbc_driver_name  String
      class_name        String
      username          String
      password          String
      action            Symbol, default: create

end

  • owner - the OS user.
  • module_name - defines the name of the module
  • host - the host name for cli access.
  • offset - specifies the offset of the jboss instances.
  • jboss_home - Jboss home directory.
  • mgmtport - Jboss management port.
  • jdbc_loc - jdbc driver location.
  • dep_list - specifies the list of dependencies.
  • jdbc_driver_name - defines the driver name.
  • class_name - defines the fully qualified class.
  • username - database user name.
  • password - database password.
  • action must be set as create.

Usage

jboss-deploy::default

Just include jboss-deploy in your node's run_list:

{
  "name":"my_node",
  "run_list": [
    "recipe[jboss-deploy]"
  ]
}

Clone

git clone https://github.com/jantwisted/chef-jboss-deploy.git

Contributing

  1. Fork the repository on Github
  2. Create a named feature branch (like add_component_x)
  3. Write your change
  4. Write tests for your change (if applicable)
  5. Run the tests, ensuring they all pass
  6. Submit a Pull Request using Github

License and Authors

Authors: Janith (janith@member.fsf.org)

Dependent cookbooks

This cookbook has no specified dependencies.

Contingent cookbooks

There are no cookbooks that are contingent upon this one.

jboss-deploy CHANGELOG

This file is used to list changes made in each version of the jboss-deploy cookbook.

0.1.0

  • [Janith] - Initial release of jboss-deploy.

0.2.0

  • [Janith] - Supports Jboss Jboss domain mode.

Check the Markdown Syntax Guide for help with Markdown.

The Github Flavored Markdown page describes the differences between markdown on github and standard markdown.

Collaborator Number Metric
            

0.3.0 failed this metric

Failure: Cookbook has 0 collaborators. A cookbook must have at least 2 collaborators to pass this metric.

Foodcritic Metric
            

0.3.0 failed this metric

FC002: Avoid string interpolation where not required: /tmp/a4df74ce3dd4df636149fb83/jboss-deploy/resources/datasource.rb:22
FC002: Avoid string interpolation where not required: /tmp/a4df74ce3dd4df636149fb83/jboss-deploy/resources/deployer.rb:36
FC002: Avoid string interpolation where not required: /tmp/a4df74ce3dd4df636149fb83/jboss-deploy/resources/deployer.rb:52
FC002: Avoid string interpolation where not required: /tmp/a4df74ce3dd4df636149fb83/jboss-deploy/resources/module.rb:21
FC002: Avoid string interpolation where not required: /tmp/a4df74ce3dd4df636149fb83/jboss-deploy/resources/module.rb:30
FC016: LWRP does not declare a default action: /tmp/a4df74ce3dd4df636149fb83/jboss-deploy/resources/datasource.rb:1
FC016: LWRP does not declare a default action: /tmp/a4df74ce3dd4df636149fb83/jboss-deploy/resources/deployer.rb:1
FC016: LWRP does not declare a default action: /tmp/a4df74ce3dd4df636149fb83/jboss-deploy/resources/module.rb:1