mono-infrastructure/ansible/playbooks/role-rocky-ipa.yml

65 lines
1.7 KiB
YAML
Raw Normal View History

2020-12-10 07:33:09 +00:00
---
2020-12-10 07:42:05 +00:00
# Creates the first server for an IPA infrastructure
2020-12-11 21:00:14 +00:00
# Recommended specs for the IPA systems, that scale based on number of objects:
# CPU: 2 cores
# Memory: 4GB
# Storage: 10G /var/lib/dirsrv
# System fully up to date
2021-01-10 04:47:18 +00:00
# Define "host" as a hostgroup name or a single host
2020-12-10 07:33:09 +00:00
- name: Configure IPA server
2021-01-10 04:47:18 +00:00
hosts: "{{ host }}"
2020-12-10 07:33:09 +00:00
become: true
vars_files:
2021-01-03 05:18:47 +00:00
- vars/vaults/encpass.yml
2020-12-10 07:33:09 +00:00
2020-12-10 23:11:41 +00:00
# This is to try to avoid the handler issue in pre/post tasks
handlers:
- import_tasks: handlers/main.yml
2020-12-10 23:11:41 +00:00
2020-12-10 18:07:43 +00:00
pre_tasks:
- name: Check if ansible cannot be run here
stat:
path: /etc/no-ansible
register: no_ansible
- name: Verify if we can run ansible
assert:
that:
- "not no_ansible.stat.exists"
success_msg: "We are able to run on this node"
fail_msg: "/etc/no-ansible exists - skipping run on this node"
2020-12-10 18:07:43 +00:00
2020-12-11 07:39:15 +00:00
- name: Ensure 'dns=none' is set for Network Manager to avoid change
2020-12-10 18:07:43 +00:00
ini_file:
path: /etc/NetworkManager/NetworkManager.conf
state: present
2020-12-11 07:39:15 +00:00
no_extra_spaces: true
2020-12-10 18:07:43 +00:00
section: main
option: dns
value: none
owner: root
group: root
2020-12-11 23:07:58 +00:00
mode: '0644'
2020-12-11 07:39:15 +00:00
backup: true
2020-12-10 18:07:43 +00:00
notify:
- reload_networkmanager
2020-12-10 07:33:09 +00:00
roles:
2020-12-12 18:16:37 +00:00
- role: freeipa.ansible_freeipa.ipaserver
state: present
2020-12-10 07:33:09 +00:00
2020-12-10 18:07:43 +00:00
post_tasks:
- name: Touching run file that ansible has ran here
file:
path: /var/log/ansible.run
state: touch
2020-12-11 07:39:15 +00:00
mode: '0644'
2020-12-11 21:00:14 +00:00
owner: root
2020-12-11 07:39:15 +00:00
group: root
2020-12-11 22:20:26 +00:00
2020-12-16 01:26:57 +00:00
- name: Turn on reverse zone syncing
freeipa.ansible_freeipa.ipadnsconfig:
2020-12-11 22:20:26 +00:00
ipaadmin_password: '{{ ipaadmin_password }}'
allow_sync_ptr: true
...