Skip to content
This repository has been archived by the owner on May 27, 2024. It is now read-only.

Convert ansible-pull example to run with systemd .timer + .service #266

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
56 changes: 34 additions & 22 deletions language_features/ansible_pull.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,38 +19,50 @@
remote_user: root

vars:

# schedule is fed directly to cron
schedule: '*/15 * * * *'

# User to run ansible-pull as from cron
cron_user: root

# File that ansible will use for logs
logfile: /var/log/ansible-pull.log

# Directory to where repository will be cloned
workdir: /var/lib/ansible/local
# This becomes part of the systemd timer unit.
# We want to start soon after the machine boots, and repeat every half an hour.
# The service has 30s randomized delay to avoid a stampede if many machines boot
# at once.
schedule: |
OnBootSec=30 s
OnUnitInactiveSec=30 min
RandomizedDelaySec=30 s

# Repository to check out -- YOU MUST CHANGE THIS
# repo must contain a local.yml file at top level
#repo_url: git://github.com/sfromm/ansible-playbooks.git
repo_url: SUPPLY_YOUR_OWN_GIT_URL_HERE

tasks:

- name: Install ansible
yum: pkg=ansible state=installed

- name: Create local directory to work from
file: path={{workdir}} state=directory owner=root group=root mode=0751
- name: Create unit directory
file:
path: /usr/local/lib/systemd/system/
state: directory

- name: Install timer file
copy:
dest: /usr/local/lib/systemd/system/ansible-pull.timer
content: |
[Timer]
{{ schedule }}

- name: Copy ansible inventory file to client
copy: src=/etc/ansible/hosts dest=/etc/ansible/hosts
owner=root group=root mode=0644
[Install]
WantedBy=default.target

- name: Create crontab entry to clone/pull git repository
template: src=templates/etc_cron.d_ansible-pull.j2 dest=/etc/cron.d/ansible-pull owner=root group=root mode=0644
- name: Install service file
copy:
dest: /usr/local/lib/systemd/system/ansible-pull.service
content: |
[Service]
Type=oneshot
ExecStart=ansible-pull -i localhost, -U {{ repo_url }} --only-if-changed local.yml

- name: Create logrotate entry for ansible-pull.log
template: src=templates/etc_logrotate.d_ansible-pull.j2 dest=/etc/logrotate.d/ansible-pull owner=root group=root mode=0644
- name: Enable timer
systemd:
name: ansible-pull.timer
enabled: true
state: started
daemon_reload: yes
56 changes: 56 additions & 0 deletions language_features/ansible_pull_cron.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# ansible-pull setup
#
# on remote hosts, set up ansible to run periodically using the latest code
# from a particular checkout, in pull based fashion, inverting Ansible's
# usual push-based operating mode.
#
# This particular pull based mode is ideal for:
#
# (A) massive scale out
# (B) continual system remediation
#
# DO NOT RUN THIS AGAINST YOUR HOSTS WITHOUT CHANGING THE repo_url
# TO SOMETHING YOU HAVE PERSONALLY VERIFIED
#
#
---

- hosts: pull_mode_hosts
remote_user: root

vars:

# schedule is fed directly to cron
schedule: '*/15 * * * *'

# User to run ansible-pull as from cron
cron_user: root

# File that ansible will use for logs
logfile: /var/log/ansible-pull.log

# Directory to where repository will be cloned
workdir: /var/lib/ansible/local

# Repository to check out -- YOU MUST CHANGE THIS
# repo must contain a local.yml file at top level
#repo_url: git://github.com/sfromm/ansible-playbooks.git
repo_url: SUPPLY_YOUR_OWN_GIT_URL_HERE

tasks:

- name: Install ansible
yum: pkg=ansible state=installed

- name: Create local directory to work from
file: path={{workdir}} state=directory owner=root group=root mode=0751

- name: Copy ansible inventory file to client
copy: src=/etc/ansible/hosts dest=/etc/ansible/hosts
owner=root group=root mode=0644

- name: Create crontab entry to clone/pull git repository
template: src=templates/etc_cron.d_ansible-pull.j2 dest=/etc/cron.d/ansible-pull owner=root group=root mode=0644

- name: Create logrotate entry for ansible-pull.log
template: src=templates/etc_logrotate.d_ansible-pull.j2 dest=/etc/logrotate.d/ansible-pull owner=root group=root mode=0644