This document provides an overview of how you can participate in improving this project or extending it. We are grateful for all your help: bug reports and fixes, code contributions, documentation or ideas. Feel free to join, we appreciate your support!!
Much of the issues, goals and ideas are tracked in the respective projects in GitHub. Please use this channel to report bugs, ask questions, and request new features .
In order to contribute code please:
- Fork the project on GitHub
- Clone the project
- Add changes (and tests)
- Commit and push
- Create a merge-request
To have your code merged, see the expectations listed below.
You can find a well-written guide here.
Please follow common commit best-practices. Be explicit, have a short summary, a well-written description and references. This is especially important for the merge-request.
Some great guidelines can be found here and here.
We try to stick to semantic versioning and our releases are automated. Release is created by assigning a keyword (in a
way similar to circle ci keyword [ci skip]
)
to a commit with merge request. Available keywords are (square brackets are important!):
[patch]
,[fix]
,[bugfix]
- for PATCH version release[minor]
,[feature]
,[feat]
- for MINOR version release[major]
,[breaking change]
- for MAJOR version release
Changelog is generated automatically during release process and all information is taken from github issues, PRs and labels.
We try to provide production ready ansible roles which should be as much zero-conf as possible but this doesn't mean to overcomplicate things. Just follow KISS.
- Please avoid using nonsensical property and variable names.
- Use self-describing attribute names for user configuration.
- In case of failures, communicate what happened and why a failure occurs to the user. Make it easy to track the code or action that produced the error. Try to catch and handle errors if possible to provide improved failure messages.
We are striving to use at least two test scenarios located in /molecule directory. First one
(default) is testing default configuration without any additional variables, second one
(alternative) is testing what happens when many variables from
/defaults/main.yml are changed. When adding new functionalities please add tests to proper
scenarios. Tests are written in testinfra framework and are located in /tests
subdirectory of scenario directory
(for example default tests are in /molecule/default/tests).
More information about:
Please follow ansible best practices and especially provide meaningful names to tasks and even comments where needed.
Our test framework automatically lints code with yamllint
,
ansible-lint
, and flake8
programs
so be sure to follow their rules.
Remember: Code is generally read much more often than written.
Wherever possible, please refrain from any other formats and stick to simple markdown.
We are trying to create the best and most secure installation method for non-containerized prometheus stack components. To accomplish this all roles need to support:
- current and at least one previous ansible version
- systemd as the only available process manager
- at least latest debian and CentOS distributions