cookbook 'cloudpassage', '= 2.5.0'
cloudpassage
(25) Versions
2.5.0
-
Follow8
Installs/Configures CloudPassage Halo
cookbook 'cloudpassage', '= 2.5.0', :supermarket
knife supermarket install cloudpassage
knife supermarket download cloudpassage
cloudpassage Cookbook
Version: 2.5.0
Author: CloudPassage
Feedback: toolbox@cloudpassage.com
Scope
This cookbook installs and upgrades CloudPassage Halo on Windows, Debian-based
(Debian, Ubuntu) and RHEL-based (RHEL, CentOS, Oracle) operating systems.
This cookbook supports installation by resource, which is the preferred method.
Optionally, you can also use the default recipe, but you'll need to provide configuration
information via attributes or data bag.
Requirements and dependencies
Tested and Supported Platforms
- Ubuntu 12.04
- Ubuntu 14.04
- CentOS 6.7
- CentOS 7.1
- RHEL 7.2
- Amazon Linux 2015.09
- Windows Server 2012R2
Tested Chef Versions
- chef-client 12.5.1 (using Chef DK 0.9.0)
- chef-client 12.6 (using Chef DK 0.10.0)
Cookbooks
- apt
- yum
Recipe cloudpassage::default usage:
The following attributes are configurable via the attributes/default.rb file:
default['cloudpassage']['agent_key'] # Key used for agent registration
default['cloudpassage']['grid_url'] # Normally https://grid.cloudpassage.com/grid
default['cloudpassage']['linux_agent_version'] # Force a specific version of the Halo agent.
default['cloudpassage']['proxy_host']
default['cloudpassage']['proxy_port']
default['cloudpassage']['proxy_user']
default['cloudpassage']['proxy_password']
default['cloudpassage']['read_only'] # Start the agent in read-only mode
default['cloudpassage']['server_tag'] # Used for server group association
default['cloudpassage']['server_label'] # Manually-defined label for server
default['cloudpassage']['dns'] # Disable agent DNS lookup
default['cloudpassage']['windows_installer_protocol'] # Used in building the Windows package install string
default['cloudpassage']['windows_installer_port'] # Port component of windows installer url
default['cloudpassage']['windows_installer_host'] # Host portion of Windows installer URL
default['cloudpassage']['windows_installer_path'] # Path to Windows installer
default['cloudpassage']['windows_installer_file_name'] # Name of Windows installer executable
default['cloudpassage']['apt_repo_url'] # Apt repo URL for CloudPassage Halo
default['cloudpassage']['apt_repo_distribution']
default['cloudpassage']['apt_repo_components']
default['cloudpassage']['yum_repo_url'] # Apt repo URL for CloudPassage Halo
default['cloudpassage']['apt_key_url']
default['cloudpassage']['yum_key_url']
The default recipe is very versatile, and under most circumstances you will not
need to configure much more than the agent_key
and server_tag
node
attributes. But if you want to go nuts with it, the functionality is there.
The following configuration options, if delivered in an encrypted data bag, will
override the defaults in the attributes file:
agent_key
proxy_user
proxy_password
Resource cloudpassage_agent usage:
The cloudpassage::default recipe calls the cloudpassage_agent resource with
action :install. You can call this resource directly from another recipe
as simply as:
cloudpassage_agent 'halo' do
agent_key AGENT_KEY_GOES_HERE
server_tag SERVER_TAG_GOES_HERE
action :install
end
Don't forget to add depends 'cloudpassage'
to your metadata.rb file if
you're including the resource in another cookbook.
As with the recipe, you can accept almost all the defaults and rock and roll.
You don't even have to define the server_tag
, but you'll spend a lot of
time manually organizing your hosts in the CloudPassage Halo portal if you
don't.
For your reading pleasure, here is an exhaustive list of properties for the
cloudpassage_halo resource:
What it is | What it does |
---|---|
agent_key | You MUST define this. The default value will not register. |
grid_url | Only override this if you're running on your own grid. |
linux_agent_version | This forces a specific version of the Linux agent. |
proxy_host | Tells the agent to use a proxy |
proxy_port | Defines the port for the proxy |
proxy_user | Define a username for proxy use |
proxy_password | Define a password for proxy use |
read_only | Set to true to run the agent in audit mode |
server_tag | This determines group placement on agent activation |
server_label | This is a user-defined string that supersedes the hostname when rendered in the portal. |
dns | Set this to false to disable DNS resolution by the agent. |
windows_installer_protocol | Used for assembling the URL for the Windows installer. |
windows_installer_port | Used for assembling the URL for the Windows installer. |
windows_installer_host | Used for assembling the URL for the Windows installer. |
windows_installer_path | Used for assembling the URL for the Windows installer. |
windows_installer_file_name | Used for assembling the URL for the Windows installer. |
apt_repo_url | Only change this if you're running your own repository. |
apt_repo_distribution | Only change this if you're running your own repository. |
apt_repo_components | Only change this if you're running your own repository. |
yum_repo_url | Only change this if you're running your own repository. |
apt_key_url | Only change this if you're running your own repository. |
yum_key_url | Only change this if you're running your own repository. |
Note: If the repo URL is configured as an empty string, the recipe will not
attempt to add the appropriate CloudPassage repository on the node.
Dependent cookbooks
apt ~> 2.9.0 |
yum ~> 3.8.0 |
compat_resource >= 0.0.0 |
Contingent cookbooks
There are no cookbooks that are contingent upon this one.
CHANGELOG for cloudpassage
0.1.0:
- Initial release of cloudpassage_linux
0.2.0:
- Added support for proxy in Halo startup options
- Changed to using platform_family instead of platform and lists of OSes for determining which pkg mgr to use
- Added logic to print platform and platform version, as a reference by which to create logic to set server tag based on OS/ver
- Moved repo and repo key variables to attributes, to make it easier for those who run private mirrors.
0.3.0:
- Consolidating down into one recipe for all platforms (now just referred to as 'cloudpassage')
0.3.1:
- Corrected metadata.rb, populated README.md, corrected version in README.md
2.0.0:
- Re-work of entire cookbook. Provides cloudpassage_agent resource for installing agent.
2.1.0:
- Added compat_resource to enable chef-client 12.5.1 compatibility.
2.2.0:
Added linux_agent_version property to force specific version of Halo agent
Documentation improvements
Force failure on absence of agent key
Added rake task ec2 for style, spec, and ec2 checks (thanks @rgindes)
2.2.1:
- Corrected deprecated code ahead of Chef 13
2.2.2:
- Pinned deps in Rakefile
2.2.3:
- Pinned test-kitchen dependency
2.3.0:
- Added security group identifier to kitchen-ec2
2.3.1:
- Corrected variable name for security_group_ids
2.4.0:
- Allow use of user_data variable in ec2 testing
2.4.1:
- Pinning more vars in Gemfile
2.4.2:
- Corrected versions in metadata.rb
2.5.0:
Support Amazon Linux 2015.09 (improve override for svc manager), include in kitchen-ec2 config. (203)
Increased concurrency (207)
Added linux agent version to kitchen_ec2 config (208)
Override retryable_tries in kitchen-ec2 config to accommodate occasionally slow Windows provisioning
Foodcritic Metric
2.5.0 passed this metric
2.5.0 passed this metric