Skip to main content

Whip your Ansible documentation into shape

Project description

Codacy Badge License: MIT

Ansible Scribe

Ansible Scribe sets out to automate as much as it can with regards to getting a role well documented and ready for sharing with the Ansible community via Ansible Galaxy. It tries to push you towards a more easily usable role by others and pushes a few ideas of “best practices” on you:

  1. You should be using roles and separate playbooks. This is the best way to make your code modular and reusable by others.
  2. You should have sane default variables set up to the point that anyone can use your role without having to change variables and it will still successfully run through. This means Ansible Scribe checks for missing and empty variables.
  3. You should have a license file defined.
  4. You should be using CI testing, so it checks for a CI file.
  5. You should use names for all of your tasks as it helps others (including those not as experienced in Ansible) to understand your code.

That being said, Ansible Scribe is not intended to just run and be done. It creates as much of the necessary documentation as it possibly can, but it will not do everything. You will at a minimum need to complete the variables table. You might also have to:

  1. Convert the list of task names into a coherent description if you haven’t provided one (it will write the task names in a list in the README so you can make one).
  2. Fill out any other empty or incomplete portions of the README.md and meta/main.yml files. These will exist if you do not give all of the necessary information up front. Ansible Scribe will not create values for you, in that case it will just create the skeleton of those portions.
  3. Assign settings to the empty default variables in defaults/main.yml if there are any.

Ansible Scribe Does Not:

  • Lint your code
  • Format your code
  • Make warnings for:
    • Deprecated code
    • Using incorrect modules

Other tools exist for those things and Ansible Scribe follows the Unix Philosophy of doing one thing and doing it well. My aim is to take roles you have and make it as easy as possible to get them ready for pushing to Ansible Galaxy as quickly as possible.

What to set up comes from: (https://galaxy.ansible.com/docs/contributing/index.html)

Inputs

Config file (~/.config/ansible-scribe/global.conf) example:

[Paths]
roles = /etc/ansible/roles/
playbooks = /etc/ansible/playbooks/
output = /tmp/ansible-scribe/

[Metadata]
# License type (currently supported = apache, bsd2, bsd3, cc-by, gpl2, gpl3, isc, mit)
repo_license = mit
author = Sam Oehlert
bio = Security Engineer. email: sam.oehlert@gmail.com
company = My Company

[CI]
# What type of CI file you want to use (currently supported = gitlab, travis)
type = gitlab

Role specific config file (~/.config/ansible-scribe/netdata.conf) example:

[versions]
ansible_min = 2.0
container_min = 
role = 1.0

[urls]
repo = https://github.com/soehlert/ansible-role-netdata
branch = master
issue_tracker =

[config]
description = Sets up the Netdata package for distributed real time performance and health monitoring
requirements = N/A
galaxy_tags = netdata deploy
playbook = common.yml

[platforms]
ubuntu = 16.04, 18.04

Pass it a role:

  1. reads all the variables and creates a table for them in the readme.

    Variable Purpose Default
    apache_port defines port for apache to listen on 80
    test a variable for testing none
  2. Makes sure all the variables are in the defaults/main.yml file

  3. Takes task names and sets them in a list in readme.md file to give you a skeleton to build off of

  4. Reads playbook in order to

  5. Add copy of example playbook to readme

  6. Look for any roles that have namespace.rolename setup (adds to dependencies)

  7. Warns if you are missing CI files or have empty CI files

Make file:

Outputs

  1. README.md
  2. defaults/main.yml (if it doesn’t exist)
  3. License file
  4. meta/main.yml
  5. CI file
  6. Warnings for:
    1. CI files:
      1. None found - created empty file at $ci_file_location
      2. Found empty file
    2. Empty defaults variables
    3. No task names

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ansible_scribe-0.5.0.tar.gz (4.0 kB view hashes)

Uploaded Source

Built Distribution

ansible_scribe-0.5.0-py3-none-any.whl (3.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page