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

abiquo (31) Versions 0.4.0

Installs and configures an Abiquo platform

Policyfile
Berkshelf
Knife
cookbook 'abiquo', '= 0.4.0', :supermarket
cookbook 'abiquo', '= 0.4.0'
knife supermarket install abiquo
knife supermarket download abiquo
README
Dependencies
Changelog
Quality 100%

Abiquo Cookbook

Build Status
Abiquo Cookbook
Chef Version

This cookbook provides several recipes to install an upgrade an Abiquo platform.
It allows to provision an Abiquo Monolithic, the Remote Services and a KVM hypervisor
from scratch, as long as upgrading an existing Abiquo installation using the latest
nightly builds.

Requirements

  • CentOS >= 6.5

This cookbook depends on the following cookbooks:

  • apache2
  • ark
  • iptables
  • java-management
  • selfsigned_certificate
  • selinux
  • yum

Recipes

Generic recipes to be used to deploy an Abiquo platform from scratch:

  • recipe[abiquo] - Installs an Abiquo Platform
  • recipe[abiquo::repository] - Configures the Abiquo yum repositories
  • recipe[abiquo::install_monolithic] - Installs an Abiquo Monolithic
  • recipe[abiquo::install_remoteservices] - Installs the Abiquo Remote Services
  • recipe[abiquo::install_kvm] - Installs the KVM hypervisor
  • recipe[abiquo::setup_monolithic] - Configures the Abiquo Server
  • recipe[abiquo::setup_remoteservices] - Configures the Abiquo Remote Services
  • recipe[abiquo::setup_kvm] - Configures the KVM hypervisor
  • recipe[abiquo::upgrade] - Upgrades an Abiquo Platform
  • recipe[abiquo::install_database] - Installs the Abiquo database
  • recipe[abiquo::install_jce] - Installs the JCE unlimited strength jurisdiction policy files

Specific recipes to upgrade existing Abiquo installations:

  • recipe[abiquo::certificate] - Configures the SSL certificates

Attributes

The following attributes are under the node['abiquo'] namespace.

Attribute Description  Type Default
['profile'] The profile to install: "monolithic", "remoteservices" or "kvm" String "monolithic"
['datacenterId'] The value for the datacenter id property String "Abiquo"
['nfs']['mountpoint'] The path where the image repository is mounted String "/opt/vm_repository"
['nfs']['location'] If set, the NFS repository to mount String nil
['license'] The Abiquo license to install String nil
['properties'] Hash with additional Abiquo properties to add to the Abiquo configuration file Hash nil
['yum']['repository'] The main Abiquo yum repository String "http://mirror.abiquo.com/abiquo/3.2/os/x86_64"
['yum']['nightly-repo'] A yum repository with nightly builds String nil
['db']['host'] The database host used when running the database upgrade String "localhost""
['db']['port'] The database port used when running the database upgrade Integer 3306
['db']['user'] The database user used when running the database upgrade String "root"
['db']['password'] The database password used when running the database upgrade String nil
['db']['install'] Install the database when installing the Monolithic profile Boolean true
['db']['upgrade'] Run the database upgrade when upgrading the monolithic profile Boolean true
['rabbitmq']['host'] The address of the RabbitMQ server String "127.0.0.1"
['rabbitmq']['port'] The port of the RabbitMQ server Integer 5672
['rabbitmq']['user'] The username of the RabbitMQ server String "guest"
['rabbitmq']['password'] The password of the RabbitMQ server String "guest"
['redis']['host'] The address of the Redis server String "127.0.0.1"
['redis']['port'] The port of the Redis server Integer 6379
['kvm']['fullvirt'] If full virtualization is used in the KVM hypervisors Boolean false
['aim']['port'] In a KVM, the port where the Abiquo AIM agent will listen Integer 8889
['tomcat']['http-port'] The port where the Tomcat listens to HTTP traffic Integer 8009
['tomcat']['ajp-port'] The port where the Tomcat listens to AJP traffic Integer 8010
['tomcat']['wait-for-webapps'] If Chef will wait for the webapps to be running after restarting Tomcat Boolean false
['ssl']['certificatefile'] The path to the SSL certificate  String "/etc/pki/tls/certs/ca.cert"
['ssl']['keyfile'] The path to the certificate's key  String "/etc/pki/tls/private/ca.key"

Resources and providers

The Abiquo cookbook provides the following LWRPs:

abiquo_wait_for_webapp

This LWRP will make the Chef run wait until the configured webapp is started.

Parameters

  • host - The address where the webapp is running
  • port - The port where the webapp is listening
  • webapp - The name of the webapp
  • open_timeout - The timeout to open a connection to the webapp
  • read_timeout - The timeout to read from a connection to the webapp

Example

abiquo_wait_for_webapp "api" do
    host "localhost"
    port 8009
    retries 3   # Retry if Tomcat is still not started
    retry_delay 5
    action :wait
end

Usage

The cookbook is pretty straightforwatd to use. Just set the node['abiquo']['profile'] attribute
according to the profile you want to install or upgrade and and include one of the following recipes
in the run list:

  • recipe[abiquo] - To perform an installation from scratch
  • recipe[abiquo::upgrade] - To upgrade an existing installation

When installing the Abiquo Monolithic profile, you may also want to set the node['selfsigned_certificate']['cn']
attribute to match the hostname of the node. You can also use it together with the hostname cookbook to make sure the node will have it properly configured.

Testing

In order to test the cookbook you will need to install Vagrant and VirtualBox. Once installed you can run the unit and integration tests as follows:

bundle install
bundle exec rake          # Run the unit and style tests
bundle exec rake kitchen  # Run the integration tests

License and Authors

Copyright:: 2014, Abiquo

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

apache2 >= 0.0.0
ark >= 0.0.0
iptables >= 0.0.0
java-management >= 0.0.0
selfsigned_certificate >= 0.0.0
selinux >= 0.0.0
yum >= 0.0.0

Contingent cookbooks

There are no cookbooks that are contingent upon this one.

abiquo CHANGELOG

0.4.0

  • Use the rpm signing keys from the abiquo-release-ee package.

0.3.3

  • Removed the start, stop and update recipes.
  • Changed the upgrade recipe to also upgrade the database.
  • Added database configuration attributes.

0.3.2

  • Added the abiquo-updates yum repository.
  • Configured the rpm GPG sign keys that are not present in the abiquo-release-ee package.
  • Fixed encofing in the UI configuration file.

0.3.1

  • Fixed the NFS resource.

0.3.0

  • Added support for Abiquo 3.3.

0.2.1

  • Install Java and RabbitMQ from the Abiquo repositories.
  • Added all missing signatures to the repository configuration.
  • Configured the cookbook to install Abiquo 3.3.

0.2.0

  • Support Java 8.
  • Support using JCE unlimited strength encryption policies.
  • Allow customization of the RabbitMQ and Redis properties.
  • Dropped support to configure the Abiquo Tomcat in jpda mode.
  • Redis is installed from the Abiquo packages.

0.1.0

  • Initial release. Support for Monolithic installations from scratch and platform upgrades using nightly builds.

Foodcritic Metric
            

0.4.0 passed this metric