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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
{
"self": {
"component_type": "docker",
"description": "Test component spec",
"name": "test.component.spec",
"version": "1.0.1"
},
"service": {
"calls": [],
"provides": []
},
"streams": {
"publishes": [{
"config_key": "TEST-PUB-DR",
"format": "dataformat_Hello_World_PM",
"type": "data_router",
"version": "1.0.0"
},
{
"config_key": "TEST-PUB-MR",
"format": "dataformat_Hello_World_PM",
"type": "message_router",
"version": "1.0.0"
}
],
"subscribes": [{
"config_key": "TEST-SUB-MR",
"format": "dataformat_Hello_World_PM",
"route": "/TEST_HELLO_WORLD_SUB_MR",
"type": "message_router",
"version": "1.0.0"
},
{
"config_key": "TEST-SUB-DR",
"format": "dataformat_Hello_World_PM",
"route": "/TEST-HELLO-WORLD-SUB-DR",
"type": "data_router",
"version": "1.0.0"
}
]
},
"parameters":
[
{
"name": "testParam1",
"description": "test parameter 1",
"value": "test-param-1",
"type": "string",
"sourced_at_deployment": true,
"designer_editable": true,
"policy_editable": true,
"policy_group": "Test_Parameters",
"required": true,
"policy_schema": [
{
"name": "PolicySchemaTest",
"description": "List of objects for vnf type monitorng",
"type": "String",
"entry_schema": [
{
"name": "TestEntrySchema",
"description": "entry",
"type": "string",
"value": "None"
}
]
}
]
}
],
"auxilary": {
"healthcheck": {
"type": "docker",
"interval": "300s",
"timeout": "120s",
"script": "/etc/init.d/nagios status"
},
"databases" : {
"TestDB1": "PGaaS",
"TestDB2": "PGaaS"
},
"policy": {
"trigger_type": "docker",
"script_path": "/opt/app/manager/bin/reconfigure.sh"
},
"volumes": [
{
"container": {
"bind": "/opt/app/manager/config/hostname"
},
"host": {
"path": "/etc/hostname",
"mode": "ro"
}
}
],
"ports": [
"80:80",
"99:99"
]
},
"artifacts": [{
"type": "docker image",
"uri": "test.tester"
}]
}
|