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

application_wlp (2) Versions 0.1.0

Deploys and configures applications to WebSphere Application Server Liberty Profile

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

Description

The application_wlp cookbook deploys applications to the WebSphere Application Server Liberty Profile.

Note that this cookbook provides the Liberty Profile specific bindings for the application cookbook; you will find general documentation in that cookbook.

Requirements

Platform:

  • Debian
  • Ubuntu
  • Centos
  • Redhat

Cookbooks:

  • application (~> 3.0)
  • wlp

Resources

The LWRPs provided by this cookbook are not meant to be used by themselves; make sure you are familiar with the application cookbook before proceeding.

wlp_application

Attribute Parameters

  • server_name:
  • features: Defaults to <code>[]</code>.
  • application_location:
  • config:
  • server_config: Defaults to <code>{"httpEndpoint"=>{"id"=>"defaultHttpEndpoint", "host"=>"*", "httpPort"=>"9080", "httpsPort"=>"9443"}}</code>.

Usage

Deploy an application to Liberty:

application "my-app" do
  path "/usr/local/my-app"
  repository "/nas/distro/my-app.war"
  revision "..."
        scm_provider Chef::Provider::File::Deploy

  wlp_application do
      server_name "MyAppServer"
      features [ "jsp-2.2", "servlet-3.0" ]
  end
end

If you need to provide custom application configuration you can provide your own server.xml configuration:

application "my-app" do
  path "/usr/local/my-app"
  repository "/nas/distro/my-app.war"
  revision "..."
        scm_provider Chef::Provider::File::Deploy

  wlp_application do
      server_name "MyAppServer"
      config ({
        "featureManager" => { 
          "feature" => ["jsp-2.2" ] },
        "application" => {
          "name" => "myApp",
          "location" => "/usr/local/my-app/current/my-app.war" }
      })
  end
end

Support

Use the issue tracker for reporting any bugs or enhancements. For any questions please use the WASdev forum.

The cookbook is maintained by IBM.

Notice

© Copyright IBM Corporation 2013.

License

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.

Dependent cookbooks

wlp >= 0.0.0
application ~> 3.0

Contingent cookbooks

There are no cookbooks that are contingent upon this one.

No quality metric results found