Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added topo kinds yaml for RAN entities and relations #517

Merged
merged 4 commits into from
Jun 8, 2021
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sd-ran/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name: sd-ran
description: Umbrella chart to deploy all ONOS-RIC and simulator
kubeVersion: ">=1.17.0"
type: application
version: 1.1.29
version: 1.1.20
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why this is changed from 1.1.29 to 1.1.20 ?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh.... not sure... perhaps I mistyped.... it should be 30.

appVersion: v1.1.2
keywords:
- onos
Expand Down
62 changes: 62 additions & 0 deletions sd-ran/files/configs/topo-kinds.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
# SPDX-FileCopyrightText: 2021-present Open Networking Foundation <info@opennetworking.org>
#
# SPDX-License-Identifier: LicenseRef-ONF-Member-1.0

# A topology kind representing an E2 node
apiVersion: topo.onosproject.org/v1beta1
kind: Kind
metadata:
name: e2-node
spec:
aspects:
onos.topo.Location:
lat: 50.08834
lng: 14.40372
onos.topo.E2Node:
service_models:
---
# A topology kind representing an E2 cell
apiVersion: topo.onosproject.org/v1beta1
kind: Kind
metadata:
name: e2-cell
spec:
aspects:
onos.topo.Location:
lat: 50.08834
lng: 14.40372
onos.topo.E2Cell:
cid: 0
antenna_count: 1
earfcn: 0
cell_type: FEMTO
onos.topo.Coverage:
height: 0
arc_width: 120
azimuth: 0
tilt: 0
---
# A topology kind representing an E2 termination point
apiVersion: topo.onosproject.org/v1beta1
kind: Kind
metadata:
name: e2-termination
---
# A topology kind representing an E2 connection relation
apiVersion: topo.onosproject.org/v1beta1
kind: Kind
metadata:
name: e2-connection
---
# A topology kind representing a node-cell containment relation
apiVersion: topo.onosproject.org/v1beta1
kind: Kind
metadata:
name: e2-node-cell
---
# A topology kind representing a cell neighbor relation
apiVersion: topo.onosproject.org/v1beta1
kind: Kind
metadata:
name: e2-cell-neighbor
---