Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yujinlim/ansible-geth
spin up ethereum node using geth (go-ethereum) with ansible
https://github.com/yujinlim/ansible-geth
Last synced: 15 days ago
JSON representation
spin up ethereum node using geth (go-ethereum) with ansible
- Host: GitHub
- URL: https://github.com/yujinlim/ansible-geth
- Owner: yujinlim
- Created: 2018-01-31T07:45:11.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-31T10:48:46.000Z (almost 7 years ago)
- Last Synced: 2024-11-07T18:03:58.653Z (2 months ago)
- Size: 1.95 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
geth
=========
Installation of geth and run ethereum node as a service.Currently it only supports systemd service. Will add more in the future.
Role Variables
--------------
```yaml
---
geth_name: gethgeth_dir: /usr/local
geth_version: geth-linux-amd64-1.7.3-4bb3c89d
geth_url: https://gethstore.blob.core.windows.net/buildsgeth_datadir: /root/.ethereum
geth_cache: 1024 # 1gb
geth_testnet: false
geth_rinkeby: false
geth_port: 30303
geth_rpc: false
geth_maxpeer: 25# geth rpc values if it is true
geth_rpcaddr: 0.0.0.0
geth_rpcport: 8545
geth_rpcapi: "db,eth,net,web3"
geth_rpccorsdomain: "*"```
Example Playbook
----------------Including an example of how to use your role (for instance, with variables passed in as parameters) is always nice for users too:
- hosts: servers
roles:
- { role: geth }