Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/theforeman/foreman_ansible
:arrow_forward: Ansible integration in Foreman
https://github.com/theforeman/foreman_ansible
ansible foreman hacktoberfest
Last synced: about 1 month ago
JSON representation
:arrow_forward: Ansible integration in Foreman
- Host: GitHub
- URL: https://github.com/theforeman/foreman_ansible
- Owner: theforeman
- License: gpl-3.0
- Created: 2015-10-24T15:53:48.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2024-09-25T09:27:43.000Z (about 2 months ago)
- Last Synced: 2024-09-26T20:58:25.284Z (about 2 months ago)
- Topics: ansible, foreman, hacktoberfest
- Language: JavaScript
- Homepage:
- Size: 2.03 MB
- Stars: 211
- Watchers: 23
- Forks: 111
- Open Issues: 25
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG
- License: LICENSE
Awesome Lists containing this project
README
[![Code Climate](https://codeclimate.com/github/theforeman/foreman_ansible/badges/gpa.svg)](https://codeclimate.com/github/theforeman/foreman_ansible)
[![Gem Version](https://badge.fury.io/rb/foreman_ansible.svg)](https://badge.fury.io/rb/foreman_ansible)
[![GPL License](https://img.shields.io/github/license/theforeman/foreman_ansible.svg)](https://github.com/theforeman/foreman_ansible/blob/master/LICENSE)# Foreman Ansible :arrow_forward:
Reporting and facts import from Ansible to Foreman.
* Main website: [theforeman.org](https://theforeman.org)
* Plugin manual: [foreman_ansible manual](https://theforeman.org/plugins/foreman_ansible)
* ServerFault tag: [Foreman](https://serverfault.com/questions/tagged/foreman)
* Issues: [foreman ansible on Redmine](https://projects.theforeman.org/projects/ansible/issues)
* Chat and forum: [https://theforeman.org/support.html](https://theforeman.org/support.html)## Features
* Import facts
* Monitor playbook and Ansible runs runtime
* Sends Ansible reports to Foreman that contain what changed on your system after an ansible run.
* Stores a list of roles applicable to your hosts and 'plays' them
* Looking for an Ansible dynamic inventory for Foreman? Use [theforeman.foreman.foreman](https://github.com/theforeman/foreman-ansible-modules/blob/develop/plugins/inventory/foreman.py)## Documentation (installation and configuration)
Check out the official manual at [theforeman.org](http://theforeman.org/plugins/foreman_ansible/2.x/index.html)##### Registering a new host in Foreman
![sign up gif](http://i.imgur.com/mlnVFJj.gif)##### Host with failed and successful reports
![reports](http://i.imgur.com/1ySO4sh.png)##### Assigning roles to a host and 'playing' them
![role list](http://i.imgur.com/UyeZIq8.png)
![role play](http://i.imgur.com/eU4RENK.png)
![multiple role play](http://i.imgur.com/uoIiKJ5.png)## Compatibility
| Foreman | Plugin |
| ---------------:| --------------:|
| >= 1.15 | 1.4 |
| >= 1.16 | 2.0 |
| >= 1.18 | 2.2 |
| >= 1.21 | 2.3 |### Devs
The callback sends a POST request to /api/v2/hosts/facts with the format you can see [in the API docs](http://theforeman.org/api/1.20/apidoc/v2/hosts/facts.html).
Facts must contain the output of `ansible -m setup $HOSTNAME`, plus a '_type' and '_timestamp' keys. You can see an example on test/fixtures/sample_facts.json in this repository.
After that request, you should have a host registered in Foreman with the Ansible facts. It takes into account some facter and ohai facts if these are available on the system as well.
## Copyright
Copyright (c) Daniel Lobato Garcia
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.You should have received a copy of the GNU General Public License
along with this program. If not, see .