Giter Site home page Giter Site logo

ec2-boot-init's Introduction

What is it?

A script to help bootstrap generic EC2 instances into specific ones.

The basic idea is that you submit some user data in the form:

---
:facts:
  foo: bar
:write_ec2_facts: true
:actions:
- :type: :getactions
  :url: http://your.net/ec2actions/
  :list: list.txt
- :type: :puppet
  :master: puppet.your.net

This script when run from your init system will:

  • Get list of actions ("list.txt") from action root URL "http://your.net/ec2actions/"
  • Run action "puppet" passing the variable master into it (example only)

The getactions action is shipped with this script. You can supply your own actions in the action list ("list.txt"). Actions should be supplied relative to action root URL ("http://your.net/ec2actions/") so that e.g. action "puppet.rb" in action list "list.txt" is located at "http://your.net/ec2actions/puppet.rb".

You should use this to do the basic bootstrap actions like get Puppet on your node, do the basic setup etc. From there you'd configure the machine using Puppet.

Actions:

Actions are written in ruby, here's a simple one that execute a shell command:

newaction("shell") do |cmd, ud, md, config|
    if cmd.include?(:command)
        system(cmd[:command])
    end
end

Facts:

Facts passed in via the YAML will be written to /etc/facts.txt, if you set :write_ec2_facts it will also write all the ec2 meta data into this file

Status:

This is very early work-in-progress chunk of code.

ec2-boot-init's People

Contributors

ripienaar avatar elmer avatar jlambert121 avatar

Watchers

Allen Chen Jinlong avatar James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.