-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path6_Ansible_Basic_Requirements.yml
31 lines (24 loc) · 1.04 KB
/
6_Ansible_Basic_Requirements.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
---
- hosts: localhost
become: false
gather_facts: false
vars:
post_install_message: |
https://access.redhat.com/documentation/en-us/reference_architectures/2021/html-single/deploying_ansible_automation_platform_2.1#prerequisites
16 GB of RAM for controller nodes and execution nodes
8 GB of RAM for private automation hub nodes
4 CPUs for controller nodes and execution nodes
2 CPUs for private automation hub nodes
5 GB /tmp for use during setup
20 GB+ disk space for database node
40 GB+ disk space for non database nodes
DHCP reservations use infinite leases to deploy the cluster with static IP addresses.
DNS records for all nodes
Red Hat Enterprise Linux 8.4 or later 64-bit (x86) installed for all nodes
Chrony configured for all nodes
ansible-core version 2.11 or later installed for all nodes
tasks:
- name: Basic Requirements
debug: msg={{ post_install_message.split('\n') }}
- pause:
prompt: "Press ENTER to continue"