2019-04-26 10:00:06 +00:00
|
|
|
# Description
|
|
|
|
|
|
|
|
This role configures a `geth`([go-ethereum](https://github.com/ethereum/go-ethereum)) container.
|
|
|
|
|
|
|
|
The image used by default is [ethereum/client-go](https://hub.docker.com/r/ethereum/client-go/).
|
|
|
|
|
|
|
|
# Configuration
|
|
|
|
|
|
|
|
The only mandaotry settings is the account password, which can be set to an empty string:
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
geth_account_password: 'my-secret-password'
|
|
|
|
```
|
|
|
|
|
|
|
|
Other important settings are:
|
|
|
|
|
|
|
|
```yaml
|
2019-04-26 10:02:35 +00:00
|
|
|
geth_cont_name: 'geth-mainnet'
|
2019-04-26 10:00:06 +00:00
|
|
|
geth_network_name: 'mainnet'
|
|
|
|
geth_sync_mode: 'full'
|
|
|
|
geth_log_level: 3
|
2019-04-26 10:04:06 +00:00
|
|
|
geth_consul_extra_tags: ["mytag"]
|
2019-04-26 10:00:06 +00:00
|
|
|
```
|
|
|
|
|
2019-04-26 13:27:38 +00:00
|
|
|
If you want to control the account used by the `geth` process you can use:
|
|
|
|
```yaml
|
|
|
|
geth_account_addr: 0x1j98dsa087fh09as8d7fhsa98dhfas9s0dasjd0d
|
|
|
|
geth_account_pass: my-secret-account-pass
|
|
|
|
geth_account_json: '{"account":"json_data"}'
|
|
|
|
```
|
|
|
|
|
2019-04-26 10:00:06 +00:00
|
|
|
For the rest see the [`defaults/main.yml`](/defaults/main.yml) config file.
|
|
|
|
|
|
|
|
# Known Issues
|
|
|
|
|
2019-04-26 12:03:39 +00:00
|
|
|
Currently only 3 networks are supported: `mainnet`, `ropsten`, and `goerli`
|