infra-faucet/ansible/main.yml

49 lines
1.0 KiB
YAML

---
- name: Install origin certificates
hosts: faucet-master
roles:
- role: origin-cert
- 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