forked from fabiendupont/v2v-demolab-ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinventory.example.yml
46 lines (44 loc) · 1.71 KB
/
inventory.example.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
all:
children:
ManageIQ:
#vars:
# If you want to change the PostgreSQL or Ruby versions
#manageiq_postgresql_version: 9.5
#manageiq_ruby_version: 2.4
children:
database:
hosts:
miq.example.com:
# Specify the disk to use for database storage (mandatory)
manageiq_postgresql_disk: /dev/sdb
# If you want to change the default LVM naming (optional)
#manageiq_postgresql_vg_name: miq_pgsql_vg
#manageiq_postgresql_lv_name: data_lv
ui:
hosts:
miq.example.com:
worker:
hosts:
miq.example.com:
# Specify the disk to use for logs storage
manageiq_logs_disk: /dev/sdb
# If you want to change the default LVM naming (optional)
#manageiq_logs_vg_name: miq_logs_vg
#manageiq_logs_lv_name: data_lv
hosts:
miq.example.com:
# An example to set Ansible credentials on per host basis
#ansible_user: root
#ansible_ssh_password: secret
# If you want to configure Subscription Manager on a RHEL system,
# you can set the following variables:
#manageiq_rhn_username: myuser
#manageiq_rhn_password: secret
#manageiq_rhn_pool: 0123456789abcdef0123456789abcdef
# If you have your own repositories you can also set them by populating
# the rhel_custom_repos variable, as an array of hashes:
#rhel_custom_repos:
# - name: rhel-7-server-rpms
# baseurl: http://data.example.com/repos/rhel-7-server-rpms
# - name: rhel-server-rhscl-7-rpms
# baseurl: http://data.example.com/repos/rhel-server-rhscl-7-rpms