subhash kumar singh | e63192f | 2020-12-11 14:25:11 +0530 | [diff] [blame] | 1 | { |
subhash kumar singh | a28bb73 | 2021-06-01 18:55:12 +0530 | [diff] [blame] | 2 | "name": "hw-go", |
subhash kumar singh | 9710595 | 2021-06-25 11:15:02 +0530 | [diff] [blame] | 3 | "version": "1.0.0", |
subhash kumar singh | e63192f | 2020-12-11 14:25:11 +0530 | [diff] [blame] | 4 | "containers": [ |
| 5 | { |
subhash kumar singh | a28bb73 | 2021-06-01 18:55:12 +0530 | [diff] [blame] | 6 | "name": "hw-go", |
subhash kumar singh | e63192f | 2020-12-11 14:25:11 +0530 | [diff] [blame] | 7 | "image": { |
subhash kumar singh | a28bb73 | 2021-06-01 18:55:12 +0530 | [diff] [blame] | 8 | "registry": "nexus3.o-ran-sc.org:10004", |
| 9 | "name": "o-ran-sc/ric-app-hw-go", |
subhash kumar singh | 6b117a9 | 2022-01-13 15:26:16 +0530 | [diff] [blame] | 10 | "tag": "1.1.1" |
subhash kumar singh | e63192f | 2020-12-11 14:25:11 +0530 | [diff] [blame] | 11 | } |
| 12 | } |
| 13 | ], |
| 14 | "livenessProbe": { |
| 15 | "httpGet": { |
| 16 | "path": "ric/v1/health/alive", |
| 17 | "port": 8080 |
| 18 | }, |
| 19 | "initialDelaySeconds": 5, |
| 20 | "periodSeconds": 15 |
| 21 | }, |
| 22 | "readinessProbe": { |
| 23 | "httpGet": { |
| 24 | "path": "ric/v1/health/ready", |
| 25 | "port": 8080 |
| 26 | }, |
| 27 | "initialDelaySeconds": 5, |
| 28 | "periodSeconds": 15 |
| 29 | }, |
| 30 | "messaging": { |
| 31 | "ports": [ |
| 32 | { |
| 33 | "name": "http", |
subhash kumar singh | 9710595 | 2021-06-25 11:15:02 +0530 | [diff] [blame] | 34 | "container": "hw-go", |
subhash kumar singh | e63192f | 2020-12-11 14:25:11 +0530 | [diff] [blame] | 35 | "port": 8080, |
| 36 | "description": "http service" |
| 37 | }, |
| 38 | { |
subhash kumar singh | 9710595 | 2021-06-25 11:15:02 +0530 | [diff] [blame] | 39 | "name": "rmrroute", |
| 40 | "container": "hw-go", |
subhash kumar singh | e63192f | 2020-12-11 14:25:11 +0530 | [diff] [blame] | 41 | "port": 4561, |
subhash kumar singh | 9710595 | 2021-06-25 11:15:02 +0530 | [diff] [blame] | 42 | "description": "rmr route port for hw-go xapp" |
subhash kumar singh | e63192f | 2020-12-11 14:25:11 +0530 | [diff] [blame] | 43 | }, |
| 44 | { |
subhash kumar singh | 9710595 | 2021-06-25 11:15:02 +0530 | [diff] [blame] | 45 | "name": "rmrdata", |
| 46 | "container": "hw-go", |
subhash kumar singh | e63192f | 2020-12-11 14:25:11 +0530 | [diff] [blame] | 47 | "port": 4560, |
subhash kumar singh | e63192f | 2020-12-11 14:25:11 +0530 | [diff] [blame] | 48 | "rxMessages": ["RIC_SUB_RESP", "RIC_SUB_FAILURE", "RIC_SUB_DEL_RESP", "RIC_INDICATION"], |
| 49 | "txMessages": ["RIC_SUB_REQ", "RIC_SUB_DEL_REQ", "RIC_SGNB_ADDITION_REQ", "RIC_SGNB_ADDITION_ACK"], |
| 50 | "mtypes" : [ |
| 51 | {"name":"TESTNAME1","id":55555}, |
| 52 | {"name":"TESTNAME2","id":55556} |
| 53 | ], |
subhash kumar singh | 9710595 | 2021-06-25 11:15:02 +0530 | [diff] [blame] | 54 | "policies": [1], |
| 55 | "description": "rmr data port for hw-go" |
subhash kumar singh | e63192f | 2020-12-11 14:25:11 +0530 | [diff] [blame] | 56 | } |
| 57 | ] |
| 58 | }, |
subhash kumar singh | 9710595 | 2021-06-25 11:15:02 +0530 | [diff] [blame] | 59 | "rmr": { |
| 60 | "protPort": "tcp:4560", |
| 61 | "maxSize": 2072, |
| 62 | "numWorkers": 1, |
| 63 | "txMessages": [ |
| 64 | "RIC_SUB_REQ", "A1_POLICY_RESP", "A1_POLICY_QUERY", "RIC_HEALTH_CHECK_RESP" |
| 65 | ], |
| 66 | "rxMessages": [ |
| 67 | "RIC_SUB_RESP", |
| 68 | "A1_POLICY_REQ", "RIC_HEALTH_CHECK_REQ" |
| 69 | ], |
| 70 | "policies": [1] |
| 71 | }, |
subhash kumar singh | e63192f | 2020-12-11 14:25:11 +0530 | [diff] [blame] | 72 | "controls": { |
subhash kumar singh | e51b324 | 2021-08-19 19:45:25 +0000 | [diff] [blame] | 73 | "fileStrorage": false, |
| 74 | "logger": { |
| 75 | "level": 3 |
| 76 | } |
subhash kumar singh | e63192f | 2020-12-11 14:25:11 +0530 | [diff] [blame] | 77 | }, |
subhash kumar singh | eb2fc4f | 2021-06-01 18:43:32 +0530 | [diff] [blame] | 78 | "db" : { |
subhash kumar singh | 9710595 | 2021-06-25 11:15:02 +0530 | [diff] [blame] | 79 | "waitForSdl": false |
subhash kumar singh | eb2fc4f | 2021-06-01 18:43:32 +0530 | [diff] [blame] | 80 | } |
subhash kumar singh | e63192f | 2020-12-11 14:25:11 +0530 | [diff] [blame] | 81 | } |