mego22 / ansible-base

Base role for Ansible

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Base

This is the base role for my Ansible roles. Included with the standard Ansible directory structure is a setup for using test-kitchen with Docker for TDD.

How to use

git clone git@github.com:mego22/ansible-base.git new-role
cd new-role/
perl -pi -e s,ansible-base,new-role, ./test/integration/default/default.yml
rm -rf .git
git init
git add .
git commit -m "Initial commit."
git remote add origin git@github.com:USER/new-role.git
push -u origin master

TDD

Prerequisites

The Makefile

The Makefile is used as a wrapper for frequently run tasks. Mostly its wrapping bundle exec kitchen.

converge  kitchen converge
create    kitchen create
destroy   kitchen destroy
lint      ansible-lint
list      kitchen list
login     kitchen login
setup     Install needed gems for test-kitchen
syntax    ansible-playbook syntax-check
test      kitchen test
verify    kitchen verify

About

Base role for Ansible


Languages

Language:Makefile 86.3%Language:Ruby 13.7%