ibm-messaging / mq-chef

Chef cookbook for installing and configuring IBM® MQ
Apache License 2.0
14 stars 11 forks source link
chef-cookbook ibm-mq

IBM MQ cookbook

Build Status

The IBM MQ cookbook is a library cookbook that provides custom resources for use in your own recipes. This cookbook is currently experimental, therefore we recommend that if you want to use this cookbook, that you either pin the version you use, or create your own fork first.

Requirements

Platform Support

The following platforms have been tested with Test Kitchen:

Cookbook Dependencies

Usage

  1. Add depends 'ibm_mq' to your cookbook's metadata.rb
  2. Use the resources shipped in cookbook in a recipe, the same way you'd use core Chef resources (file, template, directory, package, etc).
ibm_mq_installation 'Installation1' do
  source 'http://10.0.2.15:8000/WS_MQ_V8.0.0.4_LINUX_ON_X86_64_IM.tar.gz'
  accept_license true
  primary true
end

ibm_mq_queue_manager 'qm1' do
  action [:create, :start]
end

Resources

ibm_mq_installation

The ibm_mq_installation resource downloads an IBM MQ download package file, specified by a URI.

Example

ibm_mq_installation 'Installation1' do
  source 'http://10.0.2.15:8000/WS_MQ_V8.0.0.4_LINUX_ON_X86_64_IM.tar.gz'
  accept_license true
  primary true
  action :create
end

Properties

ibm_mq_queue_manager

The ibm_mq_queue_manager resource creates and starts IBM MQ queue managers.

Example

ibm_mq_queue_manager 'qm1' do
  action [:create, :start]
end

Properties

Maintainers

Developing

If you do submit a Pull Request related to this cookbook, please indicate in the Pull Request that you accept and agree to be bound by the terms of the IBM Contributor License Agreement.

In order to run the Test-Kitchen tests, you need to set an environment variable for the MQ download. For example, on Linux, you might do the following:

export MQ_URI=http://10.0.2.15:8000/WS_MQ_V8.0.0.4_LINUX_ON_X86_64_IM.tar.gz

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.