forked from nutanixdev/zerotouch-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
create-vm-workloads.json
38 lines (34 loc) · 1023 Bytes
/
create-vm-workloads.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
34
35
36
37
38
{
"site_name": "site-01",
// these parameters can be defined in global, if defined these can be skipped
"pc_ip": "valid-ip",
"pc_username": "pc-user",
"pc_password": "pc-password",
// project to deploy the cluster/s
"project_name": "default",
// Account name
"account_name": "NTNX_LOCAL_AZ",
// these cluster and subnet references will be added to the project
"subnets": {
// cluster-name : subnet
"cluster-01": ["vlan110", "vlan112"],
"cluster-02": ["vlan110"]
},
// BP list
"bp_list": [
{
"dsl_file": "calm-dsl-bps/blueprints/LAMP/LAMP.py",
"name": "LAMP-dsl",
"app_name": "LAMP-dsl",
"cluster": "cluster-02",
"subnet": "vlan110"
},
{
"dsl_file": "calm-dsl-bps/blueprints/LAMP/LAMP.py",
"name": "LAMP-dsl",
"app_name": "LAMP-dsl",
"cluster": "cluster-01",
"subnet": "vlan112"
}
]
}