Whip your Ansible documentation into shape
Project description
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:
- You should be using roles and separate playbooks. This is the best way to make your code modular and reusable by others.
- 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.
- You should have a license file defined.
- You should be using CI testing, so it checks for a CI file.
- 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:
- 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).
- 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.
- 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:
-
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 -
Makes sure all the variables are in the defaults/main.yml file
-
Takes task names and sets them in a list in readme.md file to give you a skeleton to build off of
-
Reads playbook in order to
-
Add copy of example playbook to readme
-
Look for any roles that have namespace.rolename setup (adds to dependencies)
-
Warns if you are missing CI files or have empty CI files
Make file:
- Make roles creates files in default file location outside of role path
- Make overwrite creates files in role path
- Make install creates empty config file
- Makefile dynamic targets for each role (https://stackoverflow.com/questions/22754778/dynamic-makefile-target)
Outputs
- README.md
- defaults/main.yml (if it doesn’t exist)
- License file
- meta/main.yml
- CI file
- Warnings for:
- CI files:
- None found - created empty file at $ci_file_location
- Found empty file
- Empty defaults variables
- No task names
- CI files:
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file ansible_scribe-0.5.0.tar.gz
.
File metadata
- Download URL: ansible_scribe-0.5.0.tar.gz
- Upload date:
- Size: 4.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 81279729bf2de042f75c37478c2a96d35fd19a8375686b906b77db724c3fafc6 |
|
MD5 | db05b7958d91db596a25382e4fed4c04 |
|
BLAKE2b-256 | 52fa95c599182d8bcab40162fc3728d86b99b1cd8f3dc467cb5b2fefcc7c3941 |
File details
Details for the file ansible_scribe-0.5.0-py3-none-any.whl
.
File metadata
- Download URL: ansible_scribe-0.5.0-py3-none-any.whl
- Upload date:
- Size: 3.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6aafa7b3d8f2ce59fa1440e44062fdc9b0ee391d6a99e9956c26026fdc5cedcd |
|
MD5 | 9201343a9683b4153a5ef23616eb7f3a |
|
BLAKE2b-256 | ca22eb477493bc693cd73381c55de90470c9e468f40614288c6baf5e2696a183 |