-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathinventory.lab
106 lines (87 loc) · 3.67 KB
/
inventory.lab
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# This is the AAP enterprise installer inventory file
# Please consult the docs if you're unsure what to add
# For all optional variables please consult the included README.md
# or the Red Hat documentation:
# https://docs.redhat.com/en/documentation/red_hat_ansible_automation_platform/2.5/html/containerized_installation
# This section is for your AAP Gateway host(s)
# -----------------------------------------------------
[automationgateway]
lab3.example.com
lab4.example.com
# This section is for your AAP Controller host(s)
# -----------------------------------------------------
[automationcontroller]
lab2.example.com
# This section is for your AAP Execution host(s)
# -----------------------------------------------------
[execution_nodes]
lab3.example.com
# This section is for your AAP Automation Hub host(s)
# -----------------------------------------------------
[automationhub]
lab3.example.com
# This section is for your AAP EDA Controller host(s)
# -----------------------------------------------------
[automationeda]
lab4.example.com
# This section is for your AAP database host
# -----------------------------------------------------
[database]
lab1.example.com
# This section is for your AAP redis host(s)
# -----------------------------------------------------
#[redis]
[all:vars]
# Common variables
# https://docs.redhat.com/en/documentation/red_hat_ansible_automation_platform/2.5/html/containerized_installation/appendix-inventory-files-vars#ref-general-inventory-variables
# -----------------------------------------------------
# Bundle
bundle_install=true
# The bundle directory must include /bundle in the path
bundle_dir='{{ lookup("ansible.builtin.env", "PWD") }}/bundle'
# Red Hat registry authentication for non-bundle
#registry_username=your-rhn-username
#registry_password=your-rhn-password
# Database
postgresql_admin_username=postgres
postgresql_admin_password=Foobar_12
# Redis
redis_mode=standalone
# Postinstall
controller_license_file=/home/admin/aap_manifest.zip
#controller_postinstall=true
#controller_postinstall_dir=/home/admin/aap_postinstall
# AAP Gateway
# https://docs.redhat.com/en/documentation/red_hat_ansible_automation_platform/2.5/html/containerized_installation/appendix-inventory-files-vars#ref-gateway-variables
# -----------------------------------------------------
gateway_admin_password=Foobar_12
gateway_pg_host=lab1.example.com
gateway_pg_database=gateway
gateway_pg_username=admin
gateway_pg_password=Foobar_12
# AAP Controller
# https://docs.redhat.com/en/documentation/red_hat_ansible_automation_platform/2.5/html/containerized_installation/appendix-inventory-files-vars#ref-controller-variables
# -----------------------------------------------------
controller_admin_password=Foobar_12
controller_pg_host=lab1.example.com
controller_pg_database=controller
controller_pg_username=admin
controller_pg_password=Foobar_12
# AAP Automation Hub
# https://docs.redhat.com/en/documentation/red_hat_ansible_automation_platform/2.5/html/containerized_installation/appendix-inventory-files-vars#ref-hub-variables
# -----------------------------------------------------
hub_admin_password=Foobar_12
hub_pg_host=lab1.example.com
hub_pg_database=hub
hub_pg_username=admin
hub_pg_password=Foobar_12
hub_galaxy_importer={'run_ansible_lint': True, 'offline_ansible_lint': True}
hub_seed_collections=false
# AAP EDA Controller
# https://docs.redhat.com/en/documentation/red_hat_ansible_automation_platform/2.5/html/containerized_installation/appendix-inventory-files-vars#event-driven-ansible-controller
# -----------------------------------------------------
eda_admin_password=Foobar_12
eda_pg_host=lab1.example.com
eda_pg_database=eda
eda_pg_username=admin
eda_pg_password=Foobar_12