Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Note: This page refers to the version of the demo shown at the Open Networking & Edge Summit, September 28-30, 2020. Further How Tos and Playbooks will be developed after the Open Networking and Edge Summit, October 11-12, 2021 and as part of the 5G Super Blueprint Initiative. 

The 5G Cloud Native Network Demo has been shown at several Linux Foundation and industry events over the years. The latest version of the demo was shown at the Open Networking & Edge Summit event, September 28-30, 2020. See the keynote video here (31:00 - 51:00). A goal of the demo is to make it replicable for ecosystem participants to recreate some or all of it in their own labs to help validate this approach to leveraging open source software components. 

Listed below are the steps required to recreate this latest version of the demo. Note: The demo working group is now developing a new version that will be shown in Q2/Q3 2021. Please send any questions to bwick@linuxfoundationto  lfn-demo@lists.lfnetworking.org. 

Clone the

...

EMCO repository

git clone https://git.onap.org/multicloud/k8s

...

  1. Create onap4k8s namespace.
    1. kubectl create namespace onap4k8s
  2. EMCO modules deployment.
    1. cd k8s/deployment/kubernetes
    2. Open the onap4k8s.yaml and replace the image path 'emcov2/emco:stable' with 'amcop/emco:1.3.0' for all the five modules.
    3. Deploy the DB: kubectl apply -f onap4k8sdb.yaml -n onap4k8s
    4. Deploy the modules: kubectl apply -f onap4k8s.yaml -n onap4k8s
  3. EMCOUI deployment.
    1. cd k8s/src/tools/emcoui/helm
    2. Open the values.yaml and replace the image path 'emcov2/emcoui:stable' with 'emcov2/emcoui'.
    3. Deploy the UI: helm install emcoui --name emcoui --namespace onap4k8s
  4. Access the UI: Open your browser and access http://<EMCO node IP>:30480/app

Deploy OpenShift

...

Cluster 

Openshift Kubernetes cluster is used for orchestrating the CNFs. 

...