# AIT (All-In-Three) Deploy

<figure><img src="/files/K29ghe7q3ptzUv2yQmaf" alt=""><figcaption></figcaption></figure>

## OMniLeads in a Horizontal Cluster

Using this installation method, it is possible to deploy the OMniLeads Suite in a Horizontal Cluster layout, grouping containers according to the following scheme:

<figure><img src="/files/GqMCRMV62jf5PBmwkFen" alt=""><figcaption></figcaption></figure>

To do this, three Linux instances (with any modern operating system) with Internet access are required. Since Ansible uses an SSH (secure shell) connection process to access the instance and run its playbook, it is a mandatory requirement to have the SSH public key and the known\_hosts file configured appropriately on each host.

## Understanding the Inventory File

Below is a generic inventory file for a typical deployment in the AIT schema. In its first section, the different hosts are listed by tenant and by type of deployment to be executed (cluster\_instances):

<figure><img src="/files/d3LJuDZ1BKvdNrRXZf9a" alt=""><figcaption></figcaption></figure>

In its second section, the inventory file allows parameterizing environment variables necessary for the action. Note: By default, all of them directly affect ALL declared instances, unless a variable (or group of variables) is specified in the host (or group of hosts) section in question.

Finally, the last section covers the grouping of hosts based on the selected architecture. In our case, under the labels omnileads\_data, omnileads\_voice and omnileads\_app the hosts corresponding to the instance(s) that are intended to be deployed would be listed.

Below is an example:

```
#############################################################################################################
# -- In this section the hosts are grouped based on the type of deployment (AIO, Cluster & Cluster HA).     #
#############################################################################################################

omnileads_aio: 
  hosts:
    #tenant_example_1:
    #tenant_example_2:
    #tenant_example_3:
    #tenant_example_4:
    #tenant_example_7_aio_A:
    #tenant_example_7_aio_B:

################################################    
omnileads_data:   ####### <<<<<<<<<<<< USTED ESTA AQUI! <<<<<<<<<<<<<<<
  hosts:
    #tenant_example_5_data:  
    
omnileads_voice:
  hosts:
    #tenant_example_5_voice:

omnileads_app:
  hosts:
    #tenant_example_5_app:

################################################
ha_omnileads_sql:
  hosts:
    #tenant_example_7_sql_A:
    #tenant_example_7_sql_B:

```

## Now, let's get to work!

As a first step, we proceed to create the instances folder in the root directory. Following this, inside it we will create a subfolder where we will host the example inventory file provided by the repository:

Note: Although we are within a versioned repository, the name "instances" is reserved and is ignored by the repository from the .gitignore file.

<pre><code><strong>mkdir instances
</strong>mkdir instances/omlcluster
cp inventory.yml instances/omlcluster
</code></pre>

According to what is understood in the sections of the inventory file, we will declare our future OMniLeads instance in AIT in the cluster section. In our case, we will use the example name "tala" to define the tenant:

```
cluster_instances:
  children:
    tala:
      hosts:
        tala_data:
          ansible_host: 172.16.101.41
          omni_ip_lan: 172.16.101.41
          ansible_ssh_port: 22
        tala_voice:
          ansible_host: 172.16.101.42
          omni_ip_lan: 172.16.101.42
          ansible_ssh_port: 22
        tala_app:
          ansible_host: 172.16.101.43
          omni_ip_lan: 172.16.101.43
          ansible_ssh_port: 22
      vars:
        tenant_id: tala
        data_host: 172.16.101.41
        voice_host: 172.16.101.42
        application_host: 172.16.101.43
        infra_env: lan

```

It is important to specify the scenario in which you will work. If we will use a VPS, the environment to configure will be "cloud", and it will be "lan" if a Virtual Machine is used. To do this, we will define the infra\_env environment variable as appropriate: "cloud" (by default) or "lan".

The variables tenant\_id (name of the tenant), ansible\_host (IP address that Ansible must reach to run the Playbook) and omni\_ip\_lan (private IP address of the lan interface) are mandatory to specify the tenant. In turn, the bucket\_url and postgres\_host variables must be commented out, so that both PostgreSQL and MinIO Object Storage are installed within the \_data instance.

Finally, we must ensure that the last section contains the tenant within its corresponding groups (\_data, \_voice and \_app). Below is an example about our tenant "tala":

```
#############################################################################################################
# -- In this section the hosts are grouped based on the type of deployment (AIO, Cluster & Cluster HA).     #
#############################################################################################################

omnileads_aio:
  hosts:
    #tenant_example_1:
    #tenant_example_2:
    #tenant_example_3:
    #tenant_example_4:

omnileads_data:
  hosts:
    tala_data:    
    
omnileads_voice:
  hosts:
    tala_voice:

omnileads_app:
  hosts:
    tala_app:
```

With the inventory file configured, we proceed to execute the new tenant installation action:

```
./deploy.sh --action=install --tenant=omlcluster
```

In the First Login section, you can review the necessary steps to obtain the first access to the UI with the Administrator user.

For more information, we suggest visiting the documentation displayed in the official project repository.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.omnileads.net/english/omnileads-installation-methods/deploy-with-ansible/ait-all-in-three-deploy.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
