Installs and configures Couchbase.
Chef 0.10.10 and Ohai 0.6.12 are required due to the use of platform_family. Works with Chef 11.4.0
- Debian family (Debian, Ubuntu etc)
- Red Hat family (Redhat, CentOS, Oracle etc)
- Microsoft Windows
Note that Couchbase Server does not support Windows 8 or Server 2012: see http://www.couchbase.com/issues/browse/MB-7016.
node['couchbase']['server']['edition']
- The edition of couchbase-server to install, "community" or "enterprise"node['couchbase']['server']['version']
- The version of couchbase-server to installnode['couchbase']['server']['package_file']
- The couchbase-server package file to download and installnode['couchbase']['server']['package_base_url']
- The url path to download the couchbase-server package file fromnode['couchbase']['server']['package_full_url']
- The full url to the couchbase-server package file to download and installnode['couchbase']['server']['database_path']
- The directory Couchbase should persist data tonode['couchbase']['server']['log_dir']
- The directory Couchbase should log tonode['couchbase']['server']['memory_quota_mb']
- The per server RAM quota for the entire cluster in megabytes defaults to Couchbase's maximum allowed valuenode['couchbase']['server']['username']
- The cluster's username for the REST API and Admin UInode['couchbase']['server']['password']
- The cluster's password for the REST API and Admin UI
node['couchbase']['client']['version']
- The version of libcouchbase to install
node['couchbase']['moxi']['version']
- The version of moxi to installnode['couchbase']['moxi']['package_file']
- The package file to downloadnode['couchbase']['moxi']['package_base_url']
- The base URL where the packages are locatednode['couchbase']['moxi']['package_full_url']
- The full URL to the moxi packagenode['couchbase']['moxi']['cluster_server']
- The bootstrap server for moxi to contact for the node listnode['couchbase']['moxi']['cluster_rest_url']
- The bootstrap server's full REST URL for retrieving the initial node list
Installs the libcouchbase2 and devel packages.
Installs the couchbase-server package and starts the couchbase-server service.
Installs the moxi-server package and starts the moxi-server service.
:modify
- Default Modify the configuration of the node
id
- The id of the Couchbase node, typically "self", defaults to the resource namedatabase_path
- The directory the Couchbase node should persist data tousername
- The username to use to authenticate with Couchbasepassword
- The password to use to authenticate with Couchbase
couchbase_node "self" do
database_path "/mnt/couchbase-server/data"
username "Administrator"
password "password"
end
:create_if_missing
- Default Create a cluster/pool only if it doesn't exist yet
cluster
- The id of the Couchbase cluster, typically "default", defaults to the resource namememory_quota_mb
- The per server RAM quota for the entire cluster in megabytesusername
- The username to use to authenticate with Couchbasepassword
- The password to use to authenticate with Couchbase
couchbase_cluster "default" do
memory_quota_mb 256
username "Administrator"
password "password"
end
:modify
- Default Modify the collection of settings
group
- Which group of settings to modify, defaults to the resource namesettings
- The hash of settings to modifyusername
- The username to use to authenticate with Couchbasepassword
- The password to use to authenticate with Couchbase
couchbase_settings "autoFailover" do
settings({
"enabled" => true,
"timeout" => 30,
})
username "Administrator"
password "password"
end
:create
- Default Create a Couchbase bucket
bucket
- The name to use for the Couchbase bucket, defaults to the resource namecluster
- The name of the cluster the bucket belongs to, defaults to "default"memory_quota_mb
- The bucket's per server RAM quota for the entire cluster in megabytesmemory_quota_percent
The bucket's RAM quota as a percent (0.0-1.0) of the cluster's quotareplicas
- Number of replica (backup) copies, defaults to 1. Set to false to disableusername
- The username to use to authenticate with Couchbasepassword
- The password to use to authenticate with Couchbase
couchbase_bucket "default" do
memory_quota_mb 128
replicas 2
username "Administrator"
password "password"
end
couchbase_bucket "pillowfight" do
memory_quota_percent 0.5
replicas false
username "Administrator"
password "password"
end
Author:: Chris Griego (cgriego@getaroom.com) Author:: Morgan Nelson (mnelson@getaroom.com) Author:: Julian Dunn (jdunn@aquezada.com)
Copyright 2012, getaroom
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.