infra-swarm/ansible/roles/swarm/defaults/main.yml

33 lines
661 B
YAML
Raw Normal View History

2018-08-01 19:58:01 +00:00
---
cont_image: 'statusteam/swarm:latest'
cont_name: 'swarm-node'
cont_state: started
cont_recreate: false
cont_restart: false
cont_vol: '/docker/{{ cont_name }}'
# listen port which will be incremented for every dontainer
cont_port: 30399
# address to listen on
cont_addr: '0.0.0.0'
# Geth settings
geth_name: 'swarm-geth'
geth_vol: '/docker/{{ geth_name }}'
geth_keys: '{{ geth_vol }}/keys'
geth_port: 30303
geth_rpc_addr: '0.0.0.0'
geth_rpc_port: 8545
# account to use for swarm
geth_pass: ~
geth_account: ~
2018-08-28 14:05:21 +00:00
# main http port
swarm_addr: '0.0.0.0'
swarm_port: 8080
swarm_ssl: 8443
2018-08-28 14:05:21 +00:00
2018-08-01 19:58:01 +00:00
# for key generation
genkey_image: 'ethereum/client-go:alltools-latest'