-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorch-file-for-V2-cheat..json
73 lines (73 loc) · 1.39 KB
/
orch-file-for-V2-cheat..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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"description": "Simple orchestration with an instance, storage volumes, ssh key,and a security list",
"name": "/Compute-secdomain/user/ES1",
"desired_state": "active",
"objects": [
{
"type": "StorageVolume",
"label": "boot_volume",
"description": "Boot disk for your instance",
"persistent": true,
"template": {
"name": "/Compute-secdomain/user/BootVolume1",
"bootable": true,
"imagelist": "/oracle/public/OL_6.7_UEKR4_x86_64",
"properties": [
"/oracle/public/storage/default"
],
"size": "23G"
}
},
{
"type": "StorageVolume",
"label": "data_volume",
"description": "Data disk for your instance",
"persistent": true,
"template": {
"name": "/Compute-secdomain/user/DataVolume1",
"properties": [
"/oracle/public/storage/default"
],
"size": "2G"
}
},
{
"type": "IPReservation",
"label": "ip_reservation",
"description": "IP reservation for your instance",
"persistent": true,
"template": {
"parentpool": "/oracle/public/ippool",
"permanent": true
}
},
{
"type": "Instance",
"description": "demo instance",
"label": "demo_instance",
"template": {
"label": "demo_instance",
"shape": "oc3",
"networking": {
"eth0": {
"seclists": [ "{{my_seclist:name}}" ],
"nat": "ipreservation:{{ip_reservation:name}}"
}
},
"storage_attachments": [
{
"index": 1,
"volume": "{{boot_volume:name}}"
},
{
"index": 2,
"volume": "{{data_volume:name}}"
}
],
"boot_order": [1],
"sshkeys": ["/Compute-secdomain/user/file1"]
}
}
],
"tags": ["sample"]
}