github.com/kotalco/kotal@v0.3.0/config/samples/ethereum/ethereum_v1alpha1_poa_geth_node.yaml (about) 1 # WARNING: DON'T use the following secrets in production 2 apiVersion: v1 3 kind: Secret 4 metadata: 5 name: poa-geth-account-key 6 stringData: 7 # address 0xB87c1c66b36D98D1A74a9875EbA12c001e0bcEda 8 key: ef7fe53791454d96b0264fee1c788b6ff445fc327df8a8a78ca4da60821f69c9 9 --- 10 apiVersion: v1 11 kind: Secret 12 metadata: 13 name: poa-geth-account-password 14 stringData: 15 password: secret 16 --- 17 apiVersion: ethereum.kotal.io/v1alpha1 18 kind: Node 19 metadata: 20 name: poa-geth-node 21 spec: 22 ########### Genesis block spec ########### 23 genesis: 24 chainId: 20189 25 networkId: 20189 26 clique: 27 blockPeriod: 15 28 epochLength: 100 29 signers: 30 - "0xcF2C3fB8F36A863FD1A8c72E2473f81744B4CA6C" 31 - "0x1990E5760d9f8Ae0ec55dF8B0819C77e59846Ff2" 32 - "0xB87c1c66b36D98D1A74a9875EbA12c001e0bcEda" 33 forks: 34 homestead: 0 35 eip150: 0 36 eip155: 0 37 eip158: 0 38 byzantium: 0 39 constantinople: 0 40 petersburg: 0 41 istanbul: 0 42 muirglacier: 0 43 berlin: 0 44 london: 0 45 arrowGlacier: 0 46 coinbase: "0x071E2c1067c24607fF00cEEBbe83a38063BDEDd8" 47 difficulty: "0xfff" 48 gasLimit: "0x47b760" 49 nonce: "0x0" 50 timestamp: "0x0" 51 accounts: 52 - address: "0x48c5F25a884116d58A6287B72C9b069F936C9489" 53 balance: "0xffffffffffffffffffff" 54 ########### node spec ########### 55 client: geth 56 miner: true 57 coinbase: "0xB87c1c66b36D98D1A74a9875EbA12c001e0bcEda" 58 staticNodes: 59 - "enode://36f50b80f06135c8d2871d1c0c2faee6d3d952f8c100870fc41d61ac9e535fa6367409f9b2ac8658147273677f90c9fddee4f9269dad069a1f78ae3297a13b2e@10.96.161.221:30303" 60 import: 61 privateKeySecretName: poa-geth-account-key 62 passwordSecretName: poa-geth-account-password 63 resources: 64 cpu: "1" 65 cpuLimit: "1" 66 memory: "1Gi" 67 memoryLimit: "2Gi"