forked from nutanixdev/zerotouch-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
global.json
33 lines (29 loc) · 842 Bytes
/
global.json
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
{
// All the Python workflow runs are grouped by sites
// Different workflow operaition logs and configs are grouped by sites
"site_name": "site-01",
// below declared parameters are accessible in all Python workflows
"pc_ip": "valid-ip",
"pc_username": "pc-user",
"pc_password": "pc-password",
"global_network": {
"dns_servers": ["valid-ip1", "valid-ip2"],
"ntp_servers": ["0.us.pool.ntp.org"]
},
// Supported AOS versions
"aos_versions": {
"6.5.1.8": {
"url": "https://url",
"name": "AOS Upgrade/Installer - LTS"
}
},
// Supported Hypervisor versions
"hypervisors": {
"kvm": {
"20201105.30411": {
"url": "https://url",
"name": "AHV Bundle"
}
}
}
}