Skip to content

Commit d8c095c

Browse files
committed
describe overrides in code and TOML, add docs about custom ports
1 parent 63d0cf0 commit d8c095c

File tree

4 files changed

+14
-0
lines changed

4 files changed

+14
-0
lines changed

book/src/framework/components/chainlink/node.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,10 @@ Here we provide full configuration reference, if you want to copy and run it, pl
5656
use_cache = true
5757
# Describes deployed or external Chainlink node
5858
[cl_node.out.node]
59+
# API user name
60+
api_auth_user = '[email protected]'
61+
# API password
62+
api_auth_password = 'fj293fbBnlQ!f9vNs'
5963
# Host Docker URLs the test uses
6064
# in case of using external component you can replace these URLs with another deployment
6165
p2p_url = "http://127.0.0.1:32812"

book/src/framework/components/chainlink/nodeset.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,10 @@ Then configure NodeSet
108108

109109
# Describes deployed or external Chainlink node
110110
[nodeset.out.cl_nodes.node]
111+
# API user name
112+
api_auth_user = '[email protected]'
113+
# API password
114+
api_auth_password = 'fj293fbBnlQ!f9vNs'
111115
# Host Docker URLs the test uses
112116
# in case of using external component you can replace these URLs with another deployment
113117
p2p_url = "http://127.0.0.1:32996"

book/src/framework/components/external.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ For example, to integrate with remote `k8s` environment you can use `CTF_CONFIGS
4545
use_cache = true
4646

4747
[nodeset.out.cl_nodes.node]
48+
# set up your user/password for API authorization
49+
api_auth_user = '[email protected]'
50+
api_auth_password = 'fj293fbBnlQ!f9vNs'
4851
# set up each node URLs
4952
p2p_url = "http://127.0.0.1:12000"
5053
url = "http://127.0.0.1:10000"

framework/.changeset/v0.2.4.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
- Add custom ports exposure in TOML
2+
- Return default user/password credentials in outputs, so we can connect to any node by overriding TOML params
3+
- Change `clclient.New` signature

0 commit comments

Comments
 (0)