Warning

This configuration might be deprecated and needs to be reviewed.

Ansible is an automation tool that handles remote configuration and management by using SSH protocol.

Ansible is based on files named playbooks that contain the list of actions to be performed and inventories that define the list of machines in which the tasks should be run.

A playbook can call an Ansible roles which configure one aspect of SEAPATH or do an action on a SEAPATH machine.

For instance, the seapath.ansible.iptable role will configure the iptable firewall. The seapath_ansible.deploy_vms_cluster role will deploy a VM on a SEAPATH cluster.

For more information about Ansible roles, refer to the Ansible documentation.

SEAPATH roles are described in the SEAPATH Ansible Galaxy page.

SEAPATH offers some basic which use roles, but these playbooks are generic and can not feet with any use case. In this case, you probably need to write your own playbooks.

Prerequisite

Before to use Ansible you need to fetch the SEAPATH Ansible repository and run the prepare.sh script.

Interact with the cluster with Ansible

Once the machines have been flashed with the corresponding SEAPATH Yocto images, the cluster can be configured by using the Ansible tool. You can follow the procedure described on SEAPATH Ansible to deploy the cluster or create your own Ansible playbooks.

As described on the previous link, the different configuration and setup tasks to configure the cluster have been gathered on a single playbook, so it is enough to execute:

ansible-playbook -i inventories/cluster_inventory.yaml --limit=cluster_machines playbooks/cluster_setup_main.yaml

You must create an inventory, more details here.

You must launch these playbooks in this order:

  1. Only for Debian installation: playbooks/cluster_setup_prerequisdebian.yaml (more details here)

  2. playbooks/cluster_setup_network.yaml (more details here)

  3. playbooks/cluster_setup_ceph.yaml (more details here)

  4. playbooks/cluster_setup_libvirt.yaml (more details here)

  5. playbooks/cluster_setup_ha.yaml (more details here)

  6. playbooks/cluster_setup_keys.yaml (more details here)

Virtual cluster

On the host, you must set these sysctl settings:

net.bridge.bridge-nf-call-arptables = 0
net.bridge.bridge-nf-call-ip6tables = 0
net.bridge.bridge-nf-call-iptables = 0

You must define 3 network interfaces on each host of your cluster.

Inventories

The inventory must define these hosts to run:

The inventory must define these variables:

Playbooks

Prerequisite

When the host is installed, the ansible/playbooks/cluster_setup_prerequisdebian.yaml need to launch to finish the installation.

The inventory must define these variables to run the playbook:

In this part, the playbook define the scheduling and the prioritization (see the section).

Hardening

The ansible/playbooks/cluster_setup_hardening_debian.yaml playbook enables system hardening and the ansible/playbooks/cluster_setup_unhardening_debian.yaml playbook disables it.

The hardened elements are:

Kernel

The project uses a real-time kernel, the Linux kernel with the PREEMPT_RT patch. So, he needs to have some parameters as:

In the hardening system, the kernel has these parameters:

More details on the kernel's parameters here.

Network configuration

The inventory must define these variables to run the step:

At the end of this step, make sure that:

  • Each host in the cluster pings each other (simple and fragmented package)

  • Hosts use a DNS server

  • Hosts are synchronized with NTP server (it's necessary for the shared storage)