Skip to content

Commit

Permalink
remove ghostnet from pyrometer monitoring
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasochem committed Feb 1, 2023
1 parent 2f935b2 commit 5b6c1fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ new k8s.helm.v2.Chart(
values: {
config: {
"node_monitor": {
"nodes": Object.keys(networks).map(network => "http://tezos-node-rpc." + network + ":8732"),
"nodes": Object.keys(networks).filter(n => n != "ghostnet").map(network => "http://tezos-node-rpc." + network + ":8732"),
},
"ui": {
"enabled": true,
Expand Down

0 comments on commit 5b6c1fe

Please sign in to comment.