blob: 404a410931b5cc53593e4a8baa4163da5d75fd0a [file] [log] [blame]
Eric Debeau993b77b2020-08-19 15:30:00 +02001.. This work is licensed under a Creative Commons Attribution 4.0
2.. International License.
Roger Maitland953b5f12018-03-22 15:24:04 -04003.. http://creativecommons.org/licenses/by/4.0
Eric Debeau993b77b2020-08-19 15:30:00 +02004.. Copyright 2018-2020 Amdocs, Bell Canada, Orange, Samsung
efiacor0fb3b8f2022-10-28 15:29:26 +01005.. Modification copyright (C) 2022 Nordix Foundation
6
Jessica Wagantallafb1ead2020-04-09 12:39:10 -07007.. _oom_project_description:
Roger Maitland953b5f12018-03-22 15:24:04 -04008
9ONAP Operations Manager Project
10###############################
11
efiacor0fb3b8f2022-10-28 15:29:26 +010012.. warning::
13
14 THIS PAGE PROB NEEDS A REWRITE ALSO
15
Roger Maitland953b5f12018-03-22 15:24:04 -040016The ONAP Operations Manager (OOM) is responsible for life-cycle management of
17the ONAP platform itself; components such as SO, SDNC, etc. It is not
18responsible for the management of services, VNFs or infrastructure instantiated
19by ONAP or used by ONAP to host such services or VNFs. OOM uses the open-source
20Kubernetes container management system as a means to manage the Docker
21containers that compose ONAP where the containers are hosted either directly on
22bare-metal servers or on VMs hosted by a 3rd party management system. OOM
23ensures that ONAP is easily deployable and maintainable throughout its life
24cycle while using hardware resources efficiently.
25
efiacor0fb3b8f2022-10-28 15:29:26 +010026.. figure:: resources/images/oom_logo/oomLogoV2-medium.png
Roger Maitland953b5f12018-03-22 15:24:04 -040027 :align: right
28
29In summary OOM provides the following capabilities:
30
31- **Deploy** - with built-in component dependency management
32- **Configure** - unified configuration across all ONAP components
Eric Debeau993b77b2020-08-19 15:30:00 +020033- **Monitor** - real-time health monitoring feeding to a Consul UI and
34 Kubernetes
Roger Maitland953b5f12018-03-22 15:24:04 -040035- **Heal**- failed ONAP containers are recreated automatically
36- **Scale** - cluster ONAP services to enable seamless scaling
Eric Debeau993b77b2020-08-19 15:30:00 +020037- **Upgrade** - change-out containers or configuration with little or no
38 service impact
Roger Maitland953b5f12018-03-22 15:24:04 -040039- **Delete** - cleanup individual containers or entire deployments
40
41OOM supports a wide variety of Kubernetes private clouds - built with Rancher,
Eric Debeau993b77b2020-08-19 15:30:00 +020042Kubeadm or Cloudify - and public cloud infrastructures such as: Microsoft
43Azure, Amazon AWS, Google GCD, VMware VIO, and OpenStack.
Roger Maitland953b5f12018-03-22 15:24:04 -040044
Eric Debeau993b77b2020-08-19 15:30:00 +020045The OOM documentation is broken into four different areas each targeted at a
46different user:
Roger Maitland953b5f12018-03-22 15:24:04 -040047
efiacor0fb3b8f2022-10-28 15:29:26 +010048- :ref:`oom_dev_guide` - a guide for developers of OOM
49- :ref:`oom_infra_setup_guide` - a guide for those setting up the environments that OOM will use
50- :ref:`oom_deploy_guide` - a guide for those deploying OOM on an existing cloud
51- :ref:`oom_user_guide` - a guide for operators of an OOM instance
52- :ref:`oom_access_info_guide` - a guide for operators who require access to OOM applications
53
54
Roger Maitland953b5f12018-03-22 15:24:04 -040055
Sylvain Desbureauxdd769782020-05-29 11:19:42 +020056The :ref:`release_notes` for OOM describe the incremental features per release.
Roger Maitland78b6c342018-05-16 08:49:14 -040057
Roger Maitland953b5f12018-03-22 15:24:04 -040058Component Orchestration Overview
59================================
60Multiple technologies, templates, and extensible plug-in frameworks are used in
61ONAP to orchestrate platform instances of software component artifacts. A few
62standard configurations are provide that may be suitable for test, development,
63and some production deployments by substitution of local or platform wide
64parameters. Larger and more automated deployments may require integration the
65component technologies, templates, and frameworks with a higher level of
66automated orchestration and control software. Design guidelines are provided to
67insure the component level templates and frameworks can be easily integrated
68and maintained. The following diagram provides an overview of these with links
69to examples and templates for describing new ones.
70
71.. graphviz::
72
73 digraph COO {
74 rankdir="LR";
75
76 {
77 node [shape=folder]
78 oValues [label="values"]
79 cValues [label="values"]
80 comValues [label="values"]
81 sValues [label="values"]
82 oCharts [label="charts"]
83 cCharts [label="charts"]
84 comCharts [label="charts"]
85 sCharts [label="charts"]
86 blueprint [label="TOSCA blueprint"]
87 }
88 {oom [label="ONAP Operations Manager"]}
89 {hlo [label="High Level Orchestrator"]}
90
91
92 hlo -> blueprint
93 hlo -> oom
94 oom -> oValues
95 oom -> oCharts
96 oom -> component
97 oom -> common
98 common -> comValues
99 common -> comCharts
100 component -> cValues
101 component -> cCharts
102 component -> subcomponent
103 subcomponent -> sValues
104 subcomponent -> sCharts
105 blueprint -> component
106 }