-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtarget.json
More file actions
50 lines (50 loc) · 1.59 KB
/
target.json
File metadata and controls
50 lines (50 loc) · 1.59 KB
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
{
"metadata": {
"name": "ecu-updater-target"
},
"spec": {
"displayName": "Vehicle_ECUs",
"forceRedeploy": true,
"components": [
{
"name": "Engine Controller",
"metadata": {
"manufacturer": "ACME Inc.",
"model": "EC-14"
},
"type": "ecu.fw",
"properties": {
"fw-image": "https://acme.io/fw/engine-control-1.45.img"
}
},
{
"name": "Telematics Unit",
"type": "ecu.fw",
"properties": {
"fw-image": "https://non-existent.io/fw/telematics-unit-2.0.img"
},
"parameters": {
"back-end-url": "https://non-existent.io/telematics"
}
}
],
"topologies": [
{
"bindings": [
{
"role": "ecu.fw",
"provider": "providers.target.rust",
"config": {
"name": "ECU Firmware Updater",
"libFile": "/extensions/libuprotocol.so",
"libHash": "any",
"localEntity": "up://symphony-api/DA00/1/0",
"getMethodUri": "up://ecu-updater/1A100/1/1",
"zenohConfig": "/zenoh-config.json5"
}
}
]
}
]
}
}