Usually multi-node Kubernetes installation are suggested for production and larger trials.
For your convenience CORD provides some easy to use automated scripts to quickly install a lab environment in few commands. The goal of this script is to install Kubespray on a set of (minimum 3) target machines.
At the end of the procedure, Kubespray should be installed.
All scripts are in the kubespray-installer folder just downloaded. From now on the guide assumes you’re running commands from this folder.
The main script (setup.sh) provides an helper with instructions. Just run ./setup.sh --help to see it.
The two main functions are:
On the operator machine
git clone https://gerrit.opencord.org/automation-tools
Inside, you will find a folder called kubespray-installer
In the following example we assume that
Remote machines have the following IP addresses:
The deployment/POD has been given an arbitrary name: onf
The installation procedure goes through the following steps (right in this order):
To run the installation script, type
./setup.sh -i onf 10.90.0.101 10.90.0.102 10.90.0.103
NOTE: the first time you use the script, you will be promped to insert your password multiple times.
At the end of the procedure, Kubespray should be installed and running on the remote machines.
The configuration file to access the POD will be saved in the subfolder configs/onf.conf.
Want to deploy another POD without affecting your existing deployment?
Runt the following:
./setup.sh -i my_other_deployment 192.168.0.1 192.168.0.2 192.168.0.3
Your onf.conf configuration will be always there, and your new my_other_deployment.conf file as well!
Kubectl and helm need to be pointed to a specific cluster, before being used.
The script helps you also to automatically export the path pointing to an existing Kubespray configuration, previously generated during the installation.
For example, if you want to run kubectl get nodes against the onf cluster just deployed, you should run:
source setup.sh -s onf
This will automatically run for you
export FULL_PATH/kubespray-installer/configs/onf.conf
As a result, you’ll now be able to successfully run kubectl get nodes.