This repository has been archived by the owner on Nov 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 4bdb152
Showing
38 changed files
with
1,056 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
--- | ||
skip_list: | ||
- '204' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
--- | ||
_extends: auto-maintenance |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
--- | ||
_extends: auto-maintenance |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
*.retry | ||
*.log | ||
.molecule | ||
.cache | ||
__pycache__/ | ||
.pytest_cache | ||
.tox |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
--- | ||
dist: xenial | ||
sudo: required | ||
language: python | ||
python: | ||
- 3.5 | ||
cache: pip | ||
services: | ||
- docker | ||
env: | ||
- ANSIBLE=2.7 | ||
- ANSIBLE=2.8 | ||
- ANSIBLE=2.9 | ||
matrix: | ||
fast_finish: true | ||
install: | ||
- pip3 install tox-travis git-semver | ||
script: | ||
- ./.travis/test.sh | ||
deploy: | ||
provider: script | ||
skip_cleanup: true | ||
script: .travis/releaser.sh | ||
on: | ||
branch: master | ||
branches: | ||
only: | ||
- master | ||
notifications: | ||
webhooks: https://galaxy.ansible.com/api/v1/notifications/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
#!/bin/bash | ||
# | ||
# Copyright (C) 2018 Pawel Krupa (@paulfantom) - All Rights Reserved | ||
# Permission to copy and modify is granted under the MIT license | ||
# | ||
# Script to automatically do a couple of things: | ||
# - generate a new tag according to semver (https://semver.org/) | ||
# - generate CHANGELOG.md by using https://github.com/skywinder/github-changelog-generator | ||
# - sync CHANGELOG with GitHub releases by using https://github.com/mattbrictson/chandler | ||
# | ||
# Tags are generated by searching for a keyword in last commit message. Keywords are: | ||
# - [patch] or [fix] to bump patch number | ||
# - [minor], [feature] or [feat] to bump minor number | ||
# - [major] or [breaking change] to bump major number | ||
# All keywords MUST be surrounded with square braces. | ||
# | ||
# Script uses git mechanisms for locking, so it can be used in parallel builds | ||
# | ||
# Requirements: | ||
# - GH_TOKEN variable set with GitHub token. Access level: repo.public_repo | ||
# - docker | ||
# - git-semver python package (pip install git-semver) | ||
|
||
# Exit when latest commit is tagged | ||
[[ $(git tag --points-at) ]] && exit 0 | ||
|
||
# Some basic variables | ||
GIT_MAIL="[email protected]" | ||
GIT_USER="cloudalchemybot" | ||
ORGANIZATION=$(echo "$TRAVIS_REPO_SLUG" | awk -F '/' '{print $1}') | ||
PROJECT=$(echo "$TRAVIS_REPO_SLUG" | awk -F '/' '{print $2}') | ||
GALAXY_URL="https://galaxy.ansible.com/${ORGANIZATION}/${PROJECT#ansible-}" | ||
|
||
# Git config | ||
git config --global user.email "${GIT_MAIL}" | ||
git config --global user.name "${GIT_USER}" | ||
GIT_URL=$(git config --get remote.origin.url) | ||
GIT_URL=${GIT_URL#*//} | ||
|
||
# Generate TAG | ||
GIT_TAG=none | ||
echo "Last commit message: $TRAVIS_COMMIT_MESSAGE" | ||
case "${TRAVIS_COMMIT_MESSAGE}" in | ||
*"[patch]"*|*"[fix]"*|*"[bugfix]"* ) GIT_TAG=$(git semver --next-patch) ;; | ||
*"[minor]"*|*"[feat]"*|*"[feature]"* ) GIT_TAG=$(git semver --next-minor) ;; | ||
*"[major]"*|*"[breaking change]"* ) GIT_TAG=$(git semver --next-major) ;; | ||
*) echo "Keyword not detected. Doing nothing" ;; | ||
esac | ||
if [ "$GIT_TAG" != "none" ]; then | ||
echo "Assigning new tag: $GIT_TAG" | ||
git tag "$GIT_TAG" -a -m "Automatic tag generation for travis build no. $TRAVIS_BUILD_NUMBER" | ||
git push "https://${GH_TOKEN}:@${GIT_URL}" --tags || exit 0 | ||
fi | ||
|
||
# Generate CHANGELOG.md | ||
git checkout master | ||
git pull | ||
docker run -it --rm -v "$(pwd)":/usr/local/src/your-app ferrarimarco/github-changelog-generator:1.14.3 \ | ||
-u "${ORGANIZATION}" -p "${PROJECT}" --token "${GH_TOKEN}" \ | ||
--release-url "${GALAXY_URL}" \ | ||
--unreleased-label "**Next release**" --no-compare-link | ||
|
||
git add CHANGELOG.md | ||
git commit -m '[ci skip] Automatic changelog update' | ||
|
||
git push "https://${GH_TOKEN}:@${GIT_URL}" || exit 0 | ||
|
||
# Sync changelog to github releases | ||
if [ "$GIT_TAG" != "none" ]; then | ||
docker run -e CHANDLER_GITHUB_API_TOKEN="${GH_TOKEN}" -v "$(pwd)":/chandler -ti whizark/chandler push "${GIT_TAG}" | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/bin/bash | ||
|
||
set -euo pipefail | ||
|
||
if [ ! -d "./molecule/latest" ]; then | ||
tox -- molecule test --all | ||
exit 0 | ||
fi | ||
|
||
if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then | ||
tox -- molecule test --all --destroy always | ||
else | ||
tox -- molecule test -s default --destroy always | ||
if [ -d "./molecule/alternative" ]; then | ||
tox -- molecule test -s alternative --destroy never | ||
fi | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
extends: default | ||
ignore: | | ||
.travis/ | ||
.travis.yml | ||
meta/ | ||
|
||
rules: | ||
braces: | ||
max-spaces-inside: 1 | ||
level: error | ||
brackets: | ||
max-spaces-inside: 1 | ||
level: error | ||
line-length: disable |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Change Log | ||
|
||
|
||
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
# Contributor Guideline | ||
|
||
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!! | ||
|
||
## Communication | ||
|
||
### IRC | ||
|
||
You can talk with us on #cloudalchemy channel on freenode. | ||
|
||
### GitHub repositories | ||
|
||
Much of the issues, goals and ideas are tracked in the respective projects in GitHub. Please use this channel to report | ||
bugs. | ||
|
||
## git and GitHub | ||
|
||
In order to contribute code please: | ||
|
||
1. Fork the project on GitHub | ||
2. Clone the project | ||
3. Add changes (and tests) | ||
4. Commit and push | ||
5. Create a merge-request | ||
|
||
To have your code merged, see the expectations listed below. | ||
|
||
You can find a well-written guide [here](https://help.github.com/articles/fork-a-repo). | ||
|
||
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](https://wiki.openstack.org/wiki/GitCommitMessages) and | ||
[here](http://robots.thoughtbot.com/5-useful-tips-for-a-better-commit-message). | ||
|
||
## Releases | ||
|
||
We try to stick to semantic versioning and our releases are automated. Release is created by assigning a keyword (in a | ||
way similar to travis [`[ci skip]`](https://docs.travis-ci.com/user/customizing-the-build#Skipping-a-build)) to a | ||
commit with merge request. Available keywords are (square brackets are important!): | ||
|
||
* `[patch]`, `[fix]` - for PATCH version release | ||
* `[minor]`, `[feature]`, `[feat]` - for MINOR version release | ||
* `[major]`, `[breaking change]` - for MAJOR version release | ||
|
||
## Changelog | ||
|
||
Changelog is generateg automatically on every merged Pull Request and all information is taken from github issues, PRs | ||
and labels. | ||
|
||
## Expectations | ||
|
||
### Keep it simple | ||
|
||
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](https://en.wikipedia.org/wiki/KISS_principle). | ||
|
||
### Be explicit | ||
|
||
* 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. | ||
|
||
|
||
### Add tests | ||
|
||
We are striving to use at least two test scenarios located in [/molecule](molecule) directory. First one | ||
([default](molecule/default)) is testing default configuration without any additional variables, second one | ||
([alternative](molecule/alternative)) is testing what happens when many variables from | ||
[/defaults/main.yml](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](molecule/default/tests)). | ||
More information about: | ||
- [testinfra](http://testinfra.readthedocs.io/en/latest/index.html) | ||
- [molecule](https://molecule.readthedocs.io/en/latest/index.html) | ||
|
||
### Follow best practices | ||
|
||
Please follow [ansible best practices](http://docs.ansible.com/ansible/latest/playbooks_best_practices.html) and | ||
especially provide meaningful names to tasks and even comments where needed. | ||
|
||
Our test framework automatically lints code with [`yamllint`](https://yamllint.readthedocs.io) and | ||
[`ansible-lint`](https://github.com/willthames/ansible-lint) programs so be sure to follow their rules. | ||
|
||
Remember: Code is generally read much more often than written. | ||
|
||
### Use Markdown | ||
|
||
Wherever possible, please refrain from any other formats and stick to simple markdown. | ||
|
||
## Requirements regarding roles design | ||
|
||
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 (wherever possible we try to support 2 previous ansible versions) | ||
- systemd as the only available process manager | ||
- at least latest debian and CentOS distributions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2018-2019 Pawel Krupa and Pawel Krupa | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
# Ansible Role: smokeping_prober | ||
|
||
[![Build Status](https://travis-ci.com/cloudalchemy/ansible-smokeping_prober.svg?branch=master)](https://travis-ci.com/cloudalchemy/ansible-smokeping_prober) | ||
[![License](https://img.shields.io/badge/license-MIT%20License-brightgreen.svg)](https://opensource.org/licenses/MIT) | ||
[![Ansible Role](https://img.shields.io/badge/ansible%20role-cloudalchemy.smokeping_prober-blue.svg)](https://galaxy.ansible.com/cloudalchemy/smokeping_prober/) | ||
[![GitHub tag](https://img.shields.io/github/tag/cloudalchemy/ansible-smokeping_prober.svg)](https://github.com/cloudalchemy/ansible-smokeping_prober/tags) | ||
[![IRC](https://img.shields.io/badge/irc.freenode.net-%23cloudalchemy-yellow.svg)](https://kiwiirc.com/nextclient/#ircs://irc.freenode.net/#cloudalchemy) | ||
|
||
## Description | ||
|
||
Deploy [smokeping_prober](https://github.com/SuperQ/smokeping_prober) using ansible. | ||
|
||
## Requirements | ||
|
||
- Ansible >= 2.7 (It might work on previous versions, but we cannot guarantee it) | ||
|
||
## Role Variables | ||
|
||
All variables which can be overridden are stored in [defaults/main.yml](defaults/main.yml) file as well as in table below. | ||
|
||
| Name | Default Value | Description | | ||
| -------------- | ------------- | -----------------------------------| | ||
| `smokeping_prober_version` | "0.3.0" | smokeping prober package version. Also accepts `latest` as parameter. | | ||
| `smokeping_prober_web_listen_address` | "0.0.0.0:9374" | Address on which smokeping_prober will listen | | ||
| `smokeping_prober_web_telemetry_path` | "/metrics" | Endpoint serving metrics data | | ||
| `smokeping_prober_buckets` | '' | A comma delimited list of buckets to use. | | ||
| `smokeping_prober_ping_interval` | '1s' | Ping interval duration | | ||
| `smokeping_prober_privileged` | true | Run in privileged ICMP mode | | ||
| `smokeping_prober_hosts` | [] | List of hosts to ping | | ||
|
||
## Example | ||
|
||
### Playbook | ||
|
||
Use it in a playbook as follows: | ||
```yaml | ||
- hosts: all | ||
roles: | ||
- cloudalchemy.smokeping_prober | ||
``` | ||
### Demo site | ||
We provide demo site for full monitoring solution based on prometheus and grafana. Repository with code and links to running instances is [available on github](https://github.com/cloudalchemy/demo-site) and site is hosted on [DigitalOcean](https://digitalocean.com). | ||
## Local Testing | ||
The preferred way of locally testing the role is to use Docker and [molecule](https://github.com/metacloud/molecule) (v2.x). You will have to install Docker on your system. See "Get started" for a Docker package suitable to for your system. | ||
We are using tox to simplify process of testing on multiple ansible versions. To install tox execute: | ||
```sh | ||
pip3 install tox | ||
``` | ||
To run tests on all ansible versions (WARNING: this can take some time) | ||
```sh | ||
tox | ||
``` | ||
To run a custom molecule command on custom environment with only default test scenario: | ||
```sh | ||
tox -e py35-ansible28 -- molecule test -s default | ||
``` | ||
For more information about molecule go to their [docs](http://molecule.readthedocs.io/en/latest/). | ||
|
||
If you would like to run tests on remote docker host just specify `DOCKER_HOST` variable before running tox tests. | ||
|
||
## Travis CI | ||
|
||
Combining molecule and travis CI allows us to test how new PRs will behave when used with multiple ansible versions and multiple operating systems. This also allows use to create test scenarios for different role configurations. As a result we have a quite large test matrix which will take more time than local testing, so please be patient. | ||
|
||
## Contributing | ||
|
||
See [contributor guideline](CONTRIBUTING.md). | ||
|
||
## License | ||
|
||
This project is licensed under MIT License. See [LICENSE](/LICENSE) for more details. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
smokeping_prober_version: 0.3.0 | ||
|
||
smokeping_prober_web_listen_address: "0.0.0.0:9374" | ||
smokeping_prober_web_telemetry_path: "/metrics" | ||
|
||
smokeping_prober_buckets: '' | ||
smokeping_prober_ping_interval: '1s' | ||
smokeping_prober_privileged: true | ||
smokeping_prober_hosts: [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
- name: restart smokeping_prober | ||
become: true | ||
systemd: | ||
daemon_reload: true | ||
name: smokeping_prober | ||
state: restarted |
Oops, something went wrong.