X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=test%2Fkubernetes%2Fxmgr%2Fxmgr-cfg.yaml;fp=test%2Fkubernetes%2Fxmgr%2Fxmgr-cfg.yaml;h=a12c824adb44d890420540ff1ea6b8be79d9d50c;hb=871fa393844ce1b61b8d5218d27687d9fc05803a;hp=0000000000000000000000000000000000000000;hpb=3b790149556c8d8f3a3701c0e3c4a56e56e078d1;p=ric-plt%2Frtmgr.git diff --git a/test/kubernetes/xmgr/xmgr-cfg.yaml b/test/kubernetes/xmgr/xmgr-cfg.yaml new file mode 100644 index 0000000..a12c824 --- /dev/null +++ b/test/kubernetes/xmgr/xmgr-cfg.yaml @@ -0,0 +1,101 @@ +# +#================================================================================== +# Copyright (c) 2019 AT&T Intellectual Property. +# Copyright (c) 2019 Nokia +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +#================================================================================== +# +# +# Abstract: Static dataset distributed by the Test xApp Manager +# Date: 29 March 2019 +# +apiVersion: v1 +kind: ConfigMap +metadata: + name: xmgrcfg + namespace: example +data: + xmgrdata: | + { + "xapps": + [{ + "name": "admin", + "status": "unknown", + "version": "1.2.3", + "instances": [{ + "name": "admin-01", + "status": "pending", + "ip": "10.244.1.19", + "port": 4561, + "txMessages": ["HandoverPreparation","HandoverCancel"], + "rxMessages": [] + }, + { + "name": "admin-02", + "status": "pending", + "ip": "10.244.3.16", + "port": 4555, + "txMessages": ["HandoverPreparation","HandoverCancel"], + "rxMessages": [] + } + ] + }, + { + "name": "xapp", + "status": "unknown", + "version": "1.2.3", + "instances": [{ + "name": "xapp-01", + "status": "pending", + "ip": "192.168.2.1", + "port": 32300, + "txMessages": ["X2Setup","Reset"], + "rxMessages": ["HandoverPreparation","HandoverCancel"] + }, + { + "name": "xapp-02", + "status": "pending", + "ip": "192.168.2.2", + "port": 32300, + "txMessages": ["X2Setup","Reset"], + "rxMessages": ["HandoverPreparation","HandoverCancel"] + } + ] + }, + { + "name": "e2t", + "status": "unknown", + "version": "1.2.3", + "instances": [{ + "name": "e2t-01", + "status": "pending", + "ip": "192.168.3.1", + "port": 32300, + "txMessages": [], + "rxMessages": ["HandoverPreparation","HandoverCancel","X2Setup","Reset"] + }, + { + "name": "e2t-02", + "status": "pending", + "ip": "192.168.3.2", + "port": 32300, + "txMessages": [], + "rxMessages": ["HandoverPreparation","HandoverCancel","X2Setup","Reset"] + } + ] + } + + ] + } +