Skip to content

Run OpsWorks recipes via command line. By default, the recipe targets the instance where the command was run, but this can be re-targetted via command line settings.

Notifications You must be signed in to change notification settings

ardeearam/opsworks_local

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 

Repository files navigation

opsworks_local

Run OpsWorks recipes via command line. By default, the recipe targets the EC2 instance where the command was run, but this can be changed.

Usage

Non-EC2 machines (e.g. local development)

For Non-EC2 machines, either the instance ids or the stack must be explicitly state.

# Invoke deploy on one instance
$ ruby opsworks_local.rb -c deploy -i i-7f9811b1

# Invoke deploy on multiple server instances
$ ruby opsworks_local.rb -c deploy -i i-1a2abcd4,i-0b2cbac5

# Run custom recipe to current instance
$ ruby opsworks_local.rb -r mycookbook::jump_high -i i-7f9811b1

# Update custom cookbook
$ ruby opsworks_local.rb -c update_custom_cookbooks -i i-7f9811b1

# Update custom cookbook for all instances in the stack `my_stack`
$ ruby opsworks_local.rb -c update_custom_cookbooks -s my_stack

##EC2 machines opsworks_local can introspect, and dynamically obtain OpsWorks infromation regarding the current EC2 instance. This removes the necessity of either doing lookups, or hard-coding instance ids.

# Deploy all applications to current instance
$ ruby opsworks_local.rb -c deploy

# Invoke deploy on all servers for the stack where this instance belongs.
$ ruby opsworks_local.rb -c deploy -a

# Update custom cookbook on all servers for the stack this instance belongs.
$ ruby opsworks_local.rb -c update_custom_cookbooks -a

# Works perfectly on your `crontab`, especially with the `cron` Chef resource.
# Chef Name: postgresql backup
0 */6 * * * ruby /path/to/opsworks_local.rb -r mycookbook::postgresql_backup

Prerequisites

  • aws-cli package must be installed.

Design Goals

Initially, the goal of this script is to enable an OpsWorks recipe to be run as a cron job. The cron job will be deployed via the cron resource of Chef/OpsWorks. Thus, I wanted a dependency-free, bloat-free script that can be placed anywhere, and made to run by any system user via a simple line of script. This means no Gemfiles, and no bundling.

I also intentionally did not use the aws-sdk gem, due to the reasons above.

License

Copyright (c) 2015, Ardee Aram. All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
  2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

The views and conclusions contained in the software and documentation are those of the authors and should not be interpreted as representing official policies, either expressed or implied, of the FreeBSD Project.

About

Run OpsWorks recipes via command line. By default, the recipe targets the instance where the command was run, but this can be re-targetted via command line settings.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages