This cookbook sets up and runs mysql-orchestror.
- The backend mysql for orchestrator is going to run on the same server as orchestrator itself
- That backend DB is going to use Percona MySQL which is setup using the chef-percona cookbook by Philiper
- That you, the end user, own adding privileges for orchestrator to access your existing DB infrastructure
- That you wrap this cookbook to use the CLI and add your production databases for discovery
- Centos 6.5
- Ubuntu 12.04
Key | Type | Description | Default |
---|---|---|---|
['orchestrator']['package']['version'] | nil | string | version to install, nil provides latest (and will upgrade) |
['orchestrator']['package']['url'] | nil | string | URL to download the RPM from |
['orchestrator']['package']['checksum'] | nil | string | Checksum for the file provided by URL |
Starting in version 2.1.0, the orchestrator cookbook now respects the version
attribute. If set to nil
(the default), the cookbook will perform the same steps as previous versions -- always upgrade to the latest version available via the repos available on a node.
Setting this attribute to a specific package version will result in that version being installed. If you want to install the package from an internal source, you can also specify the url and optional checksum to download the orchestrator package.
Include orchestrator
in your node's run_list
:
{
"run_list": [
"recipe[orchestrator::default]"
]
}
- Fork the repository on Github
- Create a named feature branch (i.e.
add-new-recipe
) - Write your change
- Write tests for your change (if applicable)
- Run the tests, ensuring they all pass
- Submit a Pull Request
Author:: Silvia Botros([email protected])