blob: 4fe943cf1832cc3376bb8dc8bd5f083f5d3dbeaf [file] [log] [blame]
Eric Debeau8494df02018-05-24 20:35:29 +00001.. 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
4.. Copyright 2018 Amdocs, Bell Canada
5
Roger Maitlandefce48f2018-03-29 09:43:06 -04006.. Links
7.. _Microsoft Azure: https://wiki.onap.org/display/DW/ONAP+on+Kubernetes+on+Microsoft+Azure
8.. _Amazon AWS: https://wiki.onap.org/display/DW/ONAP+on+Kubernetes+on+Amazon+EC2
9.. _Google GCE: https://wiki.onap.org/display/DW/ONAP+on+Kubernetes+on+Google+Compute+Engine
10.. _VMware VIO: https://wiki.onap.org/display/DW/ONAP+on+VMware+Integrated+OpenStack+-+Container+Orchestration
11.. _OpenStack: https://wiki.onap.org/display/DW/ONAP+on+Kubernetes+on+OpenStack?src=contextnavpagetreemode
12.. _Setting Up Kubernetes with Rancher: https://wiki.onap.org/display/DW/ONAP+on+Kubernetes+on+Rancher
13.. _Setting Up Kubernetes with Kubeadm: https://wiki.onap.org/display/DW/Deploying+Kubernetes+Cluster+with+kubeadm
14.. _Setting Up Kubernetes with Cloudify: https://wiki.onap.org/display/DW/ONAP+on+Kubernetes+on+Cloudify
Roger Maitlandeb412c62018-05-31 14:09:09 -040015.. _ONAP on Kubernetes Wiki: https://wiki.onap.org/display/DW/ONAP+on+Kubernetes
Roger Maitlandefce48f2018-03-29 09:43:06 -040016
Roger Maitland953b5f12018-03-22 15:24:04 -040017.. figure:: oomLogoV2-medium.png
18 :align: right
19
20.. _cloud-setup-guide-label:
21
22OOM Cloud Setup Guide
23#####################
24
25OOM deploys and manages ONAP on a pre-established Kubernetes_ cluster - the
26creation of this cluster is outside of the scope of the OOM project as there
27are many options including public clouds with pre-established environments.
28However, this guide includes instructions for how to create and use some of the
29more popular environments which could be used to host ONAP. If creation of a
30Kubernetes cluster is required, the life-cycle of this cluster is independent
31of the life-cycle of the ONAP components themselves. Much like an OpenStack
32environment, the Kubernetes environment may be used for an extended period of
33time, possibly spanning multiple ONAP releases.
34
35.. note::
Roger Maitlandefce48f2018-03-29 09:43:06 -040036 Inclusion of a cloud technology or provider in this guide does not imply an
37 endorsement.
Roger Maitland953b5f12018-03-22 15:24:04 -040038
39.. _Kubernetes: https://kubernetes.io/
40
Roger Maitlandefce48f2018-03-29 09:43:06 -040041Software Requirements
42=====================
43
Roger Maitland953b5f12018-03-22 15:24:04 -040044The versions of Kubernetes that are supported by OOM are as follows:
45
46.. table:: OOM Software Requirements
47
Michael O'Brien633217a2018-08-15 14:10:43 -040048 ============== ========== ===== ======= ========
49 Release Kubernetes Helm kubectl Docker
50 ============== ========== ===== ======= ========
51 amsterdam 1.7.x 2.3.x 1.7.x 1.12.x
52 beijing 1.8.10 2.8.2 1.8.10 17.03.x
53 casablanca/master 1.8.10 2.9.1 1.8.10 17.03.x
54 ============== ========== ===== ======= ========
Roger Maitland953b5f12018-03-22 15:24:04 -040055
Roger Maitlandefce48f2018-03-29 09:43:06 -040056Minimum Hardware Configuration
57==============================
Roger Maitland953b5f12018-03-22 15:24:04 -040058
Roger Maitlandefce48f2018-03-29 09:43:06 -040059The minimum hardware requirements are provided below. Note that although ONAP
60may operate on a single node as described production deployments will need at
61least three if not six nodes to ensure there is no single point of failure.
62
63.. table:: OOM Hardware Requirements
64
65 ===== ===== ====== ====================
66 RAM HD vCores Ports
67 ===== ===== ====== ====================
Roger Maitlandeb412c62018-05-31 14:09:09 -040068 128GB 160GB 32 0.0.0.0/0 (all open)
Roger Maitlandefce48f2018-03-29 09:43:06 -040069 ===== ===== ====== ====================
Roger Maitland953b5f12018-03-22 15:24:04 -040070
Roger Maitlandeb412c62018-05-31 14:09:09 -040071.. note::
72 Kubernetes supports a maximum of 110 pods per node which forces one to use at
73 least two nodes to deploy all of ONAP although at least three are recommended
74 (for example 4x32GB - 8 vCores each). Subsets of ONAP may still be deployed
75 on a single node.
76
Roger Maitland953b5f12018-03-22 15:24:04 -040077Cloud Installation
78==================
79
Roger Maitlandeb412c62018-05-31 14:09:09 -040080.. #. OOM supports deployment on major public clouds. The following guides
81.. provide instructions on how to deploy ONAP on these clouds:
82..
83.. - `Microsoft Azure`_,
84.. - `Amazon AWS`_,
85.. - `Google GCE`_,
86.. - `VMware VIO`_,
87.. - IBM, and
88.. - `Openstack`_.
89..
90.. #. Alternatively, OOM can be deployed on a private set of physical hosts or VMs
91.. (or even a combination of the two). The following guides describe how to
92.. create a Kubernetes cluster with popular tools:
93..
94.. - `Setting up Kubernetes with Rancher`_ (recommended)
95.. - `Setting up Kubernetes with Kubeadm`_
96.. - `Setting up Kubernetes with Cloudify`_
Roger Maitland953b5f12018-03-22 15:24:04 -040097
Roger Maitlandeb412c62018-05-31 14:09:09 -040098OOM can be deployed on a private set of physical hosts or VMs (or even a
99combination of the two). The following guide describe the recommended method to
100setup a Kubernetes cluster: :ref:`onap-on-kubernetes-with-rancher`.
Roger Maitland953b5f12018-03-22 15:24:04 -0400101
Roger Maitlandeb412c62018-05-31 14:09:09 -0400102There are alternative deployment methods described on the `ONAP on Kubernetes Wiki`_