An omnibus-based toolkit for working on Ansible-based infrastructure code.
That means, this project is a set of scripts to build OS packages that bundle together a bunch of tools to make developing with Ansible more robust, reliable, fast, and fun - in other words, a SDLC kit for ansible. Unless you are contributing to this project, you almost certainly don't need this source code; you're instead looking for the binary OS packages.
Packages for Ubuntu 14.04 (.deb) and Mac OS X (.dmg) are available at https://github.com/omniti-labs/ansible-dk/releases/latest .
Installation should be straightforward using your OS's normal package manager. We install to /opt/ansible-dk, and are careful to not interfere with any existing system Python or Ruby installations. Uninstalls and upgrades should be clean.
Once you have your package installed, to use the tools, run this magic command in your Bash shell:
eval "$(ansible-dk shell-init bash)"
This will alter various environment variables so that the Ansible DK's tools appear first in your path, along with all the Python and Ruby libraries they need.
(Currently only bash is supported; patches welcome.)
This allows us to manage our own gem universe without the user having to know about things like Bundler, rvm, or rbenv.
This allows us to manage our own module universe without the user having to know about things like virtualenv.
This gets symlinked into /usr/bin or /usr/local/bin, depending on your OS, and is the only change outside of /opt/ansible-dk.
The ansible tool itself.
Ansible-lint is a linter for ansible.
Ansible-toolkit provides several tools to improve visibility and predictability of roles and vault management.
Test Kitchen is a very popular infrastructure testing harness.
Molecule is a tool to ease (automated) testing for Ansible roles.
Everything you need to have test machines in AWS, plus have dynamic inventory. jq is included for inventory diagnostics.
The workflow that the authors use includes using test-kitchen to create and destroy test VMs, with serverspec being used to author the tests. That's not prescriptive, though - you can do whatever you like. Our goal is for the Ansible DK to provide enough variety of tools for you to implement a workflow that you prefer.
Long-term, we're open to contributions from the community - such as BATS support, or digitalocean support, for example. But those are not the current needs of OmniTI, so we will not be focusing on them at the moment.
Based on OmniTI's (perhaps idiosyncratic) needs, we initially plan to build packages for:
- OS X Yosemite
- OS X El Capitan (commiting to latest Mac OS, plus previous version)
- Ubuntu 14.04 (commiting to LTS support on ubuntu)
We do not currently have a need for Debian, CentOS, RHEL, or FreeBSD packaging, but such contributions would be very welcome from the community.
At some point in the future, we will likely add OmniOS LTS packaging, which we would aim to also cover SmartOS and Oracle Solaris.
We will probably never have need for a Windows package, but if there are community members willing to implement, test, and maintain it, we'll accept it.
Probably a great many! If you find one, open an issue at https://github.com/omniti-labs/ansible-dk/issues .
If you have something you wish to see added, but have no idea how to do that in Omnibus, please open an issue at https://github.com/omniti-labs/ansible-dk/issues .
If you have some experience doing Omnibus packaging, which is perhaps not for the faint of heart, or are simply exceptionally intrepid, have a read over the Omnibus instructions at https://github.com/chef/omnibus , then do the usual fork-PR workflow on this repo.
This is a project sponsored by OmniTI Labs, the FOSS initiative of OmniTI (omniti.com). Community contributors are welcome, and maintainers may join after a vetting period.
- Clinton Wolfe, DevOps Practice Lead at OmniTI
- Rick Pufky, DevOps Generalist at OmniTI
- Lyn Muldrow, Frontend Developer at OmniTI - Logo design
- Josh Blancett, Automation Engineer at OmniTI
- Your Name Could Be Here
- Robert Treat, CEO of OmnITI
He said, "You should totally do that." So, we did.
- devops-toolchain Google Group
For the enthusiastic response
- Bill Nottingham of Ansible / RedHat
For basically saying, sure, why not
- Joseph Holsten
For giving us a clue for how to build and package python modules under omnibus
- Chef, Inc.
For Omnibus, and the many build definitions we are using.
This project creates full-stack platform-specific packages for
ansible-dk
!
You must have a sane Ruby 1.9+ environment with Bundler installed. Ensure all the required gems are installed:
$ bundle install --binstubs
You create a platform-specific package using the build project
command:
$ bin/omnibus build ansible-dk
The platform/architecture type of the package created will match the platform
where the build project
command is invoked. For example, running this command
on a MacBook Pro will generate a Mac OS X package. After the build completes
packages will be available in the pkg/
folder.
You can clean up all temporary files generated during the build process with
the clean
command:
$ bin/omnibus clean ansibledk
Adding the --purge
purge option removes ALL files generated during the
build including the project install directory (/opt/ansibledk
) and
the package cache directory (/var/cache/omnibus/pkg
):
$ bin/omnibus clean ansibledk --purge
Omnibus has a built-in mechanism for releasing to a variety of "backends", such
as Amazon S3. You must set the proper credentials in your omnibus.rb
config
file or specify them via the command line.
$ bin/omnibus publish path/to/*.deb --backend s3
Full help for the Omnibus command line interface can be accessed with the
help
command:
$ bin/omnibus help
Git-based software definitions may specify branches as their
default_version. In this case, the exact git revision to use will be
determined at build-time unless a project override (see below) or
external version manifest is used. To generate a version manifest use
the omnibus manifest
command:
omnibus manifest PROJECT -l warn
This will output a JSON-formatted manifest containing the resolved version of every software definition.
When building new versions, clear local build cache. Stale or broken builds could get built in.
$ rm -rf local/build local/cache /opt/ansible-dk/*
Every Omnibus project ships will a project-specific
Berksfile that will allow you to build your omnibus projects on all of the projects listed
in the .kitchen.yml
. You can add/remove additional platforms as needed by
changing the list found in the .kitchen.yml
platforms
YAML stanza.
This build environment is designed to get you up-and-running quickly. However, there is nothing that restricts you to building on other platforms. Simply use the omnibus cookbook to setup your desired platform and execute the build steps listed above.
The default build environment requires Test Kitchen and VirtualBox for local development. Test Kitchen also exposes the ability to provision instances using various cloud providers like AWS, DigitalOcean, or OpenStack. For more information, please see the Test Kitchen documentation.
Once you have tweaked your .kitchen.yml
(or .kitchen.local.yml
) to your
liking, you can bring up an individual build environment using the kitchen
command.
$ bin/kitchen converge ubuntu-1204
Then login to the instance and build the project as described in the Usage section:
$ bundle exec kitchen login ubuntu-1204
[vagrant@ubuntu...] $ cd ansibledk
[vagrant@ubuntu...] $ bundle install
[vagrant@ubuntu...] $ ...
[vagrant@ubuntu...] $ bin/omnibus build ansibledk
For a complete list of all commands and platforms, run kitchen list
or
kitchen help
.