mirror of
https://github.com/tendermint/tendermint.git
synced 2026-02-05 11:31:16 +00:00
- Updated Dockerfile and created build-docker target - Changed localnode docker image to set permissions to more permissive (docker has different user than host system) - Added sentry node terraform and ansible script
19 lines
256 B
YAML
19 lines
256 B
YAML
---
|
|
|
|
#Requires BINARY and CONFIGDIR variables set.
|
|
#N=4 hosts by default.
|
|
|
|
- hosts: all
|
|
user: root
|
|
any_errors_fatal: true
|
|
gather_facts: yes
|
|
vars:
|
|
- service: tendermint
|
|
- N: 4
|
|
roles:
|
|
- stop
|
|
- config
|
|
- unsafe_reset
|
|
- start
|
|
|