blob: e4c416cf30c594f6938141b6f4cb610d1af60033 [file] [log] [blame]
Michal Zegan3bf88a82019-08-22 14:55:16 +02001#Default inventory.
2#This file should not be modified, instead modify group_vars.
3#NOTE
4#All kubernetes nodes including the first node are added to inventory dynamically.
5#Instances group with children.
6instances:
7 hosts:
8
9#Installer instance.
10 installer:
11 #Do not modify.
12 ansible_host: "{{ installer_ip }}"
13
14#Infra instance.
15 infra:
16 #Do not modify.
17 ansible_host: "{{ infra_ip }}"
18
19 children:
20 #Empty group for nodes, populated dynamically, do not modify please.
21 nodes:
22
23#The group for resource host, only first entry is considered.
24#This host contains onap installer packages including scripts.
25resources:
26 hosts:
27 resource_host:
28 ansible_host: "{{ resource_host }}"