Deploy Public Rinkeby Node
Last updated
Was this helpful?
Was this helpful?
kubectl get podsNAME READY STATUS RESTARTS AGE
rinkeby-besu-node-0 1/1 Running 0 1mkubectl logs -f rinkeby-besu-node-0apiVersion: ethereum.kotal.io/v1alpha1
kind: Node
metadata:
name: rinkeby-besu-node
spec:
network: rinkeby
client: besu
rpc: truekubectl apply -f rinkeby.yamlkubectl port-forward rinkeby-besu-node-0 8545curl -X POST -H 'content-type: application/json' --data '{"jsonrpc":"2.0","method":"eth_syncing","params":[],"id":32}' http://127.0.0.1:8545{
"jsonrpc" : "2.0",
"id" : 32,
"result" : {
"startingBlock" : "0x0",
"currentBlock" : "0x1518",
"highestBlock" : "0x9567a3",
"pulledStates" : "0x203ca",
"knownStates" : "0x200636"
}
}kubectl delete -f rinkeby.yaml
node.ethereum.kotal.io "rinkeby-besu-node" deleted