Skip to content

Ansible Spiekbriefje

Ansible is een opkomende automatiseringstool voor IT-beheer, ontwikkeld op basis van Python. Het combineert de voordelen van vele beheertools (puppet, cfengine, chef, func, fabric) en implementeert functies zoals batch-systeemconfiguratie, batch-programma-implementatie en batch-uitvoering van opdrachten.

Aan de slag

Hosts en Groepen (Hosts and Groups)

$ sudo mkdir /etc/ansible
$ sudo vim /etc/ansible/hosts

[example]
192.0.2.101
192.0.2.102

Playbook uitvoeren

$ ansible-playbook playbook.yml

Taken (Tasks)

- hosts: all
  user: root
  sudo: no
  vars:
    aaa: bbb
  tasks:
    - ...
  handlers:
    - ...

Inclusies (Includes)

tasks:
  - include: db.yml
handlers:
  - include: db.yml user=timmy

Triggers

handlers:
  - name: start apache2
    action: service name=apache2 state=started

tasks:
  - name: install apache
    action: apt pkg=apache2 state=latest
    notify:
      - start apache2

Variabelen

- host: lol
  vars_files:
    - vars.yml
  vars:
    project_root: /etc/xyz
  tasks:
    - name: Create the SSH directory.
      file: state=directory path=${project_root}/home/.ssh/
      only_if: "$vm == 0"

Rollen (Roles)

- host: xxx
  roles:
    - db
    - { role:ruby, sudo_user:$user }
    - web

# Gebruik:
# roles/db/tasks/*.yml
# roles/db/handlers/*.yml

Foutafhandeling

- name: my task
  command: ...
  register: result
  failed_when: "'FAILED' in result.stderr"

  ignore_errors: yes

  changed_when: "result.rc != 2"

Omgevingsvariabelen

vars:
  local_home: "{{ lookup('env','HOME') }}"