blob: e4c416cf30c594f6938141b6f4cb610d1af60033 (
plain)
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
|
#Default inventory.
#This file should not be modified, instead modify group_vars.
#NOTE
#All kubernetes nodes including the first node are added to inventory dynamically.
#Instances group with children.
instances:
hosts:
#Installer instance.
installer:
#Do not modify.
ansible_host: "{{ installer_ip }}"
#Infra instance.
infra:
#Do not modify.
ansible_host: "{{ infra_ip }}"
children:
#Empty group for nodes, populated dynamically, do not modify please.
nodes:
#The group for resource host, only first entry is considered.
#This host contains onap installer packages including scripts.
resources:
hosts:
resource_host:
ansible_host: "{{ resource_host }}"
|