github.com/kotalco/kotal@v0.3.0/config/samples/ethereum/ethereum_v1alpha1_pow_besu_node.yaml (about) 1 # WARNING: DON'T use the following secrets in production 2 apiVersion: v1 3 kind: Secret 4 metadata: 5 name: pow-besu-nodekey 6 stringData: 7 # address 0x5A0b54D5dc17e0AadC383d2db43B0a0D3E029c4c 8 key: 608e9b6f67c65e47531e08e8e501386dfae63a540fa3c48802c8aad854510b4e 9 --- 10 apiVersion: ethereum.kotal.io/v1alpha1 11 kind: Node 12 metadata: 13 name: pow-besu-node 14 spec: 15 ########### Genesis block spec ########### 16 genesis: 17 chainId: 20189 18 networkId: 20189 19 ethash: {} 20 forks: 21 homestead: 0 22 eip150: 0 23 eip155: 0 24 eip158: 0 25 byzantium: 0 26 constantinople: 0 27 petersburg: 0 28 istanbul: 0 29 muirglacier: 0 30 berlin: 0 31 london: 0 32 arrowGlacier: 0 33 coinbase: "0x071e2c1067c24607ff00ceebbe83a38063bdedd8" 34 difficulty: "0x1" 35 gasLimit: "0x47b760" 36 nonce: "0x0" 37 timestamp: "0x5f69fcd9" 38 accounts: 39 - address: "0x48c5F25a884116d58A6287B72C9b069F936C9489" 40 balance: "0xffffffffffffffffffff" 41 ########### node spec ########### 42 client: besu 43 miner: true 44 nodePrivateKeySecretName: pow-besu-nodekey 45 coinbase: "0x5A0b54D5dc17e0AadC383d2db43B0a0D3E029c4c" 46 rpc: true 47 rpcPort: 8599 48 corsDomains: 49 - all 50 hosts: 51 - all 52 rpcAPI: 53 - web3 54 - net 55 - eth 56 resources: 57 cpu: "1" 58 cpuLimit: "1" 59 memory: "1Gi" 60 memoryLimit: "2Gi"