blob: fddccf80688f42d654eaa4a882f75771eded4c79 [file] [log] [blame]
Roger Maitlandeb412c62018-05-31 14:09:09 -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
5.. Links
6.. _HELM Best Practices Guide: https://docs.helm.sh/chart_best_practices/#requirements
7.. _kubectl Cheat Sheet: https://kubernetes.io/docs/reference/kubectl/cheatsheet/
8.. _Kubernetes documentation for emptyDir: https://kubernetes.io/docs/concepts/storage/volumes/#emptydir
9.. _Docker DevOps: https://wiki.onap.org/display/DW/Docker+DevOps#DockerDevOps-DockerBuild
10.. _http://cd.onap.info:30223/mso/logging/debug: http://cd.onap.info:30223/mso/logging/debug
11.. _Onboarding and Distributing a Vendor Software Product: https://wiki.onap.org/pages/viewpage.action?pageId=1018474
12.. _README.md: https://gerrit.onap.org/r/gitweb?p=oom.git;a=blob;f=kubernetes/README.md
13
14.. figure:: oomLogoV2-medium.png
15 :align: right
16
17.. _onap-on-kubernetes-with-rancher:
18
19ONAP on Kubernetes with Rancher
20###############################
21
22The following instructions will step you through the installation of Kubernetes
23on an OpenStack environment with Rancher. The development lab used for this
24installation is the ONAP Windriver lab.
25
26This guide does not cover all of the steps required to setup your OpenStack
27environment: e.g. OAM networks and security groups but there is a wealth of
28OpenStack information on the web.
29
30Rancher Installation
31====================
32
33The following instructions describe how to create an Openstack VM running
34Rancher. This node will not be used to host ONAP itself, it will be used
35exclusively by Rancher.
36
37Launch new VM instance to host the Rancher Server
38-------------------------------------------------
39
40.. image:: Rancher-Launch_new_VM_instance_to_host_the_Rancher_Server.jpeg
41
42Select Ubuntu 16.04 as base image
43---------------------------------
44Select "No" on "Create New Volume"
45
46.. image:: Rancher-Select_Ubuntu_16.04_as_base_image.jpeg
47
48Select Flavor
49-------------
50Known issues exist if flavor is too small for Rancher. Please select a flavor
Mike Elliotted5ff712018-11-07 15:47:19 -050051with at least 4 vCPU and 8GB ram. A size of 8 vCPU and 16GB ram is recommended.
Roger Maitlandeb412c62018-05-31 14:09:09 -040052
53.. image:: Rancher-Select_Flavor.jpeg
54
55Networking
56----------
57
58.. image:: Rancher-Networking.jpeg
59
60Security Groups
61---------------
62
63.. image:: Rancher-Security_Groups.jpeg
64
65Key Pair
66--------
67Use an existing key pair (e.g. onap_key), import an existing one or create a
68new one to assign.
69
70.. image:: Rancher-Key_Pair.jpeg
71
72Apply customization script for the Rancher VM
73---------------------------------------------
74
75Click :download:`openstack-rancher.sh <openstack-rancher.sh>` to download the script.
76
77.. literalinclude:: openstack-rancher.sh
78 :language: bash
79
80This customization script will:
81
82* setup root access to the VM (comment out if you wish to disable this
83 capability and restrict access to ssh access only)
84* install docker
85* install rancher
86* install kubectl
87* install helm
88* install nfs server
89
90.. note::
Mike Elliotted5ff712018-11-07 15:47:19 -050091 The Casablanca release of OOM only supports Helm 2.9.1 not the 2.7.2 shown in
Roger Maitlandeb412c62018-05-31 14:09:09 -040092 the screen capture below. The supported versions of all the software components
93 are listed in the :ref:`cloud-setup-guide-label`.
94
95.. image:: Apply_customization_script_for_the_Rancher_VM.jpeg
96
97Launch Instance
98---------------
99
100.. image:: Rancher-Launch_Instance.jpeg
101
102Assign Floating IP for external access
103--------------------------------------
104
105.. image:: Rancher-Allocate_Floating_IP.jpeg
106
107.. image:: Rancher-Manage_Floating_IP_Associations.jpeg
108
109.. image:: Rancher-Launch_Instance.jpeg
110
111Kubernetes Installation
112=======================
113
114Launch new VM instance(s) to create a Kubernetes single host or cluster
115-----------------------------------------------------------------------
116
117To create a cluster:
118
119.. note::
120 #. do not append a '-1' suffix (e.g. sb4-k8s)
121 #. increase count to the # of of kubernetes worker nodes you want (eg. 3)
122
123.. image:: K8s-Launch_new_VM_instance_to_create_a_Kubernetes_single_host_or_cluster.jpeg
124
125Select Ubuntu 16.04 as base image
126---------------------------------
127Select "No" on "Create New Volume"
128
129.. image:: K8s-Select_Ubuntu_16.04_as_base_image.jpeg
130
131Select Flavor
132-------------
133The size of a Kubernetes host depends on the size of the ONAP deployment that
134will be installed.
135
Mike Elliotted5ff712018-11-07 15:47:19 -0500136As of the Casablanca release a minimum 224GB will be needed to run a
137full ONAP deployment (all components). It is recommended that more hosts are used
138with fewer resources instead of only a few large hosts. For example 14 x 16GB hosts.
Roger Maitlandeb412c62018-05-31 14:09:09 -0400139
140If a small subset of ONAP components are being deployed for testing purposes,
141then a single 16GB or 32GB host should suffice.
142
143.. image:: K8s-Select_Flavor.jpeg
144
145Networking
146-----------
147
148.. image:: K8s-Networking.jpeg
149
150Security Group
151---------------
152
153.. image:: K8s-Security_Group.jpeg
154
155Key Pair
156--------
157Use an existing key pair (e.g. onap_key), import an existing one or create a
158new one to assign.
159
160.. image:: K8s-Key_Pair.jpeg
161
162Apply customization script for Kubernetes VM(s)
163-----------------------------------------------
164
165Click :download:`openstack-k8s-node.sh <openstack-k8s-node.sh>` to
166download the script.
167
168.. literalinclude:: openstack-k8s-node.sh
169 :language: bash
170
171This customization script will:
172
173* setup root access to the VM (comment out if you wish to disable this
174 capability and restrict access to ssh access only)
175* install docker
176* install kubectl
177* install helm
178* install nfs common (see configuration step here)
179
180.. note::
181 Ensure you are using the correct versions as described in the
182 :ref:`cloud-setup-guide-label`
183
184Launch Instance
185---------------
186
187.. image:: K8s-Launch_Instance.jpeg
188
189Assign Floating IP for external access
190--------------------------------------
191
Roger Maitlandeb412c62018-05-31 14:09:09 -0400192.. image:: K8s-Manage_Floating_IP_Associations.jpeg
193
194.. image:: K8s-Launch_Instance.jpeg
195
196Setting up an NFS share for Multinode Kubernetes Clusters
197=========================================================
198The figure below illustrates a possible topology of a multinode Kubernetes
199cluster.
200
201.. image:: k8s-topology.jpg
202
203One node, the Master Node, runs Rancher and Helm clients and connects to all
204the Kubernetes nodes in the cluster. Kubernetes nodes, in turn, run Rancher,
205Kubernetes and Tiller (Helm) agents, which receive, execute, and respond to
206commands issued by the Master Node (e.g. kubectl or helm operations). Note that
207the Master Node can be either a remote machine that the user can log in to or a
208local machine (e.g. laptop, desktop) that has access to the Kubernetes cluster.
209
210Deploying applications to a Kubernetes cluster requires Kubernetes nodes to
211share a common, distributed filesystem. One node in the cluster plays the role
212of NFS Master (not to confuse with the Master Node that runs Rancher and Helm
213clients, which is located outside the cluster), while all the other cluster
214nodes play the role of NFS slaves. In the figure above, the left-most cluster
215node plays the role of NFS Master (indicated by the crown symbol). To properly
216set up an NFS share on Master and Slave nodes, the user can run the scripts
217below.
218
219Click :download:`master_nfs_node.sh <master_nfs_node.sh>` to download the script.
220
221.. literalinclude:: master_nfs_node.sh
222 :language: bash
223
224Click :download:`slave_nfs_node.sh <slave_nfs_node.sh>` to download the script.
225
226.. literalinclude:: slave_nfs_node.sh
227 :language: bash
228
229The master_nfs_node.sh script runs in the NFS Master node and needs the list of
230NFS Slave nodes as input, e.g.::
231
232 > sudo ./master_nfs_node.sh node1_ip node2_ip ... nodeN_ip
233
234The slave_nfs_node.sh script runs in each NFS Slave node and needs the IP of
235the NFS Master node as input, e.g.::
236
237 > sudo ./slave_nfs_node.sh master_node_ip
238
239Configuration (Rancher and Kubernetes)
240======================================
241
242Access Rancher server via web browser
243-------------------------------------
244(e.g. http://10.12.6.16:8080/env/1a5/apps/stacks)
245
246.. image:: Access_Rancher_server_via_web_browser.jpeg
247
248Add Kubernetes Environment to Rancher
249-------------------------------------
250
2511. Select “Manage Environments”
252
253.. image:: Add_Kubernetes_Environment_to_Rancher.png
254
2552. Select “Add Environment”
256
257.. image:: Select_Add_Environment.png
258
2593. Add unique name for your new Rancher environment
260
2614. Select the Kubernetes template
262
2635. Click "create"
264
265.. image:: Click_create.jpeg
266
2676. Select the new named environment (ie. SB4) from the dropdown list (top left).
268
269Rancher is now waiting for a Kubernetes Host to be added.
270
271.. image:: K8s-Assign_Floating_IP_for_external_access.jpeg
272
273Add Kubernetes Host
274-------------------
275
2761. If this is the first (or only) host being added - click on the "Add a host" link
277
278.. image:: K8s-Assign_Floating_IP_for_external_access.jpeg
279
280and click on "Save" (accept defaults).
281
282.. image:: and_click_on_Save_accept_defaults.jpeg
283
284otherwise select INFRASTRUCTURE→ Hosts and click on "Add Host"
285
286.. image:: otherwise_select_INFRASTRUCTURE_Hosts_and_click_on_Add_Host.jpg
287
2882. Enter the management IP for the k8s VM (e.g. 10.0.0.4) that was just created.
289
2903. Click on “Copy to Clipboard” button
291
2924. Click on “Close” button
293
294.. image:: Click_on_Close_button.jpeg
295
296Without the 10.0.0.4 IP - the CATTLE_AGENT will be derived on the host - but it
297may not be a routable IP.
298
299Configure Kubernetes Host
300-------------------------
301
3021. Login to the new Kubernetes Host::
303
304 > ssh -i ~/oom-key.pem ubuntu@10.12.5.1
305 The authenticity of host '10.12.5.172 (10.12.5.172)' can't be established.
306 ECDSA key fingerprint is SHA256:tqxayN58nCJKOJcWrEZzImkc0qKQHDDfUTHqk4WMcEI.
307 Are you sure you want to continue connecting (yes/no)? yes
308 Warning: Permanently added '10.12.5.172' (ECDSA) to the list of known hosts.
309 Welcome to Ubuntu 16.04.2 LTS (GNU/Linux 4.4.0-64-generic x86_64)
310
311 * Documentation: https://help.ubuntu.com
312 * Management: https://landscape.canonical.com
313 * Support: https://ubuntu.com/advantage
314
315 Get cloud support with Ubuntu Advantage Cloud Guest:
316 http://www.ubuntu.com/business/services/cloud
317
318 180 packages can be updated.
319 100 updates are security updates.
320
321 The programs included with the Ubuntu system are free software;
322 the exact distribution terms for each program are described in the
323 individual files in /usr/share/doc/*/copyright.
324
325 Ubuntu comes with ABSOLUTELY NO WARRANTY, to the extent permitted by
326 applicable law.
327
328 To run a command as administrator (user "root"), use "sudo <command>".
329 See "man sudo_root" for details.
330
331 ubuntu@sb4-k8s-1:~$
332
333
3342. Paste Clipboard content and hit enter to install Rancher Agent::
335
336 ubuntu@sb4-k8s-1:~$ sudo docker run -e CATTLE_AGENT_IP="10.0.0.4“ --rm --privileged -v /var/run/docker.sock:/var/run/docker.sock -v /var/lib/rancher:/var/lib/rancher rancher/agent:v1.2.9 http://10.12.6.16:8080/v1/scripts/5D757C68BD0A2125602A:1514678400000:yKW9xHGJDLvq6drz2eDzR2mjato
337 Unable to find image 'rancher/agent:v1.2.9' locally
338 v1.2.9: Pulling From rancher/agent
339 b3e1c725a85f: Pull complete
340 6071086409fc: Pull complete
341 d0ac3b234321: Pull complete
342 87f567b5cf58: Pull complete
343 a63e24b217c4: Pull complete
344 d0a3f58caef0: Pull complete
345 16914729cfd3: Pull complete
346 dc5c21984c5b: Pull complete
347 d7e8f9784b20: Pull complete
348 Digest: sha256:c21255ac4d94ffbc7b523F870F20ea5189b68Fa3d642800adb4774aab4748e66
349 Status: Downloaded newer image for rancher/agent:v1.2.9
350
351 INFO: Running Agent Registration Process, CATTLE_URL=http://10.12.6.16:8080/v1
352 INFO: Attempting to connect to: http://10.12.6.16:8080/v1
353 INFO: http://10.12.6.16:8080/v1 is accessible
354 INFO: Inspecting host capabilities
355 INFO: Boot2Docker: false
356 INFO: Host writable: true
357 INFO: Token: xxxxxxxx
358 INFO: Running registration
359 INFO: Printing Environment
360 INFO: ENV: CATTLE_ACCESS_KEY=98B35AC484FBF820E0AD
361 INFO: ENV: CATTLE_AGENT_IP=10.0.9.4
362 INFO: ENV: CATTLE_HOME=/var/lib/cattle
363 INFO: ENV: CATTLE_REGISTRATION_ACCESS_KEY=registrationToken
364 INFO: ENV: CATTLE_REGISTRATION_SECRET_KEY=xxxxxxx
365 INFO: ENV: CATTLE_SECRET_KEY=xxxxxxx
366 INFO: ENV: CATTLE_URL=http://10.12.6.16:8080/v1
367 INFO: ENV: DETECTED_CATTLE_AGENT_IP=10.12.5.172
368 INFO: ENV: RANCHER_AGENT_IMAGE=rancher/agent:v1.2.9
369 INFO: Launched Rancher Agent: c27ee0f3dc4c783b0db647ea1f73c35b3843a4b8d60b96375b1a05aa77d83136
370 ubuntu@sb4-k8s-1:~$
371
3723. Return to Rancher environment (e.g. SB4) and wait for services to complete
373 (~ 10-15 mins)
374
375.. image:: Return_to_Rancher_environment_eg_SB4_and_wait_for_services_to_complete_10-15_mins.jpeg
376
377Configure kubectl and helm
378==========================
379In this example we are configuring kubectl and helm that have been installed
380(as a convenience) onto the rancher and kubernetes hosts. Typically you would
381install them both on your PC and remotely connect to the cluster. The following
382procedure would remain the same.
383
3841. Click on CLI and then click on “Generate Config”
385
386.. image:: Click_on_CLI_and_then_click_on_Generate_Config.jpeg
387
3882. Click on “Copy to Clipboard” - wait until you see a "token" - do not copy
389 user+password - the server is not ready at that point
390
391.. image:: Click_on_Copy_to_Clipboard-wait_until_you_see_a_token-do_not_copy_user+password-the_server_is_not_ready_at_that_point.jpeg
392
3933. Create a .kube directory in user directory (if one does not exist)::
394
395 ubuntu@sb4-kSs-1:~$ mkdir .kube
396 ubuntu@sb4-kSs-1:~$ vi .kube/config
397
3984. Paste contents of Clipboard into a file called “config” and save the file::
399
400 apiVersion: v1
401 kind : Config
402 clusters:
403 - cluster:
404 api-version: v1
405 insecure-skip-tls-verify: true
406 server: "https://10.12.6.16:8080/r/projects/1a7/kubernetes:6443"
407 name: "SB4"
408 contexts:
409 - context:
410 cluster: "SB4"
411 user: "SB4"
412 name: "SB4"
413 current-context: "SB4"
414 users:
415 - name: "SB4"
416 user:
417 token: "QmFzaWMgTlRBd01qZzBOemc)TkRrMk1UWkNOMFpDTlVFNlExcHdSa1JhVZreE5XSm1TRGhWU2t0Vk1sQjVhalZaY0dWaFVtZGFVMHQzWW1WWVJtVmpSQT09"
418 ~
419 ~
420 ~
421 - INSERT --
422
4235. Validate that kubectl is able to connect to the kubernetes cluster::
424
425 ubuntu@sb4-k8s-1:~$ kubectl config get-contexts
426 CURRENT NAME CLUSTER AUTHINFO NAMESPACE
427 * SB4 SB4 SB4
428 ubuntu@sb4-kSs-1:~$
429
430and show running pods::
431
432 ubuntu@sb4-k8s-1:~$ kubectl get pods --all-namespaces -o=wide
433 NAMESPACE NAME READY STATUS RESTARTS AGE IP NODE
434 kube-system heapster—7Gb8cd7b5 -q7p42 1/1 Running 0 13m 10.42.213.49 sb4-k8s-1
435 kube-system kube-dns-5d7bM87c9-c6f67 3/3 Running 0 13m 10.42.181.110 sb4-k8s-1
436 kube-system kubernetes-dashboard-f9577fffd-kswjg 1/1 Running 0 13m 10.42.105.113 sb4-k8s-1
437 kube-system monitoring-grafana-997796fcf-vg9h9 1/1 Running 0 13m 10.42,141.58 sb4-k8s-1
438 kube-system monitoring-influxdb-56chd96b-hk66b 1/1 Running 0 13m 10.4Z.246.90 sb4-k8s-1
439 kube-system tiller-deploy-cc96d4f6b-v29k9 1/1 Running 0 13m 10.42.147.248 sb4-k8s-1
440 ubuntu@sb4-k8s-1:~$
441
4426. Validate helm is running at the right version. If not, an error like this
443 will be displayed::
444
445 ubuntu@sb4-k8s-1:~$ helm list
Michael O'Brien633217a2018-08-15 14:10:43 -0400446 Error: incompatible versions c1ient[v2.9.1] server[v2.6.1]
Roger Maitlandeb412c62018-05-31 14:09:09 -0400447 ubuntu@sb4-k8s-1:~$
448
4497. Upgrade the server-side component of helm (tiller) via `helm init --upgrade`::
450
451 ubuntu@sb4-k8s-1:~$ helm init --upgrade
452 Creating /home/ubuntu/.helm
453 Creating /home/ubuntu/.helm/repository
454 Creating /home/ubuntu/.helm/repository/cache
455 Creating /home/ubuntu/.helm/repository/local
456 Creating /home/ubuntu/.helm/plugins
457 Creating /home/ubuntu/.helm/starters
458 Creating /home/ubuntu/.helm/cache/archive
459 Creating /home/ubuntu/.helm/repository/repositories.yaml
460 Adding stable repo with URL: https://kubernetes-charts.storage.googleapis.com
461 Adding local repo with URL: http://127.0.0.1:8879/charts
462 $HELM_HOME has been configured at /home/ubuntu/.helm.
463
464 Tiller (the Helm server-side component) has been upgraded to the current version.
465 Happy Helming!
466 ubuntu@sb4-k8s-1:~$
467
468ONAP Deployment via OOM
469=======================
470Now that kubernetes and Helm are installed and configured you can prepare to
471deploy ONAP. Follow the instructions in the README.md_ or look at the official
472documentation to get started:
473
474- :ref:`quick-start-label` - deploy ONAP on an existing cloud
475- :ref:`user-guide-label` - a guide for operators of an ONAP instance
476
477