You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Greg Szabo 92f10e9206 ansible: added option to provide accounts for genesis generation, terraform: added option to secure DigitalOcean servers, devops: added DNS name creation to tendermint terraform 7 years ago
..
app_options_files ansible: added option to provide accounts for genesis generation, terraform: added option to secure DigitalOcean servers, devops: added DNS name creation to tendermint terraform 7 years ago
group_vars ansible: added option to provide accounts for genesis generation, terraform: added option to secure DigitalOcean servers, devops: added DNS name creation to tendermint terraform 7 years ago
img DigitalOcean example and genesis file creation added 7 years ago
inventory Refactored Ansible, added tendermint and basecoin configuration and multiple playbooks 7 years ago
roles ansible: added option to provide accounts for genesis generation, terraform: added option to secure DigitalOcean servers, devops: added DNS name creation to tendermint terraform 7 years ago
.gitignore DigitalOcean example and genesis file creation added 7 years ago
LICENSE DigitalOcean example and genesis file creation added 7 years ago
README.md ansible: added option to provide accounts for genesis generation, terraform: added option to secure DigitalOcean servers, devops: added DNS name creation to tendermint terraform 7 years ago
Vagrantfile tendermint+basecoin configuration fixes 7 years ago
ansible.cfg DigitalOcean example and genesis file creation added 7 years ago
config-tendermint.yml Added Terraform-DigitalOcean security option, added ansible featrues. (ethermint, separated tendermint and basecoin) 7 years ago
install-basecoin.yml ansible: added option to provide accounts for genesis generation, terraform: added option to secure DigitalOcean servers, devops: added DNS name creation to tendermint terraform 7 years ago
install-ethermint.yml ansible: added option to provide accounts for genesis generation, terraform: added option to secure DigitalOcean servers, devops: added DNS name creation to tendermint terraform 7 years ago
install-tendermint-core.yml ansible: added option to provide accounts for genesis generation, terraform: added option to secure DigitalOcean servers, devops: added DNS name creation to tendermint terraform 7 years ago
reset.yml ansible: added option to provide accounts for genesis generation, terraform: added option to secure DigitalOcean servers, devops: added DNS name creation to tendermint terraform 7 years ago
restart.yml Added Terraform-DigitalOcean security option, added ansible featrues. (ethermint, separated tendermint and basecoin) 7 years ago
start-basecoin.yml Added Terraform-DigitalOcean security option, added ansible featrues. (ethermint, separated tendermint and basecoin) 7 years ago
start-ethermint.yml Added Terraform-DigitalOcean security option, added ansible featrues. (ethermint, separated tendermint and basecoin) 7 years ago
start.yml Added Terraform-DigitalOcean security option, added ansible featrues. (ethermint, separated tendermint and basecoin) 7 years ago
stop-basecoin.yml Added Terraform-DigitalOcean security option, added ansible featrues. (ethermint, separated tendermint and basecoin) 7 years ago
stop-ethermint.yml Added Terraform-DigitalOcean security option, added ansible featrues. (ethermint, separated tendermint and basecoin) 7 years ago
stop.yml Added Terraform-DigitalOcean security option, added ansible featrues. (ethermint, separated tendermint and basecoin) 7 years ago

README.md

Ansible playbook for Tendermint

Ansible plus Tendermint

The playbooks in this folder run ansible roles which:

  • install tendermint
  • install basecoin
  • configure tendermint and basecoin
  • start/stop tendermint and basecoin and reset their configuration

Prerequisites

  • Ansible 2.0 or higher
  • SSH key to the servers

Optional for DigitalOcean droplets:

  • DigitalOcean API Token
  • python dopy package

Head over to the Terraform folder for a description on how to get a DigitalOcean API Token.

Optional for Amazon AWS instances:

  • Amazon AWS API access key ID and secret access key.

The cloud inventory scripts come from the ansible team at their GitHub page. You can get the latest version from the contrib/inventory folder.

Ansible setup

Ansible requires a "command machine" or "local machine" or "orchestrator machine" to run on. This can be your laptop or any machine that runs linux. (It does not have to be part of the cloud network that hosts your servers.)

Use the official Ansible installation guide to install Ansible. Here are a few examples on basic installation commands:

Ubuntu/Debian:

sudo apt-get install ansible

CentOS/RedHat:

sudo yum install epel-release
sudo yum install ansible

Mac OSX:

sudo easy_install pip
sudo pip install ansible

To make life easier, you can start an SSH Agent and load your SSH key(s). This way ansible will have an uninterrupted way of connecting to your servers.

ssh-agent > ~/.ssh/ssh.env
source ~/.ssh/ssh.env

ssh-add private.key

Subsequently, as long as the agent is running, you can use source ~/.ssh/ssh.env to load the keys to the current session.

Optional cloud dependencies

If you are using a cloud provider to host your servers, you need the below dependencies installed on your local machine.

DigitalOcean inventory dependencies:

Ubuntu/Debian:

sudo apt-get install python-pip
sudo pip install dopy

CentOS/RedHat:

sudo yum install python-pip
sudo pip install dopy

Mac OSX:

sudo pip install dopy

Amazon AWS inventory dependencies:

Ubuntu/Debian:

sudo apt-get install python-boto

CentOS/RedHat:

sudo yum install python-boto

Mac OSX:

sudo pip install boto

Refreshing the DigitalOcean inventory

If you just finished creating droplets, the local DigitalOcean inventory cache is not up-to-date. To refresh it, run:

DO_API_TOKEN="<The API token received from DigitalOcean>"
python -u inventory/digital_ocean.py --refresh-cache 1> /dev/null

Refreshing the Amazon AWS inventory

If you just finished creating Amazon AWS EC2 instances, the local AWS inventory cache is not up-to-date. To refresh it, run:

AWS_ACCESS_KEY_ID='<The API access key ID received from Amazon>'
AWS_SECRET_ACCESS_KEY='<The API secret access key received from Amazon>'
python -u inventory/ec2.py --refresh-cache 1> /dev/null

Note: you don't need the access key and secret key set, if you are running ansible on an Amazon AMI instance with the proper IAM permissions set.

Running the playbooks

The playbooks are locked down to only run if the environment variable TF_VAR_TESTNET_NAME is populated. This is a precaution so you don't accidentally run the playbook on all your servers.

The variable TF_VAR_TESTNET_NAME contains the testnet name which ansible translates into an ansible group. If you used Terraform to create the servers, it was the testnet name used there.

If the playbook cannot connect to the servers because of public key denial, your SSH Agent is not set up properly. Alternatively you can add the SSH key to ansible using the --private-key option.

If you need to connect to the nodes as root but your local username is different, use the ansible option -u root to tell ansible to connect to the servers and authenticate as the root user.

If you secured your server and you need to sudo for root access, use the the -b or --become option to tell ansible to sudo to root after connecting to the server. In the Terraform-DigitalOcean example, if you created the ec2-user (or if you are simply on Amazon AWS), you need to add the options -u ec2-user -b to ansible to tell it to connect as the ec2-user and then sudo to root to run the playbook.

DigitalOcean

DO_API_TOKEN="<The API token received from DigitalOcean>"
TF_VAR_TESTNET_NAME="testnet-servers"
ansible-playbook -i inventory/digital_ocean.py install-basecoin.yml

Amazon AWS

AWS_ACCESS_KEY_ID='<The API access key ID received from Amazon>'
AWS_SECRET_ACCESS_KEY='<The API secret access key received from Amazon>'
TF_VAR_TESTNET_NAME="testnet-servers"
ansible-playbook -i inventory/ec2.py install-basecoin.yml

Installing custom versions

By default ansible installs the tendermint, basecoin or ethermint binary versions defined in its [default variables](#Default variables). If you build your own version of the binaries, you can tell ansible to install that instead.

GOPATH="<your go path>"
go get -u github.com/tendermint/tendermint/cmd/tendermint
go get -u github.com/tendermint/basecoin/cmd/basecoin
go get -u github.com/tendermint/ethermint/cmd/basecoin

DO_API_TOKEN="<The API token received from DigitalOcean>"
TF_VAR_TESTNET_NAME="testnet-servers"
ansible-playbook -i inventory/digital_ocean.py install-basecoin.yml -e tendermint_release_install=false -e basecoin_release_install=false

Alternatively you can change the variable settings in group_vars/all.

Other commands and roles

There are few extra playbooks to make life easier managing your servers.

  • install-tendermint-core.yml - Only install the tendermint application. This is only useful if you are developing your own ABCI.
  • install-basecoin.yml - Install tendermint and basecoin applications.
  • install-ethermint.yml - Install tendermint and ethermint applications.
  • reset.yml - Stop the application, reset the configuration and data, then start the application again. You need to pass -e service=<servicename>, like -e service=basecoin. It will restart the underlying tendermint application too.
  • restart.yml - Restart a service on all nodes. You need to pass -e service=<servicename>, like -e service=basecoin. It will restart the underlying tendermint application too.
  • stop.yml - Stop the application. You need to pass -e service=<servicename>.
  • start.yml - Start the application. You need to pass -e service=<servicename>.
  • stop-basecoin.yml - Stop the basecoin and tendermint applications.
  • start-basecoin.yml - Start the basecoin and tendermint applications.
  • stop-ethermint.yml - Stop the ethermint and tendermint applications.
  • start-ethermint.yml - Start the ethermint and tendermint applications.

The roles are self-sufficient under the roles/ folder.

  • install-tendermint - install the tendermint application. It can install release packages or custom-compiled binaries.
  • install-basecoin - install the basecoin application. It can install release packages or custom-compiled binaries.
  • install-ethermint - install the ethermint application. It can install release packages or custom-compiled binaries.
  • cleanupdata - delete tendermint database.
  • config - configure the tendermint application
  • stop - stop an application. Requires the service parameter set.
  • start - start an application. Requires the service parameter set.

Default variables

Default variables are documented under group_vars/all. You can the parameters there to deploy a previously created genesis.json file (instead of dynamically creating it) or if you want to deploy custom built binaries instead of deploying a released version.