Fedora Infrastructure Ansible Repository
Find a file
Patrick Uiterwijk 13cc604141 Ansible keeps adding more fields to _result. Let's just use inclusion rather than exclusion
Signed-off-by: Patrick Uiterwijk <puiterwijk@redhat.com>
2017-10-27 23:09:37 +00:00
callback_plugins First round of porting callbacks to work with Ansible-2.4.0 2017-10-16 15:53:18 +00:00
files Revert "see if we can use a letsencrypt ssl cert for wcidff" 2017-10-12 20:57:24 +00:00
filter_plugins Try adding greenwave and waiverdb to the stg fedmsg routing policy. 2017-10-19 15:19:46 +00:00
handlers Rename this handler. 2017-08-27 20:02:56 +00:00
inventory RHEL7.4 needs more memory 2017-10-27 21:15:37 +00:00
library builders: initial pass at a ARMv7 virt builder 2017-04-13 17:58:50 +00:00
playbooks Define loopabull01 prod 2017-10-27 20:34:27 +00:00
roles Only log errors 2017-10-27 23:59:37 +02:00
scripts Ansible keeps adding more fields to _result. Let's just use inclusion rather than exclusion 2017-10-27 23:09:37 +00:00
tasks Make the yumrepos task behave as expected on pagure-stg 2017-10-11 21:28:21 +02:00
vars add fedora26 image here 2017-08-16 06:08:41 +00:00
.gitignore Migrate a bunch of things to roles. Thanks to misc! 2013-08-19 20:12:26 +00:00
CONVENTIONS Fix typo in doc 2016-04-04 14:33:21 +00:00
master.yml Re-enable bodhi-backend for master 2017-10-25 02:09:12 +02:00
README Undo test 2016-11-01 09:42:09 +00:00
README.cloud Update instructions for deleting transient cloud nodes. 2016-04-01 14:19:23 +00:00
TODO restructure virt to be more like cloud creation 2013-05-03 16:56:38 +00:00

== ansible repository/structure ==

files - files and templates for use in playbooks/tasks
      - subdirs for specific tasks/dirs highly recommended

inventory - where the inventory and additional vars is stored
          - All files in this directory in ini format 
          - added together for total inventory
  group_vars: 
          - per group variables set here in a file per group 
  host_vars: 
          - per host variables set here in a file per host 

library - library of custom local ansible modules

playbooks - collections of plays we want to run on systems

  groups: groups of hosts configured from one playbook.
  
  hosts: playbooks for single hosts. 

  manual: playbooks that are only run manually by an admin as needed.

tasks - snippets of tasks that should be included in plays

roles - specific roles to be use in playbooks. 
        Each role has it's own files/templates/vars

filter_plugins - Jinja filters

master.yml - This is the master playbook, consisting of all 
             current group and host playbooks. Note that the 
             daily cron doesn't run this, it runs even over
             playbooks that are not yet included in master. 
             This playbook is usefull for making changes over 
             multiple groups/hosts usually with -t (tag). 

== Paths ==

public path for everything is:

 /srv/web/infra/ansible

private path - which is sysadmin-main accessible only is:

 /srv/private/ansible

In general to run any ansible playbook you will want to run:

sudo -i ansible-playbook /path/to/playbook.yml

== Scheduled check-diff ==

Every night a cron job runs over all playbooks under playbooks/{groups}{hosts}
with the ansible --check --diff options. A report from this is sent to 
sysadmin-logs. In the ideal state this report would be empty. 

== Idempotency ==

All playbooks should be idempotent. Ie, if run once they should bring the 
machine(s) to the desired state, and if run again N times after that they should
make 0 changes (because the machine(s) are in the desired state). 
Please make sure your playbooks are idempotent. 

== Can be run anytime ==

When a playbook or change is checked into ansible you should assume 
that it could be run at ANY TIME. Always make sure the checked in state
is the desired state. Always test changes when they land so they don't 
surprise you later.