blob: cded591fb99bf3ee551a3c9631c7516254f2e5b2 [file] [log] [blame]
Matteo Scandoloef5d6f42020-07-27 16:46:38 -07001VOLTHA Deployment Environment
2=============================
3
4All the components in the VOLTHA project are containerized and the default
5deployment environment is ``kubernetes``.
6
7Generally VOLTHA is installed in one of two setups:
8
9- A physical ``kubernetes`` cluster, generally used for production deployments.
10- A virtual ``kind`` cluster, generally used for development.
11
12Regardless of the chosen environment the deployment process is the same,
13more on this later, and the installation can be managed in the same way.
14
Andrea Campanella882cfcc2021-02-04 10:53:57 +010015VOLTHA deployment
16-----------------
Matteo Scandoloef5d6f42020-07-27 16:46:38 -070017
18VOLTHA components on top of ``kubernetes`` are managed via ``helm`` charts.
19For more information about ``helm`` please refer to the `Official Documentation
20<https://helm.sh>`_.
21For the sake of this guide all you need to know is that an
22``helm`` chart describes all the information required to deploy a component on top of
23``kubernetes``, such as: containers, exposed ports and configuration parameters.
24
25A VOLTHA deployment is composed, at its very minimum, by:
26
27* Infrastructure
28
29 * A ``kafka`` cluster (can also be a single node)
30 * An ``etcd`` cluster (can also be a single node)
31 * ``ONOS`` (single or multi instance)
32 * [Optional] ``radius`` (for EAPOL based authentication)
33* ``VOLTHA``
34
35 * ``voltha-core`` and ``ofAgent`` (contained in the same ``helm`` chart)
36* Adapters
37
38 * [one or more] adapter pair(s) (OLT adapter + ONU Adapter)
39
40.. figure:: ../_static/voltha_cluster_overview.png
41 :alt: VOLTHA Component Diagram
42 :width: 100%
43
44 VOLTHA Kubernetes deployment
45
46Note that the ``Infrastructure`` components can be deployed outside of the
47``kubernetes`` cluster.
48
49You can read more about VOLTHA deployments in:
50
51- :doc:`lab_setup`
Andrea Campanella58ea9a72022-01-05 12:10:26 +010052- `Deployment with HELM <../voltha-helm-charts/README.md>`_
Matteo Scandoloef5d6f42020-07-27 16:46:38 -070053
54.. toctree::
55 :maxdepth: 1
56 :hidden:
57 :glob:
58
59 ./lab_setup.rst
Andrea Campanella58ea9a72022-01-05 12:10:26 +010060 Deploy VOLTHA <../voltha-helm-charts/README.md>