You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.9 KiB

  1. ---
  2. ###
  3. ### Tendermint installation
  4. ###
  5. ## This file shows and sets the global defaults for the role variables.
  6. ##
  7. ## install
  8. ##
  9. ## service variable defines which service is going to be managed. It can be set to basecoin or ethermint.
  10. service: basecoin
  11. ## release_install indicates if the install role should look for a privately built binary after installing the service package. If set to false, the privately built binary in the GOPATH is going to override the binary on the target systems.
  12. #release_install: true
  13. ## binary stores the path to the privately built service binary, if there is any. By default it uses the GOPATH environment variable.
  14. #binary: "{{ lookup('env','GOPATH') | default('') }}/bin/{{service}}"
  15. ##
  16. ## config
  17. ##
  18. ## tendermint_genesis_file contains the path and filename to a previously generated genesis.json for the underlying tendermint service. If undefined, the json file is dynamically generated.
  19. #tendermint_genesis_file: "<undefined>"
  20. ## service_genesis_file contains the path and filename to a previously generated genesis.json for the service. If undefined, the json file is dynamically generated.
  21. #service_genesis_file: "<undefined>"
  22. ## testnet_name is used to find seed IPs and public keys and set the chain_id in genesis.json and config.toml
  23. #testnet_name: testnet1
  24. ## app_options_file contains a path and filename which will be included in a generated service genesis.json file on all nodes. The content will be dumped into the app_options dictionary in the service genesis.json..
  25. #app_options_file: "app_options_files/dev_money"
  26. ## Internal use only. validators indicates if the nodes are validator nodes. The tendermint genesis.json will contain their public keys.
  27. #validators: true
  28. ## Internal use only. seeds contain the list of servers (with ports) that are validators in a testnet. Only effective if validators == false. If validators == true, then all nodes will be automatically included here.
  29. #seeds: ""