Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nickjj/ansigenome
A tool to help you gather information and manage your Ansible roles.
https://github.com/nickjj/ansigenome
ansible python
Last synced: 2 days ago
JSON representation
A tool to help you gather information and manage your Ansible roles.
- Host: GitHub
- URL: https://github.com/nickjj/ansigenome
- Owner: nickjj
- License: gpl-3.0
- Created: 2014-07-22T00:00:42.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2019-05-30T09:39:18.000Z (over 5 years ago)
- Last Synced: 2024-12-01T10:08:56.370Z (12 days ago)
- Topics: ansible, python
- Language: Python
- Homepage:
- Size: 1.3 MB
- Stars: 450
- Watchers: 19
- Forks: 64
- Open Issues: 29
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-starred - nickjj/ansigenome - A tool to help you gather information and manage your Ansible roles. (python)
- Retro-Gaming-Guide - Ansigenome
- awesome-ansible - Ansigenome - Ansigenome is a command line tool designed to help you manage your Ansible roles - scan, standarize documentation and meta files, generate dependency graphs. (Tools)
- awesome-list-ansible - ansigenome
- awesome-hacking-lists - nickjj/ansigenome - A tool to help you gather information and manage your Ansible roles. (Python)
README
|PyPI version| |Build status|
Ansigenome
==========Ansigenome is a command line tool designed to help you manage your Ansible roles.
**Scan your roles and organize your documentation**
.. figure:: https://raw.githubusercontent.com/nickjj/ansigenome/master/docs/ansigenome-scan.png
:alt: Ansigenome scan screenshot****
**Create dependency graphs in seconds**
.. figure:: https://raw.githubusercontent.com/nickjj/ansigenome/master/docs/ansigenome-graph.png
:alt: Ansigenome graph of DebOpsGenerated from the `DebOps `_ project.
****
...and more!
Table of contents
~~~~~~~~~~~~~~~~~- `Use case`_
- `Installation`_
- `Quick start`_
- `Template variables`_
- `Contributing`_
- `Author`_Use case
~~~~~~~~Are you someone with 1 or 100+ roles? Then you will benefit from using Ansigenome, let's go over what Ansigenome can do for you:
- `Gather metrics on your roles`_
- `Standardize your readmes in an automated way`_
- `Augment existing meta files`_
- `Export graphs and requirements files`_
- `Create brand new roles`_
- `Run shell commands in the context of each role`_Gather metrics on your roles
~~~~~~~~~~~~~~~~~~~~~~~~~~~~Just run ``ansigenome scan`` at a path containing all of your roles or ``ansigenome scan /path/to/roles`` and it will gather stats such as:
- Number of defaults, facts, files and lines found in each role and total them
- Verify if you're missing meta or readme filesWill it change my roles?
````````````````````````Nope. This command is completely read only. All of your custom formatting and content is safe.
Standardize your readmes in an automated way
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~When I started to get to about 5 roles I dreaded making readmes for each one because there's so much boilerplate and duplication. We're programmers, so let's use tools to help us.
``ansigenome gendoc`` will do the same as ``scan`` except it will read your ``meta/main.yml`` file and generate a readme based on the stats it found and also format your readme based on a jinja2 template.
It can generate both RST and MD readmes.
You can use the default template or optionally supply a custom template using
blocks to customize the entire readme to your liking.Will it change my roles?
````````````````````````It will not modify your meta file but it **will overwrite your existing readme file** for each role it's ran against. You can still add custom info to the readme, but this will be done through the meta file, don't worry about that just yet.
Can I see an example of what it generates?
``````````````````````````````````````````Absolutely. This project sprung out of need while working on the `DebOps project `_. There's about 60 roles all using an Ansigenome generated readme.
All of them were fully generated with 0 manual edits.
Augment existing meta files
~~~~~~~~~~~~~~~~~~~~~~~~~~~You might have 35 roles already written and might want Ansigenome to help you make the adjustment over to using Ansigenome.
``ansigenome genmeta`` will take a peek at your meta files for each role, replace certain fields with values you provided to its config (more on this later) and add ansigenome-only fields to that meta file.
If you wanted to migrate over to using Ansigenome then this is what you'll want to run before ``ansigenome gendoc``. After running ``genmeta`` you will be able to take your old readme files and move some of it to the new meta file that ``genmeta`` made for you.
Will it change my roles?
````````````````````````It will rewrite your meta file for each role but it **will not mess with your formatting**. It will only augment a few fields that are missing and overwrite things like the ``galaxy_info.company`` name with what you supplied in the Ansigenome config (more on this later, we're almost there).
Export graphs and requirements files
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Graphs
``````Just run ``ansigenome export -o `` and it will use
Graphviz to create a dependency graph.You can also tweak the size and DPI of the graph with a few flags or even
set the output format to be ``-f dot`` so you can pipe it to a different
Graphviz graphing utility.Requirements files
``````````````````Have a go with ``ansigenome export -t reqs -o `` to
generate a file for consumption by ``ansible-galaxy install -r ``. It also supports the ``-f yml`` flag to use the new yaml format.JSON dump
`````````You can also dump everything Ansigenome gathered to json by running
``ansigenome export -t dump -o ``.You could then feed that to some database back end or a javascript based graphing utility, etc..
Any chance to output to stdout instead of a file?
`````````````````````````````````````````````````Yes, all of the export commands will output to stdout if you omit the ``-o`` flag. The only exception to this is the PNG graph.
Will it change my roles?
````````````````````````Not at all. It just reads a few files.
Create brand new roles
~~~~~~~~~~~~~~~~~~~~~~Everyone loves making new roles right? Well, ``ansigenome init `` will do just that for you. What's different from using ``ansible-galaxy init``? Here, I'll tell you:
- Creates an "Ansigenome ready" meta file
- Creates a ``tests/`` directory and ``.travis.yml`` file for you automaticallyIt uses a tool called `Rolespec `_ for the test code. Don't worry, you don't need to download anything.
You'll also never have to write messy Travis configs again but you can still benefit from Travis itself.
Will it change my roles?
````````````````````````Nah, but it will make a brand new shiny role for you.
Run shell commands in the context of each role
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Sometimes you just want to run a shell command against all of your roles. Similar to how Ansible lets you run adhoc commands on hosts.
``ansigenome -m 'touch foo'`` would create the ``foo`` file in the root directory of each role.
Installation
~~~~~~~~~~~~If you have Ansible installed then you already have all of the dependencies you need to run Ansigenome. Pick one of the way below:
::
# Pick an installation method that agrees with you.
pip install ansigenome
easy_install ansigenome# If you want to live on the edge...
git clone https://github.com/nickjj/ansigenome
cd ansigenome ; sudo python setup.py developQuick start
~~~~~~~~~~~So Ansigenome is installed, well done. Just run ``ansigenome config`` and answer a few questions. You only need to do this once.
At this point you can run any of the commands below.
::
Usage: ansigenome [config|scan|gendoc|genmeta|export|init|run] [--help] [options]
ansigenome config --help
create a necessary config file to make ansigenome workansigenome scan --help
scan a path containing Ansible roles and report back useful statsansigenome gendoc --help
generate a README from the meta file for each roleansigenome genmeta --help
augment existing meta files to be compatible with Ansigenomeansigenome export --help
export roles to a dependency graph, requirements file and moreansigenome init --help
init new roles with a custom meta file and testsansigenome run --help
run shell commands inside of each role's directoryOptions:
--version show program's version number and exit
-h, --help show this help message and exitansigenome command --help for more info on a command
Tips
````- Do not forget to check out the ``--help`` for each command
- Learn how jinja2 extends works, you can use it for the readme template
- You're best off copying the base README and place it next to the custom j2
- Then you can ``{% extends "README.md.j2" %}``- ``gendoc`` accepts ``-f md`` to generate markdown readmes instead of rst
- ``scan``, ``gendoc``, ``genmeta`` and ``run`` don't require a roles path
- It will try ``$PWD/playbooks/roles`` then ``$PWD``
- This allows you to run Ansigenome from your roles path easily- You can write a config out to a custom path with ``-o ``
- The non-home version of the config will be used if found
- Feel free to edit the config file by hand later to change values- The ``export -t reqs`` command accepts a ``-v`` flag to read in a VERSION file
- The ``init`` command accepts a ``-c`` flag
- Supply a comma separated list of Galaxy categories- ``scan``, ``gendoc``, ``genmeta``, ``run`` and ``dump`` accept an ``-l`` flag
- Supply a comma separated list of roles to white list- If you are the only author you do not need to specify ``ansigenome_info.authors``
Template variables
~~~~~~~~~~~~~~~~~~Here's the available variables you can use in your meta file or optional custom readme template:
::
# Access a single author (taken from your config).
author.name
author.company
author.url
author.email
author.twitter
author.github# Access all of the authors.
authors# License.
license.type
license.url# SCM (source control management).
scm.type
scm.host
scm.user
scm.repo_prefix# Dynamic items (they are calculated/normalized for you automatically).
role.name
role.galaxy_name
role.slug# Standard items (you can access any property of these objects).
dependencies
galaxy_info
ansigenome_info# ansigenome_info fields.
galaxy_id : String based ID to find your role on the Galaxy
travis : Boolean to determine if this role is on Travis-CIstatus : Dictionary with info about the status
name : String, currently supported are: beta, deprecated
note : String containing additional information about the statussynopsis : String block containing what your role does
usage : String block containing a detailed usage guide
custom : String block containing anything you wantauthors : List containing information about each author
You can find many meta example files at the `DebOps project `_ page.
Custom readme template
``````````````````````You might decide that the current template doesn't suite your style. That's completely reasonable. You can supply your own readme template and extend the base one.
Just add the path to the custom readme template to your config file. Then copy the base template from this repo to somewhere on your workstation, perhaps next to your custom template.
Then in your custom template you can extend it like this:
::
{% extends "README.md.j2" %}
Available blocks to replace
---------------------------- title
- ansigenome_managed
- badges
- status
- beta
- deprecated
- synopsis
- installation
- dependencies
- standalone
- defaults
- facts
- usage
- authors
- footerContributing
~~~~~~~~~~~~If you would like to contribute then check out `Ansible's contribution guide `_ because this project expects the same requirements and it contains great tips on using git branches.
In addition to that your code must pass the default pep8 style guide. I have Travis running a test to ensure the code follows that guide but your best bet is to find a plugin for your editor if you don't have one already.
Author
~~~~~~Ansigenome was created by Nick Janetakis [email protected].
Special thanks to `@drybjed `_ for coming up with the name of the tool. This project idea spawned from trying to break up the `DebOps project `_ into multiple roles. Neither of us wanted to manually make 50 repos and 50 readmes so I decided to learn Python and make this tool instead.
License
~~~~~~~`GPLv3 `_
.. |PyPI version| image:: https://badge.fury.io/py/ansigenome.png
:target: https://pypi.python.org/pypi/ansigenome
.. |Build status| image:: https://secure.travis-ci.org/nickjj/ansigenome.png
:target: https://travis-ci.org/nickjj/ansigenome