Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: default cardano_node config/topology file #38

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace: blinklabs
name: cardano
version: 0.1.0
version: 0.1.1
readme: README.md
authors:
- Aurora Gaffney <[email protected]>
Expand Down
4 changes: 2 additions & 2 deletions roles/cardano_node/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ cardano_node_rts_flags: '-N2 -A64m -I0 -qg -qb --disable-delayed-os-memory-retur

# Config
cardano_node_manage_config: false # this currently controls mounting only
cardano_node_config_file: '{{ cardano_node_config_container_dir }}/{{ cardano_node_network }}-config.json'
cardano_node_config_file: '{{ cardano_node_config_container_dir }}/{{ cardano_node_network }}/config.json'

# Topology
cardano_node_manage_topology: false
cardano_node_p2p_enabled: '{{ false if cardano_node_network == "mainnet" else true }}'
cardano_node_p2p_use_ledger_after: 84916732
cardano_node_topology_file: '{{ cardano_node_topology_container_dir }}/{{ cardano_node_network }}-topology.json'
cardano_node_topology_file: '{{ cardano_node_topology_container_dir }}/{{ cardano_node_network }}/topology.json'
cardano_node_topology_localroots: []
cardano_node_topology_publicroots:
- address: 'relays-new.cardano-{{ cardano_node_network }}.iohk.io'
Expand Down
Loading