We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Let's say We have the following line of the config in the data-node config:
data-node
BootstrapPeers = [{{- range $i, $peer := .IPSFPeers -}} {{- if ne $i 0 }},{{end -}} "/ip4/127.0.0.1/tcp/4{{ printf "%02d" $peer.Index }}5/ipfs/{{ $peer.ID }}" {{- end -}}]
Then when we have one data node in the config.hcl We get the following output:
config.hcl
BootstrapPeers = ["/ip4/127.0.0.1/tcp/4025/ipfs/12D3KooWDhDcgBCEYxqAsQGYkNWQboeVacCMEuhMtRJbYsiKPFLH"]
Then, We want to add a node with the following command:
vegacapsule nodes add --base-on "$DATA_NODE_BASE" --start=false --out-path ./new-data-node.json;
And We are getting the same config as previously, but I believe we should get two bootstrap nodes:
BootstrapPeers = ["/ip4/127.0.0.1/tcp/4025/ipfs/.....", "/ip4/127.0.0.1/tcp/4035/ipfs/....."]
I am currently doing this fix manually as the workaround.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Let's say We have the following line of the config in the
data-node
config:Then when we have one data node in the
config.hcl
We get the following output:Then, We want to add a node with the following command:
And We are getting the same config as previously, but I believe we should get two bootstrap nodes:
I am currently doing this fix manually as the workaround.
TODO:
The text was updated successfully, but these errors were encountered: