Chef cookbook to install Kong: An open-source management layer for APIs, delivering high performance and reliability.
This cookbook has been tested on the following platforms:
- CentOS
- Debian
- Ubuntu
Please, let me know if you use it successfully on any other platform.
- Ruby
1.9.3
or higher.
Attribute | Default | Description |
---|---|---|
node['kong']['version'] |
'0.4.2' |
Kong version to install. |
node['kong']['mirror'] |
calculated | Kong URL path without including the file name. |
node['kong']['kong.yml'] |
calculated | Kong YAML configuration options. See the default configuration values. |
node['kong']['manage_ssl_certificate'] |
calculated | Whether to manage HTTPS certificate creation using the ssl_certificate cookbook. |
node['kong']['manage_cassandra'] |
calculated | Whether to manage Cassandra server installation using the cassandra-dse cookbook. |
node['kong']['wait_for_cassandra'] |
300 |
Time in seconds to wait for Cassandra to start. Only used with manage_cassandra enabled. |
Some cookbook attributes are used internally to support the different platforms. Surely you want to change them if you want to support new platforms or want to improve the support of some platforms already supported.
Attribute | Default | Description |
---|---|---|
node['kong']['required_packages'] |
calculated | Some packages required by Kong. |
node['kong']['package_file'] |
calculated | Kong package file name. |
node['kong']['package_checksum'] |
calculated | Kong package file checksum. |
Installs and configures Kong.
Installs and configures Cassandra.
You can simply include it in a recipe:
include_recipe 'kong'
Don't forget to include the kong
cookbook as a dependency in the metadata.
# metadata.rb
# [...]
depends 'kong', '~> 0.1.0'
Another alternative is to include the default recipe in your Run List:
{
"name": "api.example.com",
"[...]": "[...]",
"run_list": [
"recipe[kong]"
]
}
It is highly recommended to use an external Cassandra server with this cookbook.
For example:
node.default['kong']['kong.yml']['databases_available']['cassandra']\
['properties']['hosts'] = 'cassandra.example.com'
include_recipe 'kong'
If you want to use the local Cassandra server installed by this cookbook, it is recommended to set the following attributes:
node.default['cassandra']['cluster_name'] = # ...
node.default['cassandra']['install_method'] = # ...
# node.default['cassandra'][...]
# ...
include_recipe 'kong'
See the cassandra-dse
cookbook documentation.
By default, this cookbook installs a local Cassandra server if the 'hosts'
attribute is not set or includes 'localhost'
. You can use the node['kong']['manage_cassandra']
attribute to force this behavior.
This cookbook uses the ssl_certificate
cookbook to create the HTTPS certificate. The namespace used is node['kong']
. For example:
node.default['kong']['common_name'] = 'api.example.com'
include_recipe 'kong'
See the ssl_certificate
namespace documentation for more information.
You can disable the SSL certificate creation by setting the node['kong']['kong.yml']['ssl_cert_path']
and node['kong']['kong.yml']['ssl_key_path']
attributes. You can use the node['kong']['manage_ssl_certificate']
attribute to force this behavior.
See TESTING.md.
Please do not hesitate to open an issue with any questions or problems.
See CONTRIBUTING.md.
See TODO.md.
Author: | Xabier de Zuazo (xabier@zuazo.org) |
Copyright: | Copyright (c) 2015, Xabier de Zuazo |
License: | Apache License, Version 2.0 |
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.