cookbook 'chef-manageiq', '~> 1.0.0'
chef-manageiq (2) Versions 1.0.0 Follow0
Installs/Configures ManageIQ
cookbook 'chef-manageiq', '~> 1.0.0', :supermarket
knife supermarket install chef-manageiq
knife supermarket download chef-manageiq
manageiq Cookbook
Pulls down the latest ManageIQ code, builds the code, installs the dependencies, and then starts the evm processes.
Requirements
Platforms
Tested on RHEL 6.5 and CentOS 6.5. Should work on any Red Hat family distributions.
Cookbooks
- git
- yum
- yum-epel
- iptables
- postgresql
- database
- xml
- ntp
- memcached
Attributes
Attributes specifically for ManageIQ
-
default["manageiq"]["db_username"]
- Username for the ManageIQ database user (default: "evm") -
default['manageiq']['db_password']
- password for the ManageIQ database user -
default['manageiq']['code_repo']
- GIT Repo URL used to build the server
Attributes for the RVM cookbook
-
default['rvm']['user_installs']
- Username for the user who is building and running the ManageIQ processes
Attributes for the PostgreSQL Database
-
default['postgresql']['password']['postgres']
- Set the root password for the database (default: sets to the manageiq/db_password) -
default["postgresql"]["pg_hba"]
- Configures the pg_hba file to allow incoming connections -
default["postgresql"]["config"]["port"]
- Database Port (default: 5432) -
default["postgresql"]["host"]
- Host Information (default: 127.0.0.1) -
default['postgresql']['config']['listen_addresses']
- Listen Addresses for the database (default: "*")
Usage
Simply add the cookbook to your runlist or add the cookbook to a role you have created.
Deploying a ManageIQ Server
This section details "quick deployment" steps.
-
Install Chef Client
curl -L https://www.opscode.com/chef/install.sh | sudo bash
-
Create a Chef repo folder and a cookbooks folder under the /tmp directory
mkdir -p /tmp/chef/cookbooks cd /tmp/chef/
-
Create a solo.rb file
vi /tmp/chef/solo.rb file_cache_path "/tmp/chef/" cookbook_path "/tmp/chef/cookbooks"
-
Create a manageiq.json file, this will be the attributes file and contains the run_list
vi /tmp/chef/manageiq.json { "run_list": [ "recipe[chef-manageiq]" ] }
-
Install dependencies:
cd /tmp/chef/cookbooks knife cookbook site download sudo tar xvfz sudo-*.tar.gz rm -f sudo-*.tar.gz knife cookbook site download postgresql tar xvfz postgresql-*.tar.gz rm -f postgresql-*.tar.gz knife cookbook site download iptables tar xvfz iptables-*.tar.gz rm -f iptables-*.tar.gz knife cookbook site download database tar xvfz database-*.tar.gz rm -f database-*.tar.gz knife cookbook site download rvm tar xvfz rvm-*.tar.gz rm -f rvm-*.tar.gz knife cookbook site download xml tar xvfz xml-*.tar.gz rm -f xml-*.tar.gz knife cookbook site download git tar xvfz git-*.tar.gz rm -f git-*.tar.gz knife cookbook site download ntp tar xvfz ntp-*.tar.gz rm -f ntp-*.tar.gz knife cookbook site download memcached tar xvfz memcached-*.tar.gz rm -f memcached-*.tar.gz knife cookbook site download yum tar xvfz yum-*.tar.gz rm -f yum-*.tar.gz knife cookbook site download yum-epel tar xvfz yum-epel-*.tar.gz rm -f yum-epel-*.tar.gz knife cookbook site download openssl tar xvfz openssl-*.tar.gz rm -f openssl-*.tar.gz knife cookbook site download chef-sugar tar xvfz chef-sugar-*.tar.gz rm -f chef-sugar-*.tar.gz knife cookbook site download build-essential tar xvfz build-essential-*.tar.gz rm -f build-essential-*.tar.gz knife cookbook site download apt tar xvfz apt-*.tar.gz rm -f apt-*.tar.gz knife cookbook site download aws tar xvfz aws-*.tar.gz rm -f aws-*.tar.gz knife cookbook site download mysql tar xvfz mysql-*.tar.gz rm -f mysql-*.tar.gz knife cookbook site download yum-mysql-community tar xvfz yum-mysql-community-*.tar.gz rm -f yum-mysql-community-*.tar.gz knife cookbook site download mysql-chef_gem tar xvfz mysql-chef_gem-*.tar.gz rm -f mysql-chef_gem-*.tar.gz knife cookbook site download xfs tar xvfz xfs-*.tar.gz rm -f xfs-*.tar.gz knife cookbook site download dmg tar xvfz dmg-*.tar.gz rm -f dmg-*.tar.gz knife cookbook site download runit tar xvfz runit-*.tar.gz rm -f runit-*.tar.gz knife cookbook site download windows tar xvfz windows-*.tar.gz rm -f windows-*.tar.gz knife cookbook site download chef_handler tar xvfz chef_handler-*.tar.gz rm -f chef_handler-*.tar.gz knife cookbook site download chef_gem tar xvfz chef_gem-*.tar.gz rm -f chef_gem-*.tar.gz
-
Download and extract the cookbook:
yum install -y wget wget https://github.com/booz-allen-hamilton/chef-manageiq/archive/master.tar.gz tar xvfz master.tar.gz rm -rf master.tar.gz mv chef-manageiq-master/ chef-manageiq
-
Run Chef-solo:
cd /tmp/chef chef-solo -c solo.rb -j manageiq.json
License & Authors
- Author:: Chris Kacerguis
- Author:: Mandeep Bal
Copyright:: 2015, Booz Allen Hamilton For more information on the license, please refer to the LICENSE file in the repo
Dependent cookbooks
yum >= 0.0.0 |
yum-epel >= 0.0.0 |
postgresql >= 0.0.0 |
iptables >= 0.0.0 |
database >= 0.0.0 |
rvm >= 0.0.0 |
xml >= 0.0.0 |
git >= 0.0.0 |
ntp >= 0.0.0 |
memcached >= 0.0.0 |
sudo >= 0.0.0 |
Contingent cookbooks
There are no cookbooks that are contingent upon this one.
chef-manageiq CHANGELOG
This file is used to list changes made in each version of the chef-manageiq cookbook.
1.0.0
- [Chris Kacerguis] - Updated Cookbook with misc bugfixes
0.1.0
- [BoozAllen] - Initial release of chef-manageiq
Collaborator Number Metric
1.0.0 failed this metric
Failure: Cookbook has 0 collaborators. A cookbook must have at least 2 collaborators to pass this metric.
Contributing File Metric
1.0.0 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a CONTRIBUTING.md file
Foodcritic Metric
1.0.0 failed this metric
FC064: Ensure issues_url is set in metadata: chef-manageiq/metadata.rb:1
FC065: Ensure source_url is set in metadata: chef-manageiq/metadata.rb:1
FC066: Ensure chef_version is set in metadata: chef-manageiq/metadata.rb:1
FC069: Ensure standardized license defined in metadata: chef-manageiq/metadata.rb:1
FC070: Ensure supports metadata defines valid platforms: chef-manageiq/metadata.rb:1
Run with Foodcritic Version 16.3.0 with tags metadata,correctness ~FC031 ~FC045 and failure tags any
No Binaries Metric
1.0.0 passed this metric
Testing File Metric
1.0.0 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a TESTING.md file
Version Tag Metric
1.0.0 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must include a tag that matches this cookbook version number
1.0.0 failed this metric
1.0.0 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a CONTRIBUTING.md file
Foodcritic Metric
1.0.0 failed this metric
FC064: Ensure issues_url is set in metadata: chef-manageiq/metadata.rb:1
FC065: Ensure source_url is set in metadata: chef-manageiq/metadata.rb:1
FC066: Ensure chef_version is set in metadata: chef-manageiq/metadata.rb:1
FC069: Ensure standardized license defined in metadata: chef-manageiq/metadata.rb:1
FC070: Ensure supports metadata defines valid platforms: chef-manageiq/metadata.rb:1
Run with Foodcritic Version 16.3.0 with tags metadata,correctness ~FC031 ~FC045 and failure tags any
No Binaries Metric
1.0.0 passed this metric
Testing File Metric
1.0.0 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a TESTING.md file
Version Tag Metric
1.0.0 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must include a tag that matches this cookbook version number
1.0.0 failed this metric
FC065: Ensure source_url is set in metadata: chef-manageiq/metadata.rb:1
FC066: Ensure chef_version is set in metadata: chef-manageiq/metadata.rb:1
FC069: Ensure standardized license defined in metadata: chef-manageiq/metadata.rb:1
FC070: Ensure supports metadata defines valid platforms: chef-manageiq/metadata.rb:1
Run with Foodcritic Version 16.3.0 with tags metadata,correctness ~FC031 ~FC045 and failure tags any
1.0.0 passed this metric
Testing File Metric
1.0.0 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a TESTING.md file
Version Tag Metric
1.0.0 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must include a tag that matches this cookbook version number
1.0.0 failed this metric
1.0.0 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must include a tag that matches this cookbook version number