infra-faucet/ansible/main.yml

54 lines
1.2 KiB
YAML
Raw Normal View History

---
- name: Install origin certificates
hosts: faucet-master
roles:
- { role: origin-certs, tags: origin-certs }
- name: Create a SWAP file
hosts: faucet-master
roles:
- { role: swap-file, tags: swap-file }
- name: Configure ropsten faucet
hosts: faucet-master
roles:
- role: infra-role-geth
- role: infra-role-geth-exporter
- role: faucet-api
- role: geth-peer-fix
vars:
faucet_network: ropsten
faucet_http_port: 3000
geth_port: 30303
geth_rpc_port: 8545
geth_expo_cont_port: 9200
- name: Configure rinkeby faucet
hosts: faucet-master
roles:
- role: infra-role-geth
- role: infra-role-geth-exporter
- role: faucet-api
- role: geth-peer-fix
vars:
faucet_network: rinkeby
faucet_http_port: 3001
geth_port: 30304
geth_rpc_port: 8546
geth_expo_cont_port: 9201
- name: Configure rinkeby faucet
hosts: faucet-master
roles:
- role: infra-role-geth
- role: infra-role-geth-exporter
- role: faucet-api
- role: geth-peer-fix
vars:
faucet_network: goerli
faucet_http_port: 3002
geth_port: 30305
geth_rpc_port: 8547
geth_expo_cont_port: 9202