sickhye / ansible_aerospike

Ansible playbook to deploy an Aerospike cluster on Linux Vagrant instance.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ansible : Playbook Aerospike

The aim of this project is to deploy a simple Aerospike cluster on Vagrant with in memory data by default.

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.

Prerequisites

What things you need to run this Ansible playbook :

  • Vagrant must be installed on your computer
  • Update the Vagrant file based on your computer (CPU, memory), if needed
  • You must have download the ubuntu Xenial64 vagrant box :
vagrant box add https://app.vagrantup.com/ubuntu/boxes/xenial64

Usage

A good point with Vagrant is that you can create, update and destroy all architecture easily with some commands.

Be aware that you need to be in the Vagrant directory to be able to run the commands.

Build Environment

Vagrant needs to init the project to run and build it :

vagrant up

After build, you can check which virtual machine Vagrant has created :

vagrant status

If all run like it is expected, you should see something like this :

$ vagrant status

Current machine states:

aerospike01                  running (virtualbox)
aerospike02                  running (virtualbox)

Deployment

To deploy the Aerospike cluster, you just have to run the Ansible playbook aerospike.yml with this command :

ansible-playbook aerospike.yml

If everything run has expected, you should connect on any nodes and get the cluster status with this command :

$ asadm
Seed:        [('10.0.3.51', 18000, 'default')]
Config_file: /home/vagrant/.aerospike/astools.conf, /etc/aerospike/astools.conf
Aerospike Interactive Shell, version 0.1.17

Found 2 nodes
Online:  10.0.3.52:18000, 10.0.3.51:18000

Admin>

Destroy

To destroy on what Vagrant has created, just run this command :

vagrant destroy

Author

Member of Wikitops : https://www.wikitops.io/

About

Ansible playbook to deploy an Aerospike cluster on Linux Vagrant instance.


Languages

Language:Shell 100.0%