Infrastructure for Ethereum faucets
Go to file
Jakub Sokołowski e13fb819c0
go back to using light sync mode on master
Signed-off-by: Jakub Sokołowski <jakub@status.im>
2019-04-17 13:10:31 +02:00
ansible go back to using light sync mode on master 2019-04-17 13:10:31 +02:00
.gitignore add gitignore 2019-03-18 16:05:51 +01:00
Makefile remove references to DigitalOcean since we don't use it 2019-03-20 11:56:06 +01:00
README.md add sub sections 2019-03-20 10:01:06 +01:00
ansible.cfg add basic ansible config 2019-03-18 16:06:16 +01:00
main.tf add a volume for faucet master 2019-04-16 18:37:27 +02:00
variables.tf remove references to DigitalOcean since we don't use it 2019-03-20 11:56:06 +01:00
workspaces.tf add miner_count and missing rinkeby empty config 2019-03-18 16:45:07 +01:00

README.md

Description

This repo defines infrasctructure for Rinkeby and Ropsten Ethereum faucets.

The endpoints are:

Requirements

In order to use this you will need secrets(passwords, certs, keys) contained within the infra-pass repository. If you can't see it ask jakub@status.im to get you access for it.

In order for this to work first you need to install necessary Terraform plugins and get the right secrets from the infra-pass repo, to do that simply run:

make
# alternatively
make plugins
make secrets

This will put the necessary certificates, keys, and passwords are in place so you can deploy and configure hosts.

Usage

To deploy hosts simply:

terraform plan
terraform apply

Then configure hosts:

ansible-playbook ansible/main.yml

Details

Read up on the roles:

  • faucet - Faucet API for distributing funds
  • geth-miner - Geth miner instance for collecting funds

Read the Terraform and Ansible article in our infra-docs repo.

Links