A Puppet module for provisioning the Shine Solutions AEM Orchestrator.
If you want to use an S3
URL ( s3://bucket/path ) for the jar file source,
you'll need to have the AWS CLI installed and configured so root
can run the
command below without error. This means you'll need to ensure AWS default
credentials are configured correctly. Information on how to set them up is
detailed in
[the AWS CLI docs.] (http://docs.aws.amazon.com/cli/latest/topic/config-vars.html)
aws s3 cp <url> /tmp/jar.tmp
Install the module using the puppet
command:
puppet module install shinesolutions-aem_orchestrator
Or via a Puppetfile:
mod 'shinesolutions-aem_orchestrator'
Or uf you want to use the newest code from git:
mod 'shinesolutions-aem_orchestrator', :git => 'https://github.com/shinesolutions/puppet-aem-orchestrator'
Then just include the module in your Puppet code:
include aem_orchestrator
Parameters can be set with Hiera. See the defaults in data/common.yaml
for
examples.
Most default parameters are correct, but you will likely need to override the following to point to the AEM Orchestrator jar file:
aem_orchestrator::jarfile_source: (s3|http|file)://(host|bucket)/path/to/aem_orchestrator.jar
aem_orchestrator::jarfile_checksum_value: <sha256 hash of aem_orchestrator.jar>
The module's classes and their parameters are documented in the comments in
each manifest file. HTML documentation generated with puppet strings
can be
found in the docs/
folder -- which is published on GitHub
Pages for easy
reference.