blob: 7eb79503ee890de44b68a92a881383bfb81edb8a [file] [log] [blame]
Roger Maitland953b5f12018-03-22 15:24:04 -04001.. This work is licensed under a Creative Commons Attribution 4.0 International License.
2.. http://creativecommons.org/licenses/by/4.0
3.. Copyright 2018 Amdocs, Bell Canada
4
5ONAP Operations Manager Project
6###############################
7
8The ONAP Operations Manager (OOM) is responsible for life-cycle management of
9the ONAP platform itself; components such as SO, SDNC, etc. It is not
10responsible for the management of services, VNFs or infrastructure instantiated
11by ONAP or used by ONAP to host such services or VNFs. OOM uses the open-source
12Kubernetes container management system as a means to manage the Docker
13containers that compose ONAP where the containers are hosted either directly on
14bare-metal servers or on VMs hosted by a 3rd party management system. OOM
15ensures that ONAP is easily deployable and maintainable throughout its life
16cycle while using hardware resources efficiently.
17
18.. figure:: oomLogoV2-medium.png
19 :align: right
20
21In summary OOM provides the following capabilities:
22
23- **Deploy** - with built-in component dependency management
24- **Configure** - unified configuration across all ONAP components
25- **Monitor** - real-time health monitoring feeding to a Consul UI and Kubernetes
26- **Heal**- failed ONAP containers are recreated automatically
27- **Scale** - cluster ONAP services to enable seamless scaling
28- **Upgrade** - change-out containers or configuration with little or no service impact
29- **Delete** - cleanup individual containers or entire deployments
30
31OOM supports a wide variety of Kubernetes private clouds - built with Rancher,
32Kubeadm or Cloudify - and public cloud infrastructures such as: Microsoft Azure,
33Amazon AWS, Google GCD, VMware VIO, and Openstack.
34
35The OOM documentation is broken into three different areas each targeted at a differnet user:
36
37- :ref:`quick-start-label` - deploy ONAP on an existing cloud
38- :ref:`user-guide-label` - a guide for operators of an ONAP instance
39- :ref:`developer-guide-label` - a guide for developers of OOM and ONAP
40- :ref:`cloud-setup-guide-label` - a guide for those setting up cloud environments that ONAP will use
41
42Component Orchestration Overview
43================================
44Multiple technologies, templates, and extensible plug-in frameworks are used in
45ONAP to orchestrate platform instances of software component artifacts. A few
46standard configurations are provide that may be suitable for test, development,
47and some production deployments by substitution of local or platform wide
48parameters. Larger and more automated deployments may require integration the
49component technologies, templates, and frameworks with a higher level of
50automated orchestration and control software. Design guidelines are provided to
51insure the component level templates and frameworks can be easily integrated
52and maintained. The following diagram provides an overview of these with links
53to examples and templates for describing new ones.
54
55.. graphviz::
56
57 digraph COO {
58 rankdir="LR";
59
60 {
61 node [shape=folder]
62 oValues [label="values"]
63 cValues [label="values"]
64 comValues [label="values"]
65 sValues [label="values"]
66 oCharts [label="charts"]
67 cCharts [label="charts"]
68 comCharts [label="charts"]
69 sCharts [label="charts"]
70 blueprint [label="TOSCA blueprint"]
71 }
72 {oom [label="ONAP Operations Manager"]}
73 {hlo [label="High Level Orchestrator"]}
74
75
76 hlo -> blueprint
77 hlo -> oom
78 oom -> oValues
79 oom -> oCharts
80 oom -> component
81 oom -> common
82 common -> comValues
83 common -> comCharts
84 component -> cValues
85 component -> cCharts
86 component -> subcomponent
87 subcomponent -> sValues
88 subcomponent -> sCharts
89 blueprint -> component
90 }