20. Kubernetes

20.1 Kubernetes in Starling

Containers allow the developer to abstract away from the specific hardware that the software will be running on. This is great for local development where a user can simply spin up the docker containers required, but what about in ’production’? Where do we actually run these containers.

The deployment of containers to a computation cluster - such as the cloud, a network of servers or a group of flying UAVs is not a trivial task. Such a task must include managing available resources, creating and managing the network connection within the cluster, service scalability, and services such as failure recovery (self healing) and logging. Thankfully this is handled by a class of applications known as container orchestration platforms. This project uses Kubernetes as its container orchestration platform which is an industry standard for container deployments within a server farm.

In Kubernetes in particular, each physical piece of server hardware capable of running a container is referred to as a Node. The kubernetes control plane containers then take in user created configurations to decide where to run a particular container. This yaml file is known as a KubeConfig file and specifies:

  • Defines which container images and which versions make up the application, and where they are located (in what registry)

  • Provisions required storage and hardware capabilities using mounted volumes and labels along with the concept of taints and tolerations

  • Defines and secures network configurations

20.2 Kubernetes Deployment Types

There are also a number of different types of deployment which are used throughout Starling, all of which are specified by Kubernetes Configuration.

  • Pod - A single deployment of a set of containers to a particular node.

  • Deployment - A single self-healing pod deployment which can be scaled.

  • StatefulSet - A deployment with which the hostnames follow ordinal enumeration upon scaling.

  • DaemonSet - A pod is deployed to every node which satisfies the taints and tolerations.

  • Service - A special pod which manages networking and service access.

There are a number of different versions of kubernetes. Due to the low-power, low-compute nature of UAV companion computers we have chosen to use k3s[^1], a lightweight variant of kubernetes often used in edge and iot computing applications. In addition, to streamline the transitory development process from container to kubernetes, we also make use of kind[^2] which allows the running of kubernetes inside a docker container. The kubectl[^3] command line tool is primarily used to interact with a kubernetes cluster.

20.3 Local Testing using Kubernetes In Docker (KIND)

In order to test kubernetes locally, we have decided to use Kubernetes In Docker (Kind). Kind is a useful tool which runs Kubernetes between multiple docker containers, just as if the containers themselves were kubernetes physical nodes. This allows us to test deployments locally on a system which resembles the actual flight arena.

The Starling CLI takes care of many of the details of how kind is setup in such a way as to mirror the real vehicles. This includes ensuring that vehicles have access to virtual vehicle.config files and other measures.

It also means that any deployed daemonsets can be tested to ensure that they deploy correctly to the real vehicles.

See the CLI Documentation for further information.

20.4 Flight Arena K3S Practical Details

20.4.1 Root/Non-root access

By default the k3s installation creates a configuration file k3s.yaml which stores access tokens, the IP address of the master servers and various other information. By default this is stored in /etc/rancher/k3s/k3s.yaml. Any time k3s is invoked, i.e. any time you call k3s kubectl ..., this configuration file is accessed and read. However because the configuration file is stored in the system directory /etc/, by default any call to k3s would need sudo, i.e. sudo k3s kubectl ....

This can be avoided by moving the k3s.yaml file to your local user directory. The recommended location is ~/.kube/config/k3s.yaml, but it can be put anyway. The only requirement is that the KUBECONFIG environment variable should be set to the location of the configuration file. This can be achieved by adding the following line somewhere into your ~/.bashrc (or ~/.zshrc if using zsh):

export KUBECONFIG=~/.kube/config/k3s.yaml

Note: Do not forget to source your bashrc after making the change to see the change in your terminal source ~/.bashrc

Once this is set, any call of k3s ... will not require sudo.

20.4.2 Access Across Machines

If you are in the BRL Flight Arena, or you are running a multiple machine cluster, you may want to be able to run and test containers on a different physical machine to the machine running the cluster master node. As detailed in the above section on non-root access, k3s generates the k3s.yaml configruation file. Importantly this file tells k3s what the ip of the master node is as shown in this example snippet of a k3s file:

apiVersion: v1
clusters:
- cluster:
    certificate-authority-data: <long data string>
    server: https://127.0.0.1:6443 ### <---- This line!
  name: default
contexts:
- context:
    cluster: default
    user: default
  name: default
current-context: default
kind: Config
preferences: {}
users:
- name: default
  user:
    client-certificate-data: <another long data string>
    client-key-data: < secret client key!>

To therefore access the master node (and the dashboard and kubectl etc) on another machine, you must.

  1. Copy the k3s.yaml file off of the server onto your own machine. (For the BRL, see below)
  2. In the k3s.yaml change the server ip from 127.0.0.1 to the ip address of the master machine.
  3. Ensure that either KUBECONFIG is set, or you have replaced the filee at ~/.kube/config/k3s.yaml with your own modified one (may need sudo)

Once that is set up verify that you can get the dashboard access token and log in.

k3s kubectl -n kubernetes-dashboard describe secret admin-user-token | grep ^token

Also then verify that you can run any of the kubernetes deployments, and that they will be deployed to the master cluster (and not your own).

Note: Even if the cluster is not running on your local machine, you will still need to install the k3s binaries. The command run by run_k3s.sh or ./scripts/start_k3s.sh both download and then automatically start k3s in the background of your machine. To stop it from starting, pass the --do-not-start option to either command. If you have already have k3s running, run k3s-killall.sh which will stop all k3s processes without uninstalling it entirely (so you still get access to the k3s command line tools).

In the BRL, to get the k3s.yaml file, you should simply be able to scp (ssh copy) the file from the master machine ~/.kube/config/k3s.yaml to your local machine, and change the IP address.

20.5 Configuration Files